From b2e961ebcf20fcbf137d2e03356e1225f9bc9a32 Mon Sep 17 00:00:00 2001 From: Siby P Varkey Date: Mon, 9 Jul 2018 12:14:27 +0530 Subject: [PATCH] Add files via upload --- ajax_add_profile.php | 108 +- ajax_add_sysuser.php | 66 +- ajax_adduser.php | 235 ++-- ajax_addusers.php | 183 +-- ajax_change_syspass.php | 30 +- ajax_del_profile.php | 78 +- ajax_del_sysuser.php | 30 +- ajax_edit_profile.php | 128 +- ajax_edit_sysuser.php | 68 +- ajax_expired.php | 62 +- ajax_get_profiles.php | 68 +- ajax_get_sysuser.php | 28 +- ajax_rem_selected.php | 74 +- ajax_rem_user.php | 34 +- ajax_reset_pass.php | 50 +- ajax_uninitiated.php | 56 +- backup.php | 130 +- config.php | 6 +- database.php | 118 +- db_backup_20_09_2016_14_11_47.sql | 873 +------------ dbconfig.php | 46 +- header.php | 1906 ++++++++++++++--------------- home.php | 870 +++++++++++++ hotsoft.php | 264 ++-- index.php | 910 +------------- info.php | 180 +-- login.php | 192 +-- logme.php | 49 + logout.php | 12 +- modal_change_pass.php | 142 +-- modal_delete_guest.php | 120 +- modal_get_profiles.php | 174 +-- modal_get_user.php | 150 +-- settings.php | 73 +- voucher.php | 1024 ++++++++-------- 35 files changed, 3903 insertions(+), 4634 deletions(-) create mode 100644 home.php create mode 100644 logme.php diff --git a/ajax_add_profile.php b/ajax_add_profile.php index fe91dda..55f6db7 100644 --- a/ajax_add_profile.php +++ b/ajax_add_profile.php @@ -1,55 +1,55 @@ -setMenu('/ip hotspot user profile'); - if(strtolower($session_timeout) == 'none') $session_timeout = '00:00:00'; - $util->add( - array( - 'name' => "$profile_name", - 'rate-limit' => "$rate_limit", - 'session-timeout' => "$session_timeout", - 'shared-users' => "$shared_users", - 'mac-cookie-timeout' => "$mac_cookie_timeout", - 'keepalive-timeout' => "$keepalive_timeout" - ) - ); - /* - if(strtolower($session_timeout) == 'none') { - $id = $client->sendSync(new Request('/ip/hotspot/user/profile/print .proplist=.id', null, Query::where('name', $profile_name)))->getArgument('.id'); - $util->setMenu('/ip hotspot user profile'); - $util->unsetValue($id, 'session-timeout'); - } */ - echo 2; //Success - } - else - { - echo 1; //Profile name/Session Timeout Empty - } -} -else - { - echo 0; //Not Authorised -} +setMenu('/ip hotspot user profile'); + if(strtolower($session_timeout) == 'none') $session_timeout = '00:00:00'; + $util->add( + array( + 'name' => "$profile_name", + 'rate-limit' => "$rate_limit", + 'session-timeout' => "$session_timeout", + 'shared-users' => "$shared_users", + 'mac-cookie-timeout' => "$mac_cookie_timeout", + 'keepalive-timeout' => "$keepalive_timeout" + ) + ); + /* + if(strtolower($session_timeout) == 'none') { + $id = $client->sendSync(new Request('/ip/hotspot/user/profile/print .proplist=.id', null, Query::where('name', $profile_name)))->getArgument('.id'); + $util->setMenu('/ip hotspot user profile'); + $util->unsetValue($id, 'session-timeout'); + } */ + echo 2; //Success + } + else + { + echo 1; //Profile name/Session Timeout Empty + } +} +else + { + echo 0; //Not Authorised +} ?> \ No newline at end of file diff --git a/ajax_add_sysuser.php b/ajax_add_sysuser.php index e569d86..8617c40 100644 --- a/ajax_add_sysuser.php +++ b/ajax_add_sysuser.php @@ -1,34 +1,34 @@ -prepare("SELECT * FROM hotspot_users WHERE username =:username"); - $stmt->execute(array(':username' => $username)); - $count = $stmt->rowCount(); - - if ($count != 0) { - echo 1; - } - else - { - $stmt = $DB_con->prepare("insert into hotspot_users (username, password, firstname, lastname, date_added, user_level, status) - values(:username, :password, :firstname, :lastname, CURDATE(), :user_level, :status)"); - $stmt->execute(array(':username' => $username, ':password' => $password, ':firstname' => $firstname, - ':lastname' => $lastname, ':user_level' => $user_level, ':status' => $status)); - echo 2; - } -} -else { - echo 0; -} -// End Adding a new System User Details, Returned from modal_add_user.php +prepare("SELECT * FROM hotspot_users WHERE username =:username"); + $stmt->execute(array(':username' => $username)); + $count = $stmt->rowCount(); + + if ($count != 0) { + echo 1; + } + else + { + $stmt = $DB_con->prepare("insert into hotspot_users (username, password, firstname, lastname, date_added, user_level, status) + values(:username, :password, :firstname, :lastname, CURDATE(), :user_level, :status)"); + $stmt->execute(array(':username' => $username, ':password' => $password, ':firstname' => $firstname, + ':lastname' => $lastname, ':user_level' => $user_level, ':status' => $status)); + echo 2; + } +} +else { + echo 0; +} +// End Adding a new System User Details, Returned from modal_add_user.php ?> \ No newline at end of file diff --git a/ajax_adduser.php b/ajax_adduser.php index 620caf0..d9aefed 100644 --- a/ajax_adduser.php +++ b/ajax_adduser.php @@ -1,116 +1,121 @@ -setMenu('/ip hotspot user'); -$iv = count($util); - -if ((!empty($username)) and (!empty($password)) and (!empty($profile))) { - if (intval($limit_bytes) != 0) { - $limit_bytes_total = (intval($limit_bytes) * 1024 * 1024 * 1024 ); - $util->add( - array( - 'name' => "$username", - 'password' => "$password", - 'limit-uptime' => "$limit_uptime", - 'limit-bytes-total' => "$limit_bytes_total", - 'profile' => "$profile" - ) - ); - } - else - { - $util->add( - array( - 'name' => "$username", - 'password' => "$password", - 'limit-uptime' => "$limit_uptime", - 'profile' => "$profile" - ) - ); - $limit_bytes = 0; // For Adding it to Local database - } - - if ($iv != count($util)) { - include('dbconfig.php'); - $stmt = $DB_con->prepare("SELECT booking_id from hotspot_vouchers ORDER BY booking_id DESC LIMIT 1"); - $stmt->execute(array()); - $row = $stmt->fetch(PDO::FETCH_ASSOC); - $booking_id = $row['booking_id']; - $booking_id++; - $uid = $booking_id.'-1-'.date('dmY'); - //$creator = $_SESSION['username'].'['.$_SESSION['id'].']'; - $stmt = $DB_con->prepare("UPDATE hotspot_vouchers set status=:status WHERE 1"); - $stmt->execute(array(':status' => 'Over')); - $stmt = $DB_con->prepare("insert into hotspot_vouchers (created_on, created_by, creator, user_name, password, printed_times, - printed_last, status, group_of, booking_id, limit_uptime, limit_bytes, profile, uid) - values(NOW(), :created_by, :creator, :user_name, :password, :printed_times, :printed_last, :status, :group_of, - :booking_id, :limit_uptime, :limit_bytes, :profile, :uid)"); - $stmt->execute(array(':created_by' => $_SESSION['username'], ':creator' => $_SESSION['id'], ':user_name' => $username, ':password' => $password, - ':printed_times' => 0, ':printed_last' => '', ':status' => 'Active', ':group_of' => 1, - ':booking_id' => $booking_id, ':limit_uptime' => $limit_uptime, ':limit_bytes' => $limit_bytes, - ':profile' => $profile, ':uid' => $uid)); - - // here starts Echo String - $echo_text =' -
-
-
-
-

Hotspot User Voucher

-
-
-
- - - - - - - - - '; - $echo_text .= ' - - - - - '; - if (intval($limit_bytes) != 0) { - $echo_text .= ''; - } - else - { - $echo_text .= ''; - } - $echo_text .= ' - - -
UsernamePassword
Validity : '.$limit_uptime.'ays; Counts from First login; Data usage Maximum : '.$limit_bytes_total.' Bytes; Bandwidth : '.$profile.'; HAPPY BROWSING...Validity : '.$limit_uptime.'ays; Counts from First login; Bandwidth/Profile : '.$profile.'; HAPPY BROWSING...
-
-
-
-
-
-
-    -    -    -
-
-
'; - echo $echo_text; - } - else - { - echo ''; - } -} -//End Adding a Guest User +setMenu('/ip hotspot user'); +$iv = count($util); + +if ((!empty($username)) and (!empty($password)) and (!empty($profile))) { + if (intval($limit_bytes) != 0) { + $limit_bytes_total = (intval($limit_bytes) * 1024 * 1024 * 1024 ); + $util->add( + array( + 'name' => "$username", + 'password' => "$password", + 'limit-uptime' => "$limit_uptime", + 'limit-bytes-total' => "$limit_bytes_total", + 'profile' => "$profile" + ) + ); + } + else + { + $util->add( + array( + 'name' => "$username", + 'password' => "$password", + 'limit-uptime' => "$limit_uptime", + 'profile' => "$profile" + ) + ); + $limit_bytes = 0; // For Adding it to Local database + } + + if ($iv != count($util)) { + include('dbconfig.php'); + $stmt = $DB_con->prepare("SELECT booking_id from hotspot_vouchers ORDER BY booking_id DESC LIMIT 1"); + $stmt->execute(array()); + $row = $stmt->fetch(PDO::FETCH_ASSOC); + $booking_id = $row['booking_id']; + $booking_id++; + $uid = $booking_id.'-1-'.date('dmY'); + //$creator = $_SESSION['username'].'['.$_SESSION['id'].']'; + $stmt = $DB_con->prepare("UPDATE hotspot_vouchers set status=:status WHERE 1"); + $stmt->execute(array(':status' => 'Over')); + $stmt = $DB_con->prepare("insert into hotspot_vouchers (created_on, created_by, creator, user_name, password, printed_times, + printed_last, status, group_of, booking_id, limit_uptime, limit_bytes, profile, uid) + values(NOW(), :created_by, :creator, :user_name, :password, :printed_times, :printed_last, :status, :group_of, + :booking_id, :limit_uptime, :limit_bytes, :profile, :uid)"); + $stmt->execute(array(':created_by' => $_SESSION['username'], ':creator' => $_SESSION['id'], ':user_name' => $username, ':password' => $password, + ':printed_times' => 0, ':printed_last' => '', ':status' => 'Active', ':group_of' => 1, + ':booking_id' => $booking_id, ':limit_uptime' => $limit_uptime, ':limit_bytes' => $limit_bytes, + ':profile' => $profile, ':uid' => $uid)); + + // here starts Echo String + $echo_text =' +
+
+
+
+

Hotspot User Voucher

+
+
+
+ + + + + + + + + '; + $echo_text .= ' + + + + + '; + if (intval($limit_bytes) != 0) { + $echo_text .= ''; + } + else + { + $echo_text .= ''; + } + $echo_text .= ' + + +
UsernamePassword
Validity : '.$limit_uptime.'ays; Counts from First login; Data usage Maximum : '.$limit_bytes_total.' Bytes; Bandwidth : '.$profile.'; HAPPY BROWSING...Validity : '.$limit_uptime.'ays; Counts from First login; Bandwidth/Profile : '.$profile.'; HAPPY BROWSING...
+
+
+
+
+
+
+    +    +    +
+
+
'; + echo $echo_text; + } + else + { + echo ''; + } +} +//End Adding a Guest User ?> \ No newline at end of file diff --git a/ajax_addusers.php b/ajax_addusers.php index 6ce1efa..5c262fa 100644 --- a/ajax_addusers.php +++ b/ajax_addusers.php @@ -1,90 +1,95 @@ -= 1 and $_SESSION['user_level'] <= 3) { - include('dbconfig.php'); - $stmt = $DB_con->prepare("SELECT booking_id from hotspot_vouchers ORDER BY booking_id DESC LIMIT 1"); - $stmt->execute(array()); - $row = $stmt->fetch(PDO::FETCH_ASSOC); - $booking_id = $row['booking_id']; - $booking_id++; - - $stmt = $DB_con->prepare("UPDATE hotspot_vouchers set status=:status WHERE 1"); - $stmt->execute(array(':status' => 'Over')); - - $stmt = $DB_con->prepare("insert into hotspot_vouchers (created_on, created_by, creator, user_name, password, printed_times, - printed_last, status, group_of, booking_id, limit_uptime, limit_bytes, profile, uid) - values(NOW(), :created_by, :creator, :user_name, :password, :printed_times, :printed_last, :status, :group_of, - :booking_id, :limit_uptime, :limit_bytes, :profile, :uid)"); - - $k = 1; - for($i=0; $i < $no_of_users; $i++){ - $passAlphabet = 'abcdefghikmnpqrstuvxyz23456789'; - $passAlphabetLimit = strlen($passAlphabet)-1; - $pass = ''; - $uid = ''; - for ($j = 0; $j < $passLength; ++$j) { - $pass .= $passAlphabet[mt_rand(0, $passAlphabetLimit)]; - } - for ($j = 0; $j < $passLength; ++$j) { - $uid .= $passAlphabet[mt_rand(0, $passAlphabetLimit)]; - } - $user_name = $user_prefix.$uid; - if ($same_pass == 2) { $pass_word = $pass; } else { $pass_word = $user_name; } - $util->setMenu('/ip hotspot user'); - $iv = count($util); - - - if (intval($limit_bytes) != 0) { - $limit_bytes_total = (intval($limit_bytes) * 1024 * 1024 * 1024 ); - $util->add( - array( - 'name' => "$user_name", - 'password' => "$pass_word", - 'limit-uptime' => "$limit_uptime", - 'limit-bytes-total' => "$limit_bytes_total", - 'profile' => "$profile" - ) - ); - } - else - { - $util->add( - array( - 'name' => "$user_name", - 'password' => "$pass_word", - 'limit-uptime' => "$limit_uptime", - 'profile' => "$profile" - ) - ); - $limit_bytes = 0; // For Adding it to Local database - } - - if ($iv != count($util)) { - $uid = $booking_id.'-'.$k.'-'.$no_of_users.date('dmY'); - //$creator = $_SESSION['username'].'['.$_SESSION['id'].']'; - $stmt->execute(array(':created_by' => $_SESSION['username'], ':creator' => $_SESSION['id'], ':user_name' => $user_name, ':password' => $pass_word, - ':printed_times' => 0, ':printed_last' => '', ':status' => 'Active', ':group_of' => $no_of_users, - ':booking_id' => $booking_id, ':limit_uptime' => $limit_uptime, ':limit_bytes' => $limit_bytes, - ':profile' => $profile, ':uid' => $uid)); - $k++; - } - } - echo $k - 1; //Successful -} -else - { - echo 0; // Not an Authorised User -} += 1 and $_SESSION['user_level'] <= 3) { + include('dbconfig.php'); + $stmt = $DB_con->prepare("SELECT booking_id from hotspot_vouchers ORDER BY booking_id DESC LIMIT 1"); + $stmt->execute(array()); + $row = $stmt->fetch(PDO::FETCH_ASSOC); + $booking_id = $row['booking_id']; + $booking_id++; + + $stmt = $DB_con->prepare("UPDATE hotspot_vouchers set status=:status WHERE 1"); + $stmt->execute(array(':status' => 'Over')); + + $stmt = $DB_con->prepare("insert into hotspot_vouchers (created_on, created_by, creator, user_name, password, printed_times, + printed_last, status, group_of, booking_id, limit_uptime, limit_bytes, profile, uid) + values(NOW(), :created_by, :creator, :user_name, :password, :printed_times, :printed_last, :status, :group_of, + :booking_id, :limit_uptime, :limit_bytes, :profile, :uid)"); + + $k = 1; + for($i=0; $i < $no_of_users; $i++){ + $passAlphabet = 'abcdefghikmnpqrstuvxyz23456789'; + $passAlphabetLimit = strlen($passAlphabet)-1; + $pass = ''; + $uid = ''; + for ($j = 0; $j < $passLength; ++$j) { + $pass .= $passAlphabet[mt_rand(0, $passAlphabetLimit)]; + } + for ($j = 0; $j < $passLength; ++$j) { + $uid .= $passAlphabet[mt_rand(0, $passAlphabetLimit)]; + } + $user_name = $user_prefix.$uid; + if ($same_pass == 2) { $pass_word = $pass; } else { $pass_word = $user_name; } + $util->setMenu('/ip hotspot user'); + $iv = count($util); + + + if (intval($limit_bytes) != 0) { + $limit_bytes_total = (intval($limit_bytes) * 1024 * 1024 * 1024 ); + $util->add( + array( + 'name' => "$user_name", + 'password' => "$pass_word", + 'limit-uptime' => "$limit_uptime", + 'limit-bytes-total' => "$limit_bytes_total", + 'profile' => "$profile" + ) + ); + } + else + { + $util->add( + array( + 'name' => "$user_name", + 'password' => "$pass_word", + 'limit-uptime' => "$limit_uptime", + 'profile' => "$profile" + ) + ); + $limit_bytes = 0; // For Adding it to Local database + } + + if ($iv != count($util)) { + $uid = $booking_id.'-'.$k.'-'.$no_of_users.date('dmY'); + //$creator = $_SESSION['username'].'['.$_SESSION['id'].']'; + $stmt->execute(array(':created_by' => $_SESSION['username'], ':creator' => $_SESSION['id'], ':user_name' => $user_name, ':password' => $pass_word, + ':printed_times' => 0, ':printed_last' => '', ':status' => 'Active', ':group_of' => $no_of_users, + ':booking_id' => $booking_id, ':limit_uptime' => $limit_uptime, ':limit_bytes' => $limit_bytes, + ':profile' => $profile, ':uid' => $uid)); + $k++; + } + } + echo $k - 1; //Successful +} +else + { + echo 0; // Not an Authorised User +} ?> \ No newline at end of file diff --git a/ajax_change_syspass.php b/ajax_change_syspass.php index 9cc9793..be15a4d 100644 --- a/ajax_change_syspass.php +++ b/ajax_change_syspass.php @@ -1,16 +1,16 @@ -prepare("update hotspot_users set password = :np where user_id = :session_id"); - $stmt->execute(array(':np' => $np, ':session_id' => $_SESSION['id'])); - echo 1; - } -else - { - echo 0; -} +prepare("update hotspot_users set password = :np where user_id = :session_id"); + $stmt->execute(array(':np' => $np, ':session_id' => $_SESSION['id'])); + echo 1; + } +else + { + echo 0; +} ?> \ No newline at end of file diff --git a/ajax_del_profile.php b/ajax_del_profile.php index ba40ee8..b5d16ef 100644 --- a/ajax_del_profile.php +++ b/ajax_del_profile.php @@ -1,40 +1,40 @@ -setArgument('.proplist', '.id,name'); - $printRequest->setQuery(RouterOS\Query::where('name', $profile_name)); - - $idList = ''; - foreach ($client->sendSync($printRequest)->getAllOfType(RouterOS\Response::TYPE_DATA) as $item) { - $idList .= ',' . $item->getProperty('.id'); - } - $idList = substr($idList, 1); - //$idList now contains a comma separated list of all IDs. - - $removeRequest = new RouterOS\Request('/ip hotspot user profile remove'); - $removeRequest->setArgument('numbers', $idList); - $client->sendSync($removeRequest); - echo 2; //Success - } - else - { - echo 1; //Profile name Empty - } -} -else - { - echo 0; //Not Authorised -} +setArgument('.proplist', '.id,name'); + $printRequest->setQuery(RouterOS\Query::where('name', $profile_name)); + + $idList = ''; + foreach ($client->sendSync($printRequest)->getAllOfType(RouterOS\Response::TYPE_DATA) as $item) { + $idList .= ',' . $item->getProperty('.id'); + } + $idList = substr($idList, 1); + //$idList now contains a comma separated list of all IDs. + + $removeRequest = new RouterOS\Request('/ip hotspot user profile remove'); + $removeRequest->setArgument('numbers', $idList); + $client->sendSync($removeRequest); + echo 2; //Success + } + else + { + echo 1; //Profile name Empty + } +} +else + { + echo 0; //Not Authorised +} ?> \ No newline at end of file diff --git a/ajax_del_sysuser.php b/ajax_del_sysuser.php index 9f5728e..1c8c53e 100644 --- a/ajax_del_sysuser.php +++ b/ajax_del_sysuser.php @@ -1,16 +1,16 @@ -prepare("delete from hotspot_users where user_id=:id and user_id != :myself"); - $stmt->execute(array(':id' => $id, ':myself' => $myself)); - echo 1; - } -else - { - echo 0; - } -// End Adding a new System User Details, Returned from modal_add_user.php +prepare("delete from hotspot_users where user_id=:id and user_id != :myself"); + $stmt->execute(array(':id' => $id, ':myself' => $myself)); + echo 1; + } +else + { + echo 0; + } +// End Adding a new System User Details, Returned from modal_add_user.php ?> \ No newline at end of file diff --git a/ajax_edit_profile.php b/ajax_edit_profile.php index 4855cad..453c6ca 100644 --- a/ajax_edit_profile.php +++ b/ajax_edit_profile.php @@ -1,65 +1,65 @@ -setArgument('.proplist', '.id'); - $printRequest->setQuery(RouterOS\Query::where('name', $profile_name)); - $id = $client->sendSync($printRequest)->getProperty('.id'); - - $setRequest = new RouterOS\Request('/ip/hotspot/user/profile/set'); - $setRequest->setArgument('numbers', $id); - $setRequest->setArgument('rate-limit', $rate_limit); - if(strtolower($session_timeout) != 'none') { - $setRequest->setArgument('session-timeout', $session_timeout); - } - else - { - $setRequest->setArgument('session-timeout', '00:00:00'); - } - $setRequest->setArgument('shared-users', $shared_users); - $setRequest->setArgument('mac-cookie-timeout', $mac_cookie_timeout); - $setRequest->setArgument('keepalive-timeout', $keepalive_timeout); - - $client->sendSync($setRequest); - /* - if(strtolower($session_timeout) == 'none') { - $id = $client->sendSync(new Request('/ip/hotspot/user/profile/print .proplist=.id', null, Query::where('name', $profile_name)))->getArgument('.id'); - $util->setMenu('/ip hotspot user profile'); - $util->unsetValue($id, 'session-timeout'); - } */ - echo 2; //Success - } - else - { - echo 1; //Profile name Improper - } -} -else - { - echo 0; //Not Authorised -} +setArgument('.proplist', '.id'); + $printRequest->setQuery(RouterOS\Query::where('name', $profile_name)); + $id = $client->sendSync($printRequest)->getProperty('.id'); + + $setRequest = new RouterOS\Request('/ip/hotspot/user/profile/set'); + $setRequest->setArgument('numbers', $id); + $setRequest->setArgument('rate-limit', $rate_limit); + if(strtolower($session_timeout) != 'none') { + $setRequest->setArgument('session-timeout', $session_timeout); + } + else + { + $setRequest->setArgument('session-timeout', '00:00:00'); + } + $setRequest->setArgument('shared-users', $shared_users); + $setRequest->setArgument('mac-cookie-timeout', $mac_cookie_timeout); + $setRequest->setArgument('keepalive-timeout', $keepalive_timeout); + + $client->sendSync($setRequest); + /* + if(strtolower($session_timeout) == 'none') { + $id = $client->sendSync(new Request('/ip/hotspot/user/profile/print .proplist=.id', null, Query::where('name', $profile_name)))->getArgument('.id'); + $util->setMenu('/ip hotspot user profile'); + $util->unsetValue($id, 'session-timeout'); + } */ + echo 2; //Success + } + else + { + echo 1; //Profile name Improper + } +} +else + { + echo 0; //Not Authorised +} ?> \ No newline at end of file diff --git a/ajax_edit_sysuser.php b/ajax_edit_sysuser.php index f8c74c6..dff769e 100644 --- a/ajax_edit_sysuser.php +++ b/ajax_edit_sysuser.php @@ -1,35 +1,35 @@ -prepare("SELECT * FROM hotspot_users WHERE username = :username AND user_id != :user_id"); - $stmt->execute(array(':username' => $username, ':user_id' => $user_id)); - $count = $stmt->rowCount(); - - if ($count != 0) { - echo 1; - } - else - { - $firstname=$_GET['firstname']; - $lastname=$_GET['lastname']; - $user_level=$_GET['user_level']; - $status=$_GET['status']; - - $stmt = $DB_con->prepare("update hotspot_users set username=:username, firstname = :firstname , lastname = :lastname, - user_level = :user_level, status = :status where user_id= :user_id"); - $stmt->execute(array(':username' => $username, ':firstname' => $firstname, ':lastname' => $lastname, - ':user_level' => $user_level, ':user_id' => $user_id, ':status' => $status)); - echo 2; - } -} -else - { - echo 0; -} -// End Adding a new System User Details, Returned from modal_add_user.php +prepare("SELECT * FROM hotspot_users WHERE username = :username AND user_id != :user_id"); + $stmt->execute(array(':username' => $username, ':user_id' => $user_id)); + $count = $stmt->rowCount(); + + if ($count != 0) { + echo 1; + } + else + { + $firstname=$_GET['firstname']; + $lastname=$_GET['lastname']; + $user_level=$_GET['user_level']; + $status=$_GET['status']; + + $stmt = $DB_con->prepare("update hotspot_users set username=:username, firstname = :firstname , lastname = :lastname, + user_level = :user_level, status = :status where user_id= :user_id"); + $stmt->execute(array(':username' => $username, ':firstname' => $firstname, ':lastname' => $lastname, + ':user_level' => $user_level, ':user_id' => $user_id, ':status' => $status)); + echo 2; + } +} +else + { + echo 0; +} +// End Adding a new System User Details, Returned from modal_add_user.php ?> \ No newline at end of file diff --git a/ajax_expired.php b/ajax_expired.php index 3429e58..5096168 100644 --- a/ajax_expired.php +++ b/ajax_expired.php @@ -1,31 +1,31 @@ -setArgument('.proplist', '.id,limit-uptime,uptime,name'); - //$printRequest->setQuery(RouterOS\Query::where('name', 'admin', RouterOS\Query::OP_EQ) ->not()); - $printRequest->setQuery(RouterOS\Query::where('.id', '*0', RouterOS\Query::OP_EQ) ->not()); - - $idList = ''; - foreach ($client->sendSync($printRequest)->getAllOfType(RouterOS\Response::TYPE_DATA) as $item) { - if (!empty($item->getProperty('limit-uptime'))) { - if (!($item->getProperty('uptime') < $item->getProperty('limit-uptime'))) { - $idList .= ',' . $item->getProperty('.id'); - } - } - } - $idList = substr($idList, 1); - //$idList now contains a comma separated list of all IDs. - - $removeRequest = new RouterOS\Request('/ip hotspot user remove'); - $removeRequest->setArgument('numbers', $idList); - $client->sendSync($removeRequest); -} -//End Removing All Validity Expired Guest User Accounts -?> +setArgument('.proplist', '.id,limit-uptime,uptime,name'); + //$printRequest->setQuery(RouterOS\Query::where('name', 'admin', RouterOS\Query::OP_EQ) ->not()); + $printRequest->setQuery(RouterOS\Query::where('.id', '*0', RouterOS\Query::OP_EQ) ->not()); + + $idList = ''; + foreach ($client->sendSync($printRequest)->getAllOfType(RouterOS\Response::TYPE_DATA) as $item) { + if (!empty($item->getProperty('limit-uptime'))) { + if (!($item->getProperty('uptime') < $item->getProperty('limit-uptime'))) { + $idList .= ',' . $item->getProperty('.id'); + } + } + } + $idList = substr($idList, 1); + //$idList now contains a comma separated list of all IDs. + + $removeRequest = new RouterOS\Request('/ip hotspot user remove'); + $removeRequest->setArgument('numbers', $idList); + $client->sendSync($removeRequest); +} +//End Removing All Validity Expired Guest User Accounts +?> diff --git a/ajax_get_profiles.php b/ajax_get_profiles.php index f69492e..8076ca5 100644 --- a/ajax_get_profiles.php +++ b/ajax_get_profiles.php @@ -1,35 +1,35 @@ -setMenu('/ip hotspot user profile print'); - $profile_name=$_GET['profile_name']; - - $printRequest = new RouterOS\Request('/ip hotspot user profile print'); - $printRequest->setArgument('.proplist', '.id,name,address-pool,rate-limit,session-timeout,shared-users,mac-cookie-timeout,keepalive-timeout'); - $printRequest->setQuery(RouterOS\Query::where('name', $profile_name)); - - foreach ($client->sendSync($printRequest)->getAllOfType(RouterOS\Response::TYPE_DATA) as $item) { - - $tname = $item->getProperty("name"); - $taddress_pool = $item->getProperty("address-pool"); - $tshared_users = $item->getProperty("shared-users"); - $trate_limit = $item->getProperty("rate-limit"); - $tsession_timeout = $item->getProperty("session-timeout"); - $tshared_users = $item->getProperty("shared-users"); - $tmac_cookie_timeout = $item->getProperty("mac-cookie-timeout"); - $tkeepalive_timeout = $item->getProperty("keepalive-timeout"); - - $arr = array('name' => $tname, 'address_pool' => $taddress_pool, 'rate_limit' => $trate_limit, 'session_timeout' => $tsession_timeout, - 'shared_users' => $tshared_users, 'mac_cookie_timeout' => $tmac_cookie_timeout, - 'keepalive_timeout' => $tkeepalive_timeout ); - - echo json_encode($arr); - } -} +setMenu('/ip hotspot user profile print'); + $profile_name=$_GET['profile_name']; + + $printRequest = new RouterOS\Request('/ip hotspot user profile print'); + $printRequest->setArgument('.proplist', '.id,name,address-pool,rate-limit,session-timeout,shared-users,mac-cookie-timeout,keepalive-timeout'); + $printRequest->setQuery(RouterOS\Query::where('name', $profile_name)); + + foreach ($client->sendSync($printRequest)->getAllOfType(RouterOS\Response::TYPE_DATA) as $item) { + + $tname = $item->getProperty("name"); + $taddress_pool = $item->getProperty("address-pool"); + $tshared_users = $item->getProperty("shared-users"); + $trate_limit = $item->getProperty("rate-limit"); + $tsession_timeout = $item->getProperty("session-timeout"); + $tshared_users = $item->getProperty("shared-users"); + $tmac_cookie_timeout = $item->getProperty("mac-cookie-timeout"); + $tkeepalive_timeout = $item->getProperty("keepalive-timeout"); + + $arr = array('name' => $tname, 'address_pool' => $taddress_pool, 'rate_limit' => $trate_limit, 'session_timeout' => $tsession_timeout, + 'shared_users' => $tshared_users, 'mac_cookie_timeout' => $tmac_cookie_timeout, + 'keepalive_timeout' => $tkeepalive_timeout ); + + echo json_encode($arr); + } +} ?> \ No newline at end of file diff --git a/ajax_get_sysuser.php b/ajax_get_sysuser.php index a25c3f5..5bb402a 100644 --- a/ajax_get_sysuser.php +++ b/ajax_get_sysuser.php @@ -1,15 +1,15 @@ -prepare("SELECT * FROM hotspot_users WHERE user_id =:user_id"); - $stmt->execute(array(':user_id' => $user_id)); - - $row=$stmt->fetch(PDO::FETCH_ASSOC); - echo json_encode($row); -} -// End Getting Sysuser details +prepare("SELECT * FROM hotspot_users WHERE user_id =:user_id"); + $stmt->execute(array(':user_id' => $user_id)); + + $row=$stmt->fetch(PDO::FETCH_ASSOC); + echo json_encode($row); +} +// End Getting Sysuser details ?> \ No newline at end of file diff --git a/ajax_rem_selected.php b/ajax_rem_selected.php index 2633b2e..c571850 100644 --- a/ajax_rem_selected.php +++ b/ajax_rem_selected.php @@ -1,38 +1,38 @@ -setArgument('.proplist', '.id,name'); - $removeRequest = new RouterOS\Request('/ip/hotspot/user/remove'); - foreach ($guest_list as $guest) { - $i++; - //$printRequest->setArgument('.proplist', '.id,name'); - $printRequest->setQuery(RouterOS\Query::where('name', $guest)); - $id = $client->sendSync($printRequest)->getProperty('.id'); - - //$removeRequest = new RouterOS\Request('/ip/hotspot/user/remove'); - $removeRequest->setArgument('numbers', $id); - $client->sendSync($removeRequest); - } - echo $i; - } - else - { - echo -1; - } -} -else - { - echo 0; -} -//$id = $client->sendSync(new Request('/ip/hotspot/user/profile/print .proplist=.id', null, Query::where('name', $profile_name)))->getArgument('.id'); +setArgument('.proplist', '.id,name'); + $removeRequest = new RouterOS\Request('/ip/hotspot/user/remove'); + foreach ($guest_list as $guest) { + $i++; + //$printRequest->setArgument('.proplist', '.id,name'); + $printRequest->setQuery(RouterOS\Query::where('name', $guest)); + $id = $client->sendSync($printRequest)->getProperty('.id'); + + //$removeRequest = new RouterOS\Request('/ip/hotspot/user/remove'); + $removeRequest->setArgument('numbers', $id); + $client->sendSync($removeRequest); + } + echo $i; + } + else + { + echo -1; + } +} +else + { + echo 0; +} +//$id = $client->sendSync(new Request('/ip/hotspot/user/profile/print .proplist=.id', null, Query::where('name', $profile_name)))->getArgument('.id'); ?> \ No newline at end of file diff --git a/ajax_rem_user.php b/ajax_rem_user.php index 6a2f2b8..e366843 100644 --- a/ajax_rem_user.php +++ b/ajax_rem_user.php @@ -1,18 +1,18 @@ -setArgument('.proplist', '.id,name'); -$printRequest->setQuery(RouterOS\Query::where('name', $guest_name)); -$id = $client->sendSync($printRequest)->getProperty('.id'); - -$removeRequest = new RouterOS\Request('/ip/hotspot/user/remove'); -$removeRequest->setArgument('numbers', $id); -$client->sendSync($removeRequest); +setArgument('.proplist', '.id,name'); +$printRequest->setQuery(RouterOS\Query::where('name', $guest_name)); +$id = $client->sendSync($printRequest)->getProperty('.id'); + +$removeRequest = new RouterOS\Request('/ip/hotspot/user/remove'); +$removeRequest->setArgument('numbers', $id); +$client->sendSync($removeRequest); ?> \ No newline at end of file diff --git a/ajax_reset_pass.php b/ajax_reset_pass.php index 2174bbf..28ae417 100644 --- a/ajax_reset_pass.php +++ b/ajax_reset_pass.php @@ -1,26 +1,26 @@ -prepare("SELECT * FROM hotspot_users WHERE user_id = :user_id"); - $stmt->execute(array(':user_id' => $user_id)); - $count = $stmt->rowCount(); - if ($count == 0){ - echo 1; - } - else - { - $stmt = $DB_con->prepare("update hotspot_users set password=:password where user_id= :user_id"); - $stmt->execute(array(':password' => $password, ':user_id' => $user_id)); - echo 2; - } -} -else - { - echo 0; -} -//End Resetting a System User Password, called from modal_reset_psd.php Modal +prepare("SELECT * FROM hotspot_users WHERE user_id = :user_id"); + $stmt->execute(array(':user_id' => $user_id)); + $count = $stmt->rowCount(); + if ($count == 0){ + echo 1; + } + else + { + $stmt = $DB_con->prepare("update hotspot_users set password=:password where user_id= :user_id"); + $stmt->execute(array(':password' => $password, ':user_id' => $user_id)); + echo 2; + } +} +else + { + echo 0; +} +//End Resetting a System User Password, called from modal_reset_psd.php Modal ?> \ No newline at end of file diff --git a/ajax_uninitiated.php b/ajax_uninitiated.php index a548c43..23d2c49 100644 --- a/ajax_uninitiated.php +++ b/ajax_uninitiated.php @@ -1,28 +1,28 @@ -setArgument('.proplist', '.id,limit-uptime,uptime,name'); - //$printRequest->setQuery(RouterOS\Query::where('name', 'default-trial', RouterOS\Query::OP_EQ) ->not()); - $printRequest->setQuery(RouterOS\Query::where('.id', '*0', RouterOS\Query::OP_EQ) ->not()); - - $idList = ''; - foreach ($client->sendSync($printRequest)->getAllOfType(RouterOS\Response::TYPE_DATA) as $item) { - if ($item->getProperty('uptime') == 0) { - $idList .= ',' . $item->getProperty('.id'); - } - } - $idList = substr($idList, 1); - //$idList now contains a comma separated list of all IDs. - - $removeRequest = new RouterOS\Request('/ip hotspot user remove'); - $removeRequest->setArgument('numbers', $idList); - $client->sendSync($removeRequest); -} -//End Removing All Un-initiated Guest User Accounts -?> +setArgument('.proplist', '.id,limit-uptime,uptime,name'); + //$printRequest->setQuery(RouterOS\Query::where('name', 'default-trial', RouterOS\Query::OP_EQ) ->not()); + $printRequest->setQuery(RouterOS\Query::where('.id', '*0', RouterOS\Query::OP_EQ) ->not()); + + $idList = ''; + foreach ($client->sendSync($printRequest)->getAllOfType(RouterOS\Response::TYPE_DATA) as $item) { + if ($item->getProperty('uptime') == 0) { + $idList .= ',' . $item->getProperty('.id'); + } + } + $idList = substr($idList, 1); + //$idList now contains a comma separated list of all IDs. + + $removeRequest = new RouterOS\Request('/ip hotspot user remove'); + $removeRequest->setArgument('numbers', $idList); + $client->sendSync($removeRequest); +} +//End Removing All Un-initiated Guest User Accounts +?> diff --git a/backup.php b/backup.php index 469b287..05a3156 100644 --- a/backup.php +++ b/backup.php @@ -1,66 +1,66 @@ - - - - - -
-
- -
-
-query( 'SHOW TABLES' ); - foreach ( $tables as $table ) { - //echo $table[0] . ' ... '; - flush(); - $sql = '-- TABLE: ' . $table[0] . PHP_EOL; - $create = $DB_con->query( 'SHOW CREATE TABLE `' . $table[0] . '`' )->fetch(); - $sql .= $create['Create Table'] . ';' . PHP_EOL; - fwrite( $f, $sql ); - - $rows = $DB_con->query( 'SELECT * FROM `' . $table[0] . '`' ); - $rows->setFetchMode( PDO::FETCH_ASSOC ); - foreach ( $rows as $row ) { - $row = array_map( array( $DB_con, 'quote' ), $row ); - $sql = 'INSERT INTO `' . $table[0] . '` (`' . implode( '`, `', array_keys( $row ) ) . '`) VALUES (' . implode( ', ', $row ) . ');' . PHP_EOL; - fwrite( $f, $sql ); - } - - $sql = PHP_EOL; - $result = fwrite( $f, $sql ); - if ( $result !== FALSE ) { - echo ''; - } else { - // echo 'ERROR!!' . PHP_EOL; - } - flush(); - } - fclose( $f ); -} catch (Exception $e) { - echo 'Damn it! ' . $e->getMessage() . PHP_EOL; -} -?> - download> - - \ No newline at end of file diff --git a/config.php b/config.php index de9eb1d..278d47a 100644 --- a/config.php +++ b/config.php @@ -1,5 +1,5 @@ \ No newline at end of file diff --git a/database.php b/database.php index b4eed96..6d92994 100644 --- a/database.php +++ b/database.php @@ -1,60 +1,60 @@ -prepare("SET SQL_MODE = 'NO_AUTO_VALUE_ON_ZERO'"); -$stmt->execute(array()); - -$stmt = $DB_con->prepare("SET time_zone = '+05:30'"); -$stmt->execute(array()); - -$stmt = $DB_con->prepare("CREATE TABLE IF NOT EXISTS `hotspot_users` ( - `user_id` int(11) NOT NULL, - `email` varchar(200) NOT NULL, - `date_added` date NOT NULL, - `firstname` varchar(30) NOT NULL, - `lastname` varchar(30) NOT NULL, - `password` varchar(60) NOT NULL, - `created_at` datetime NOT NULL, - `username` varchar(30) NOT NULL, - `user_level` int(11) NOT NULL DEFAULT '3', - `user_group` int(1) NOT NULL, - `image_path` varchar(50) NOT NULL, - `thumb_path` varchar(50) NOT NULL, - `status` varchar(20) NOT NULL -) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8"); -$stmt->execute(array()); - -$stmt = $DB_con->prepare("ALTER TABLE `hotspot_users` - ADD PRIMARY KEY (`user_id`), - ADD KEY `username` (`username`)"); -$stmt->execute(array()); - -$stmt = $DB_con->prepare("ALTER TABLE `hotspot_users` - MODIFY `user_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1"); -$stmt->execute(array()); - -$stmt = $DB_con->prepare("CREATE TABLE IF NOT EXISTS `hotspot_vouchers` ( - `id` int(11) NOT NULL, - `created_on` datetime DEFAULT NULL, - `created_by` varchar(30) DEFAULT NULL, - `creator` int(3) DEFAULT NULL, - `user_name` varchar(30) DEFAULT NULL, - `password` varchar(30) DEFAULT NULL, - `printed_times` int(3) DEFAULT NULL, - `printed_last` varchar(30) DEFAULT NULL, - `status` varchar(10) DEFAULT NULL, - `group_of` int(4) DEFAULT NULL, - `booking_id` int(11) DEFAULT NULL, - `limit_uptime` varchar(30) DEFAULT NULL, - `limit_bytes` varchar(30) DEFAULT NULL, - `profile` varchar(30) DEFAULT NULL, - `uid` VARCHAR(30) NOT NULL -) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8"); -$stmt->execute(array()); - -$stmt = $DB_con->prepare("ALTER TABLE `hotspot_vouchers` - ADD PRIMARY KEY (`id`)"); -$stmt->execute(array()); - -$stmt = $DB_con->prepare("ALTER TABLE `hotspot_vouchers` - MODIFY `id` int(11) NOT NULL AUTO_INCREMENT"); -$stmt->execute(array()); +prepare("SET SQL_MODE = 'NO_AUTO_VALUE_ON_ZERO'"); +$stmt->execute(array()); + +$stmt = $DB_con->prepare("SET time_zone = '+05:30'"); +$stmt->execute(array()); + +$stmt = $DB_con->prepare("CREATE TABLE IF NOT EXISTS `hotspot_users` ( + `user_id` int(11) NOT NULL, + `email` varchar(200) NOT NULL, + `date_added` date NOT NULL, + `firstname` varchar(30) NOT NULL, + `lastname` varchar(30) NOT NULL, + `password` varchar(60) NOT NULL, + `created_at` datetime NOT NULL, + `username` varchar(30) NOT NULL, + `user_level` int(11) NOT NULL DEFAULT '3', + `user_group` int(1) NOT NULL, + `image_path` varchar(50) NOT NULL, + `thumb_path` varchar(50) NOT NULL, + `status` varchar(20) NOT NULL +) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8"); +$stmt->execute(array()); + +$stmt = $DB_con->prepare("ALTER TABLE `hotspot_users` + ADD PRIMARY KEY (`user_id`), + ADD KEY `username` (`username`)"); +$stmt->execute(array()); + +$stmt = $DB_con->prepare("ALTER TABLE `hotspot_users` + MODIFY `user_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1"); +$stmt->execute(array()); + +$stmt = $DB_con->prepare("CREATE TABLE IF NOT EXISTS `hotspot_vouchers` ( + `id` int(11) NOT NULL, + `created_on` datetime DEFAULT NULL, + `created_by` varchar(30) DEFAULT NULL, + `creator` int(3) DEFAULT NULL, + `user_name` varchar(30) DEFAULT NULL, + `password` varchar(30) DEFAULT NULL, + `printed_times` int(3) DEFAULT NULL, + `printed_last` varchar(30) DEFAULT NULL, + `status` varchar(10) DEFAULT NULL, + `group_of` int(4) DEFAULT NULL, + `booking_id` int(11) DEFAULT NULL, + `limit_uptime` varchar(30) DEFAULT NULL, + `limit_bytes` varchar(30) DEFAULT NULL, + `profile` varchar(30) DEFAULT NULL, + `uid` VARCHAR(30) NOT NULL +) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8"); +$stmt->execute(array()); + +$stmt = $DB_con->prepare("ALTER TABLE `hotspot_vouchers` + ADD PRIMARY KEY (`id`)"); +$stmt->execute(array()); + +$stmt = $DB_con->prepare("ALTER TABLE `hotspot_vouchers` + MODIFY `id` int(11) NOT NULL AUTO_INCREMENT"); +$stmt->execute(array()); ?> \ No newline at end of file diff --git a/db_backup_20_09_2016_14_11_47.sql b/db_backup_20_09_2016_14_11_47.sql index 7f6f664..85fbb1c 100644 --- a/db_backup_20_09_2016_14_11_47.sql +++ b/db_backup_20_09_2016_14_11_47.sql @@ -44,875 +44,4 @@ CREATE TABLE `hotspot_users` ( KEY `username` (`username`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; INSERT INTO `hotspot_users` (`user_id`, `email`, `date_added`, `firstname`, `lastname`, `password`, `created_at`, `username`, `user_level`, `user_group`, `image_path`, `thumb_path`, `status`) VALUES ('1', '', '2016-09-20', 'Administrator', '', 'd033e22ae348aeb5660fc2140aec35850c4da997', '2016-09-20 11:49:31', 'admin', '1', '1', '', '', 'Active'); -INSERT INTO `hotspot_users` (`user_id`, `email`, `date_added`, `firstname`, `lastname`, `password`, `created_at`, `username`, `user_level`, `user_group`, `image_path`, `thumb_path`, `status`) VALUES ('3', '', '2016-09-20', 'Head User', 'Master', '5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8', '0000-00-00 00:00:00', 'admin2', '3', '0', '', '', 'Active'); - --- TABLE: wp_wp_commentmeta -CREATE TABLE `wp_wp_commentmeta` ( - `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', - `meta_key` varchar(255) DEFAULT NULL, - `meta_value` longtext, - PRIMARY KEY (`meta_id`), - KEY `comment_id` (`comment_id`), - KEY `meta_key` (`meta_key`(191)) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- TABLE: wp_wp_comments -CREATE TABLE `wp_wp_comments` ( - `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `comment_post_ID` bigint(20) unsigned 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` varchar(20) NOT NULL DEFAULT '1', - `comment_agent` varchar(255) NOT NULL DEFAULT '', - `comment_type` varchar(20) NOT NULL DEFAULT '', - `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', - `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', - PRIMARY KEY (`comment_ID`), - KEY `comment_post_ID` (`comment_post_ID`), - KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), - KEY `comment_date_gmt` (`comment_date_gmt`), - KEY `comment_parent` (`comment_parent`), - KEY `comment_author_email` (`comment_author_email`(10)) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; - --- TABLE: wp_wp_links -CREATE TABLE `wp_wp_links` ( - `link_id` bigint(20) unsigned 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_description` varchar(255) NOT NULL DEFAULT '', - `link_visible` varchar(20) NOT NULL DEFAULT 'Y', - `link_owner` bigint(20) unsigned 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_visible` (`link_visible`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- TABLE: wp_wp_options -CREATE TABLE `wp_wp_options` ( - `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `option_name` varchar(191) NOT NULL DEFAULT '', - `option_value` longtext NOT NULL, - `autoload` varchar(20) NOT NULL DEFAULT 'yes', - PRIMARY KEY (`option_id`), - UNIQUE KEY `option_name` (`option_name`) -) ENGINE=InnoDB AUTO_INCREMENT=370 DEFAULT CHARSET=utf8; -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('1', 'siteurl', 'http://hotspot.helloperiyar.com', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('2', 'home', 'http://hotspot.helloperiyar.com', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('3', 'blogname', 'Easy HotSpot', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('4', 'blogdescription', 'A Simple WiFi Hotspot User Management Utility', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('5', 'users_can_register', '0', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('6', 'admin_email', 'sibyperiyar@gmail.com', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('7', 'start_of_week', '0', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('8', 'use_balanceTags', '0', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('9', 'use_smilies', '1', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('10', 'require_name_email', '1', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('11', 'comments_notify', '1', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('12', 'posts_per_rss', '10', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('13', 'rss_use_excerpt', '0', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('14', 'mailserver_url', 'mail.example.com', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('15', 'mailserver_login', 'login@example.com', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('16', 'mailserver_pass', 'password', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('17', 'mailserver_port', '110', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('18', 'default_category', '1', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('19', 'default_comment_status', 'closed', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('20', 'default_ping_status', 'closed', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('21', 'default_pingback_flag', '1', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('22', 'posts_per_page', '30', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('23', 'date_format', 'F j, Y', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('24', 'time_format', 'g:i a', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('25', 'links_updated_date_format', 'F j, Y g:i a', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('26', 'comment_moderation', '', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('27', 'moderation_notify', '1', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('28', 'permalink_structure', '/%postname%/', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('30', 'hack_file', '0', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('31', 'blog_charset', 'UTF-8', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('32', 'moderation_keys', '', 'no'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('33', 'active_plugins', 'a:0:{}', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('34', 'category_base', '', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('35', 'ping_sites', 'http://rpc.pingomatic.com/', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('36', 'comment_max_links', '2', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('37', 'gmt_offset', '', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('38', 'default_email_category', '1', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('39', 'recently_edited', 'a:5:{i:0;s:99:\"D:\\PLESKVHOST\\vhosts\\helloperiyar.com\\hotspot.helloperiyar.com/wp-content/themes/photolog/style.css\";i:1;s:116:\"D:\\PLESKVHOST\\vhosts\\helloperiyar.com\\hotspot.helloperiyar.com/wp-content/themes/photolog/template-parts/content.php\";i:3;s:99:\"D:\\PLESKVHOST\\vhosts\\helloperiyar.com\\hotspot.helloperiyar.com/wp-content/themes/photolog/index.php\";i:4;s:103:\"D:\\PLESKVHOST\\vhosts\\helloperiyar.com\\hotspot.helloperiyar.com/wp-content/themes/photolog/functions.php\";i:5;s:100:\"D:\\PLESKVHOST\\vhosts\\helloperiyar.com\\hotspot.helloperiyar.com/wp-content/themes/photolog/footer.php\";}', 'no'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('40', 'template', 'photolog', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('41', 'stylesheet', 'photolog', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('42', 'comment_whitelist', '1', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('43', 'blacklist_keys', '', 'no'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('44', 'comment_registration', '', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('45', 'html_type', 'text/html', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('46', 'use_trackback', '0', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('47', 'default_role', 'subscriber', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('48', 'db_version', '37965', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('49', 'uploads_use_yearmonth_folders', '1', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('50', 'upload_path', '', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('51', 'blog_public', '1', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('52', 'default_link_category', '2', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('53', 'show_on_front', 'posts', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('54', 'tag_base', '', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('55', 'show_avatars', '1', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('56', 'avatar_rating', 'G', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('57', 'upload_url_path', '', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('58', 'thumbnail_size_w', '150', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('59', 'thumbnail_size_h', '150', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('60', 'thumbnail_crop', '1', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('61', 'medium_size_w', '300', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('62', 'medium_size_h', '300', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('63', 'avatar_default', 'mystery', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('64', 'large_size_w', '1024', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('65', 'large_size_h', '1024', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('66', 'image_default_link_type', 'none', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('67', 'image_default_size', '', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('68', 'image_default_align', '', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('69', 'close_comments_for_old_posts', '', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('70', 'close_comments_days_old', '14', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('71', 'thread_comments', '1', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('72', 'thread_comments_depth', '5', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('73', 'page_comments', '', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('74', 'comments_per_page', '50', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('75', 'default_comments_page', 'newest', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('76', 'comment_order', 'asc', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('77', 'sticky_posts', 'a:0:{}', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('78', 'widget_categories', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('79', 'widget_text', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('80', 'widget_rss', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('81', 'uninstall_plugins', 'a:0:{}', 'no'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('82', 'timezone_string', 'Asia/Colombo', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('83', 'page_for_posts', '0', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('84', 'page_on_front', '0', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('85', 'default_post_format', '0', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('86', 'link_manager_enabled', '0', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('87', 'finished_splitting_shared_terms', '1', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('88', 'site_icon', '0', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('89', 'medium_large_size_w', '768', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('90', 'medium_large_size_h', '0', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('91', 'initial_db_version', '36686', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('92', 'wp_wp_user_roles', 'a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{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:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";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'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('93', 'widget_search', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('94', 'widget_recent-posts', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('95', 'widget_recent-comments', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('96', 'widget_archives', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('97', 'widget_meta', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('98', 'sidebars_widgets', 'a:5:{s:19:\"wp_inactive_widgets\";a:0:{}s:8:\"footer-1\";a:1:{i:0;s:10:\"nav_menu-3\";}s:8:\"footer-2\";a:1:{i:0;s:10:\"nav_menu-4\";}s:8:\"footer-3\";a:1:{i:0;s:10:\"nav_menu-5\";}s:13:\"array_version\";i:3;}', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('99', 'widget_pages', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('100', 'widget_calendar', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('101', 'widget_tag_cloud', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('102', 'widget_nav_menu', 'a:4:{i:3;a:1:{s:8:\"nav_menu\";i:4;}i:4;a:1:{s:8:\"nav_menu\";i:5;}i:5;a:1:{s:8:\"nav_menu\";i:6;}s:12:\"_multiwidget\";i:1;}', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('103', 'cron', 'a:4:{i:1474386506;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1474435920;a:1:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1474436731;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}s:7:\"version\";i:2;}', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('106', 'WPLANG', '', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('108', 'rewrite_rules', 'a:85:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$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:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";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:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";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:8:\"embed/?$\";s:21:\"index.php?&embed=true\";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:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";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:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";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:\"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:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";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:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";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:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";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:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";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:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('109', 'db_upgraded', '', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('116', '_site_transient_timeout_browser_aa7adcc5662813180f8b2225f232c91f', '1474695120', 'no'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('117', '_site_transient_browser_aa7adcc5662813180f8b2225f232c91f', 'a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"52.0.2743.116\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}', 'no'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('119', '_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1474133550', 'no'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('120', '_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1474133550', 'no'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('121', '_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1474090350', 'no'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('122', '_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9', '1474133551', 'no'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('123', '_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1474133551', 'no'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('124', '_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1474090351', 'no'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('125', '_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109', '1474133551', 'no'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('126', '_transient_feed_b9388c83948825c1edaef0d856b7b109', 'a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n \n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:117:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"WordPress Plugins » View: Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://wordpress.org/plugins/browse/popular/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"WordPress Plugins » View: Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 17 Sep 2016 05:11:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://bbpress.org/?v=1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:30:{i:0;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Really Simple CAPTCHA\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wordpress.org/plugins/really-simple-captcha/#post-9542\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 09 Mar 2009 02:17:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"9542@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:138:\"Really Simple CAPTCHA is a CAPTCHA module intended to be called from other plugins. It is originally created for my Contact Form 7 plugin.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Takayuki Miyoshi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"TinyMCE Advanced\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://wordpress.org/plugins/tinymce-advanced/#post-2082\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Jun 2007 15:00:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2082@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Extends and enhances TinyMCE, the WordPress Visual Editor.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Andrew Ozz\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Hello Dolly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/plugins/hello-dolly/#post-5790\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 29 May 2008 22:11:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"5790@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Jetpack by WordPress.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://wordpress.org/plugins/jetpack/#post-23862\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Jan 2011 02:21:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"23862@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"Increase your traffic, view your stats, speed up your site, and protect yourself from hackers with Jetpack.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Automattic\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Contact Form 7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/contact-form-7/#post-2141\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Aug 2007 12:45:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2141@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Just another contact form plugin. Simple but flexible.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Takayuki Miyoshi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Google XML Sitemaps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/plugins/google-sitemap-generator/#post-132\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:31:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"132@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"This plugin will generate a special XML sitemap which will help search engines to better index your blog.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Arne Brachhold\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Regenerate Thumbnails\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wordpress.org/plugins/regenerate-thumbnails/#post-6743\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 23 Aug 2008 14:38:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"6743@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"Allows you to regenerate your thumbnails after changing the thumbnail sizes.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Alex Mills (Viper007Bond)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Advanced Custom Fields\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/plugins/advanced-custom-fields/#post-25254\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Mar 2011 04:07:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"25254@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"Customise WordPress with powerful, professional and intuitive fields\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"elliotcondon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"WordPress Importer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/wordpress-importer/#post-18101\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 May 2010 17:42:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"18101@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brian Colinger\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"NextGEN Gallery\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/plugins/nextgen-gallery/#post-1169\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Apr 2007 20:08:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"1169@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 15 million downloads.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Alex Rabe\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"WooCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/plugins/woocommerce/#post-29860\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Sep 2011 08:13:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"29860@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"WooThemes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"All in One SEO Pack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/plugins/all-in-one-seo-pack/#post-753\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Mar 2007 20:08:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"753@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"The most downloaded plugin for WordPress (almost 30 million downloads). Use All in One SEO Pack to automatically optimize your site for Search Engines\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"uberdose\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Duplicate Post\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/duplicate-post/#post-2646\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 05 Dec 2007 17:40:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2646@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Clone posts and pages.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Lopo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Wordfence Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/plugins/wordfence/#post-29832\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 04 Sep 2011 03:13:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"29832@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"Secure your website with the Wordfence security plugin for WordPress. Wordfence provides free enterprise-class WordPress security, protecting your we\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Wordfence\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"W3 Total Cache\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/plugins/w3-total-cache/#post-12073\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Jul 2009 18:46:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"12073@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:132:\"Easy Web Performance Optimization (WPO) using caching: browser, page, object, database, minify and content delivery network support.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Frederick Townes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"WP-PageNavi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/plugins/wp-pagenavi/#post-363\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 23:17:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"363@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Adds a more advanced paging navigation interface.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Lester Chan\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Akismet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://wordpress.org/plugins/akismet/#post-15\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:11:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"15@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"Akismet checks your comments against the Akismet Web service to see if they look like spam or not.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WP Super Cache\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/wp-super-cache/#post-2572\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Nov 2007 11:40:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2572@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"A very fast caching engine for WordPress that produces static html files.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Donncha O Caoimh\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"Google Analytics by MonsterInsights\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/plugins/google-analytics-for-wordpress/#post-2316\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Sep 2007 12:15:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"2316@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"Connect Google Analytics with WordPress by adding your Google Analytics tracking code. Get the stats that matter.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Syed Balkhi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Yoast SEO\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wordpress.org/plugins/wordpress-seo/#post-8321\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Jan 2009 20:34:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"8321@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using Yoast SEO plugin.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Page Builder by SiteOrigin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/plugins/siteorigin-panels/#post-51888\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Apr 2013 10:36:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"51888@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"Build responsive page layouts using the widgets you know and love using this simple drag and drop page builder.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Greg Priday\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Disable Comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/plugins/disable-comments/#post-26907\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 May 2011 04:42:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"26907@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"Allows administrators to globally disable comments on their site. Comments can be disabled according to post type. Multisite friendly.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Samir Shah\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"UpdraftPlus WordPress Backup Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/plugins/updraftplus/#post-38058\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 21 May 2012 15:14:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"38058@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:148:\"Backup and restoration made easy. Complete backups; manual or scheduled (backup to S3, Dropbox, Google Drive, Rackspace, FTP, SFTP, email + others).\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"David Anderson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Clef Two-Factor Authentication\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wordpress.org/plugins/wpclef/#post-47509\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Dec 2012 01:25:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"47509@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:139:\"Modern two-factor that people love to use: strong authentication without passwords or tokens; single sign on/off; magical login experience.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Dave Ross\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"WP Multibyte Patch\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/wp-multibyte-patch/#post-28395\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Jul 2011 12:22:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"28395@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Multibyte functionality enhancement for the WordPress Japanese package.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"plugin-master\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"Google Analytics Dashboard for WP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wordpress.org/plugins/google-analytics-dashboard-for-wp/#post-50539\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 10 Mar 2013 17:07:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"50539@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:127:\"Displays Google Analytics reports in your WordPress Dashboard. Inserts the latest Google Analytics tracking code in your pages.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Alin Marcu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Black Studio TinyMCE Widget\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/plugins/black-studio-tinymce-widget/#post-31973\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 10 Nov 2011 15:06:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"31973@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"The visual editor widget for Wordpress.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Marco Chiesi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Duplicator\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/plugins/duplicator/#post-26607\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 16 May 2011 12:15:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"26607@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"Duplicate, clone, backup, move and transfer an entire site from one location to another.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Cory Lamle\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"iThemes Security (formerly Better WP Security)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/better-wp-security/#post-21738\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Oct 2010 22:06:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"21738@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:146:\"Take the guesswork out of WordPress security. iThemes Security offers 30+ ways to lock down WordPress in an easy-to-use WordPress security plugin.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"iThemes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:30:\"\n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Meta Slider\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/plugins/ml-slider/#post-49521\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Feb 2013 16:56:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"49521@https://wordpress.org/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"Easy to use WordPress Slider plugin. Create responsive slideshows with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Matcha Labs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:46:\"https://wordpress.org/plugins/rss/view/popular\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:12:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Sat, 17 Sep 2016 05:32:14 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:7:\"expires\";s:29:\"Sat, 17 Sep 2016 05:46:19 GMT\";s:13:\"cache-control\";s:0:\"\";s:6:\"pragma\";s:0:\"\";s:13:\"last-modified\";s:31:\"Sat, 17 Sep 2016 05:11:19 +0000\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 250\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20160911085705\";}', 'no'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('127', '_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109', '1474133551', 'no'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('128', '_transient_feed_mod_b9388c83948825c1edaef0d856b7b109', '1474090351', 'no'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('129', '_transient_timeout_plugin_slugs', '1474176752', 'no'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('130', '_transient_plugin_slugs', 'a:2:{i:0;s:19:\"akismet/akismet.php\";i:1;s:9:\"hello.php\";}', 'no'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('131', '_transient_timeout_dash_88ae138922fe95674369b1cb3d215a2b', '1474133552', 'no'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('132', '_transient_dash_88ae138922fe95674369b1cb3d215a2b', '
', 'no'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('133', 'can_compress_scripts', '1', 'no'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('134', '_site_transient_timeout_wporg_theme_feature_list', '1474101170', 'no'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('135', '_site_transient_wporg_theme_feature_list', 'a:3:{s:6:\"Layout\";a:7:{i:0;s:11:\"grid-layout\";i:1;s:10:\"one-column\";i:2;s:11:\"two-columns\";i:3;s:13:\"three-columns\";i:4;s:12:\"four-columns\";i:5;s:12:\"left-sidebar\";i:6;s:13:\"right-sidebar\";}s:8:\"Features\";a:20:{i:0;s:19:\"accessibility-ready\";i:1;s:10:\"buddypress\";i:2;s:17:\"custom-background\";i:3;s:13:\"custom-colors\";i:4;s:13:\"custom-header\";i:5;s:11:\"custom-menu\";i:6;s:12:\"editor-style\";i:7;s:21:\"featured-image-header\";i:8;s:15:\"featured-images\";i:9;s:15:\"flexible-header\";i:10;s:14:\"footer-widgets\";i:11;s:20:\"front-page-post-form\";i:12;s:19:\"full-width-template\";i:13;s:12:\"microformats\";i:14;s:12:\"post-formats\";i:15;s:20:\"rtl-language-support\";i:16;s:11:\"sticky-post\";i:17;s:13:\"theme-options\";i:18;s:17:\"threaded-comments\";i:19;s:17:\"translation-ready\";}s:7:\"Subject\";a:9:{i:0;s:4:\"blog\";i:1;s:10:\"e-commerce\";i:2;s:9:\"education\";i:3;s:13:\"entertainment\";i:4;s:14:\"food-and-drink\";i:5;s:7:\"holiday\";i:6;s:4:\"news\";i:7;s:11:\"photography\";i:8;s:9:\"portfolio\";}}', 'no'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('141', 'theme_mods_twentysixteen', 'a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1474090414;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('142', 'current_theme', 'Photolog', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('143', 'theme_mods_photolog', 'a:4:{i:0;b:0;s:12:\"header_image\";s:77:\"http://hotspot.helloperiyar.com/wp-content/uploads/2016/09/cropped-header.jpg\";s:17:\"header_image_data\";O:8:\"stdClass\":5:{s:13:\"attachment_id\";i:182;s:3:\"url\";s:77:\"http://hotspot.helloperiyar.com/wp-content/uploads/2016/09/cropped-header.jpg\";s:13:\"thumbnail_url\";s:77:\"http://hotspot.helloperiyar.com/wp-content/uploads/2016/09/cropped-header.jpg\";s:6:\"height\";i:800;s:5:\"width\";i:1400;}s:18:\"nav_menu_locations\";a:2:{s:6:\"social\";i:3;s:7:\"primary\";i:0;}}', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('144', 'theme_switched', '', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('190', '_site_transient_timeout_available_translations', '1474109025', 'no'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('191', '_site_transient_available_translations', 'a:85:{s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-03 19:46:28\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"??????? ????????\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.6.1/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"????????\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-16 18:36:09\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"???????\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"????????\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.5.4\";s:7:\"updated\";s:19:\"2016-06-18 20:18:13\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Az?rbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.5.4/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-11 22:42:10\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"????? ?????????\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.4.2/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-13 13:34:55\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"?????????\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"??????\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-15 17:09:07\";s:12:\"english_name\";s:7:\"Bengali\";s:11:\"native_name\";s:15:\"?????\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:23:\"????? ??.\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-05 09:44:12\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"???????\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"????????\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"4.5.4\";s:7:\"updated\";s:19:\"2016-04-19 23:16:37\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.4/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-07 21:38:31\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.4.3\";s:7:\"updated\";s:19:\"2016-02-16 15:34:57\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.4.3/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-02-11 18:32:36\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:12:\"?eština?\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokra?ovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-12 10:17:24\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-12 09:12:43\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Fortsæt\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-15 12:56:13\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-15 12:59:43\";s:12:\"english_name\";s:23:\"(Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/4.6.1/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-12 19:52:32\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/4.6.1/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-16 08:29:01\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-14 18:12:11\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"????????\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"????????\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-11 23:19:29\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-20 07:14:07\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-12 02:18:44\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-16 11:54:12\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-11 22:36:25\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-16 18:57:14\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Da?rigi\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-19 13:48:04\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/es_AR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-17 17:56:31\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/es_GT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-17 22:11:44\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/es_CL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-29 15:07:52\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/es_MX.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:6:\"4.3-RC\";s:7:\"updated\";s:19:\"2015-08-04 06:10:33\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.3-RC/es_CO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-17 12:34:44\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/es_VE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-14 11:04:37\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/es_ES.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"es\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-09 09:36:22\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/es_PE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:7:\"4.6-rc2\";s:7:\"updated\";s:19:\"2016-08-09 06:49:25\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.6-rc2/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-08 19:27:09\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-16 09:07:28\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"?????\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"?????\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-15 18:30:48\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-15 19:02:20\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-16 16:12:56\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-13 16:21:14\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-21 15:44:17\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-04 13:42:43\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"???????\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:31:\"???? ??????\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"????? ??\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.4.2/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"?????\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-03 21:57:20\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"????????\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"????\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-03 13:43:01\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"??????\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"????\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-07 15:12:28\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-07 19:31:42\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-02-04 07:13:54\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"???????\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.4.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"??????????\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-20 00:18:09\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-14 14:06:03\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-09 15:46:50\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-17 17:33:07\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"???\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"???\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-29 11:51:34\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"???????\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"??????????\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-26 00:37:05\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"???\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"??\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-11 21:29:34\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvi? kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"T?sti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-16 10:22:29\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpin?t\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"4.5.4\";s:7:\"updated\";s:19:\"2016-05-12 13:55:28\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"?????????? ?????\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.4/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"????????\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-14 07:43:21\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"?????\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"???? ????\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-14 14:18:43\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.1.13\";s:7:\"updated\";s:19:\"2015-03-26 15:57:42\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"?????\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.1.13/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"??????????????????\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-16 13:09:49\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-09 10:10:04\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"4.4.3\";s:7:\"updated\";s:19:\"2016-01-20 13:35:50\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/4.4.3/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-27 16:24:28\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-25 09:29:49\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.6.1/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-07 16:28:27\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.1.13\";s:7:\"updated\";s:19:\"2015-03-29 22:19:48\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"????\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1.13/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"???? ?????\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-14 09:00:10\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-14 15:53:43\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-14 19:25:04\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Român?\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continu?\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-30 19:40:04\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"???????\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"??????????\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-17 10:49:08\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Sloven?ina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokra?ova?\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-18 16:23:26\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenš?ina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-14 07:00:01\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-12 16:41:17\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"?????? ?????\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"???????\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-29 20:20:44\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-09 07:28:21\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"?l?nsk? g?dka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.6.1/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"K?ntynuowa?\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"4.5.4\";s:7:\"updated\";s:19:\"2016-06-30 10:22:26\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"???\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.5.4/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"?????\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-11-27 15:51:36\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.4.2/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-16 10:50:15\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:5:\"4.5.4\";s:7:\"updated\";s:19:\"2016-06-22 12:27:05\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:9:\"Uy?urq?\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.4/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"?????????????\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-12 21:46:06\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"??????????\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"??????????\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-09 01:01:25\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Ti?ng Vi?t\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.4.2/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Ti?p t?c\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-18 13:53:15\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"????\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"??\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"4.5.4\";s:7:\"updated\";s:19:\"2016-04-17 03:29:01\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"????\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.4/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"??\";}}}', 'no'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('212', 'category_children', 'a:0:{}', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('336', 'nav_menu_options', 'a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('342', '_transient_photolog_categories', '1', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('344', '_transient_is_multi_author', '0', 'yes'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('362', '_site_transient_update_core', 'O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.6.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.6.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.6.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.6.1-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.6.1\";s:7:\"version\";s:5:\"4.6.1\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.4\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1474347349;s:15:\"version_checked\";s:5:\"4.6.1\";s:12:\"translations\";a:0:{}}', 'no'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('363', '_site_transient_update_themes', 'O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1474347360;s:7:\"checked\";a:4:{s:8:\"photolog\";s:7:\"1.0.2.2\";s:13:\"twentyfifteen\";s:3:\"1.6\";s:14:\"twentyfourteen\";s:3:\"1.8\";s:13:\"twentysixteen\";s:3:\"1.3\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}', 'no'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('364', '_site_transient_update_plugins', 'O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1474347358;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:2:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:3:\"3.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/akismet.3.2.zip\";}s:9:\"hello.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"3564\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/hello-dolly.1.6.zip\";}}}', 'no'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('367', '_site_transient_timeout_theme_roots', '1474349152', 'no'); -INSERT INTO `wp_wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES ('368', '_site_transient_theme_roots', 'a:4:{s:8:\"photolog\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:14:\"twentyfourteen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";}', 'no'); - --- TABLE: wp_wp_postmeta -CREATE TABLE `wp_wp_postmeta` ( - `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `post_id` bigint(20) unsigned 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`(191)) -) ENGINE=InnoDB AUTO_INCREMENT=969 DEFAULT CHARSET=utf8; -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('1', '2', '_wp_page_template', 'default'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('223', '87', '_wp_attached_file', '2016/09/shot1.jpg'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('224', '87', '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:1280;s:4:\"file\";s:17:\"2016/09/shot1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"shot1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"shot1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"shot1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"shot1-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('225', '88', '_wp_attached_file', '2016/09/shot2.jpg'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('226', '88', '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:1280;s:4:\"file\";s:17:\"2016/09/shot2.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"shot2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"shot2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"shot2-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"shot2-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('227', '89', '_wp_attached_file', '2016/09/shot3.jpg'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('228', '89', '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:1280;s:4:\"file\";s:17:\"2016/09/shot3.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"shot3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"shot3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"shot3-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"shot3-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('229', '90', '_wp_attached_file', '2016/09/shot4.jpg'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('230', '90', '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:1280;s:4:\"file\";s:17:\"2016/09/shot4.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"shot4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"shot4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"shot4-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"shot4-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('231', '91', '_wp_attached_file', '2016/09/shot5.jpg'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('232', '91', '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:17:\"2016/09/shot5.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"shot5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"shot5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"shot5-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('233', '92', '_wp_attached_file', '2016/09/shot6.jpg'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('234', '92', '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:17:\"2016/09/shot6.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"shot6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"shot6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"shot6-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('235', '93', '_wp_attached_file', '2016/09/shot7.jpg'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('236', '93', '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:17:\"2016/09/shot7.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"shot7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"shot7-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"shot7-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('237', '94', '_wp_attached_file', '2016/09/shot8.jpg'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('238', '94', '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:17:\"2016/09/shot8.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"shot8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"shot8-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"shot8-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('239', '95', '_wp_attached_file', '2016/09/shot9.jpg'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('240', '95', '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:17:\"2016/09/shot9.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"shot9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"shot9-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"shot9-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('241', '96', '_wp_attached_file', '2016/09/shot10.jpg'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('242', '96', '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:18:\"2016/09/shot10.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"shot10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"shot10-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"shot10-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('243', '97', '_wp_attached_file', '2016/09/shot10a.jpg'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('244', '97', '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:19:\"2016/09/shot10a.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"shot10a-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"shot10a-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"shot10a-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('245', '98', '_wp_attached_file', '2016/09/shot11.jpg'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('246', '98', '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:18:\"2016/09/shot11.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"shot11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"shot11-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"shot11-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('247', '99', '_wp_attached_file', '2016/09/shot12.jpg'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('248', '99', '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:18:\"2016/09/shot12.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"shot12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"shot12-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"shot12-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('249', '100', '_wp_attached_file', '2016/09/shot14.jpg'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('250', '100', '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:18:\"2016/09/shot14.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"shot14-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"shot14-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"shot14-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('251', '101', '_wp_attached_file', '2016/09/shot14a.jpg'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('252', '101', '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:19:\"2016/09/shot14a.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"shot14a-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"shot14a-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"shot14a-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('253', '102', '_wp_attached_file', '2016/09/shot14b.jpg'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('254', '102', '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:19:\"2016/09/shot14b.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"shot14b-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"shot14b-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"shot14b-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('255', '103', '_wp_attached_file', '2016/09/shot14c.jpg'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('256', '103', '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:19:\"2016/09/shot14c.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"shot14c-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"shot14c-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"shot14c-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('257', '104', '_wp_attached_file', '2016/09/shot14d.jpg'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('258', '104', '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:19:\"2016/09/shot14d.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"shot14d-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"shot14d-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"shot14d-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('259', '105', '_wp_attached_file', '2016/09/shot14e.jpg'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('260', '105', '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:19:\"2016/09/shot14e.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"shot14e-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"shot14e-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"shot14e-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('261', '106', '_wp_attached_file', '2016/09/shot14ea.jpg'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('262', '106', '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:20:\"2016/09/shot14ea.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"shot14ea-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"shot14ea-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"shot14ea-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('263', '107', '_wp_attached_file', '2016/09/shot14f.jpg'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('264', '107', '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:19:\"2016/09/shot14f.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"shot14f-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"shot14f-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"shot14f-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('265', '108', '_wp_attached_file', '2016/09/shot14fa.jpg'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('266', '108', '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:20:\"2016/09/shot14fa.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"shot14fa-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"shot14fa-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"shot14fa-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('267', '109', '_wp_attached_file', '2016/09/shot15.jpg'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('268', '109', '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:18:\"2016/09/shot15.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"shot15-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"shot15-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"shot15-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('269', '110', '_wp_attached_file', '2016/09/shot16.jpg'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('270', '110', '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:18:\"2016/09/shot16.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"shot16-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"shot16-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"shot16-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('271', '111', '_wp_attached_file', '2016/09/shot17.jpg'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('272', '111', '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:18:\"2016/09/shot17.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"shot17-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"shot17-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"shot17-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('273', '112', '_wp_attached_file', '2016/09/shot18.jpg'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('274', '112', '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:18:\"2016/09/shot18.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"shot18-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"shot18-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"shot18-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('275', '113', '_wp_attached_file', '2016/09/shot19.jpg'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('276', '113', '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:18:\"2016/09/shot19.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"shot19-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"shot19-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"shot19-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('277', '114', '_wp_attached_file', '2016/09/shot20.jpg'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('278', '114', '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:18:\"2016/09/shot20.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"shot20-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"shot20-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"shot20-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('279', '115', '_wp_attached_file', '2016/09/shot21.jpg'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('280', '115', '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:18:\"2016/09/shot21.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"shot21-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"shot21-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"shot21-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('295', '118', '_edit_last', '2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('296', '118', '_edit_lock', '1474119207:2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('297', '118', '_thumbnail_id', '88'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('304', '124', '_edit_last', '2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('305', '124', '_edit_lock', '1474120399:2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('306', '124', '_thumbnail_id', '89'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('317', '126', '_edit_last', '2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('318', '126', '_edit_lock', '1474120421:2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('319', '126', '_thumbnail_id', '90'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('327', '124', '_wp_old_slug', 'single-user-creation__trashed'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('334', '129', '_edit_last', '2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('335', '129', '_edit_lock', '1474119263:2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('336', '129', '_thumbnail_id', '92'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('339', '131', '_edit_last', '2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('340', '131', '_edit_lock', '1474119462:2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('341', '131', '_thumbnail_id', '93'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('346', '134', '_edit_last', '2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('347', '134', '_edit_lock', '1474120530:2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('348', '134', '_thumbnail_id', '94'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('351', '136', '_edit_last', '2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('352', '136', '_edit_lock', '1474120576:2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('353', '136', '_thumbnail_id', '95'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('356', '138', '_edit_last', '2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('357', '138', '_edit_lock', '1474120557:2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('358', '138', '_thumbnail_id', '96'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('361', '140', '_edit_last', '2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('362', '140', '_edit_lock', '1474120678:2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('363', '140', '_thumbnail_id', '98'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('370', '145', '_edit_last', '2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('371', '145', '_edit_lock', '1474122452:2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('372', '145', '_thumbnail_id', '112'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('377', '147', '_edit_last', '2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('378', '147', '_edit_lock', '1474120702:2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('379', '147', '_thumbnail_id', '99'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('382', '149', '_edit_last', '2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('383', '149', '_edit_lock', '1474120722:2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('384', '149', '_thumbnail_id', '100'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('387', '151', '_edit_last', '2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('388', '151', '_edit_lock', '1474122017:2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('389', '151', '_thumbnail_id', '101'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('392', '153', '_edit_last', '2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('393', '153', '_edit_lock', '1474122029:2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('394', '153', '_thumbnail_id', '102'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('397', '155', '_edit_last', '2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('398', '155', '_edit_lock', '1474122041:2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('399', '155', '_thumbnail_id', '103'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('404', '158', '_edit_last', '2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('405', '158', '_edit_lock', '1474122138:2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('406', '158', '_thumbnail_id', '104'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('409', '160', '_edit_last', '2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('410', '160', '_edit_lock', '1474122773:2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('411', '160', '_thumbnail_id', '105'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('414', '162', '_edit_last', '2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('415', '162', '_edit_lock', '1474122170:2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('416', '162', '_thumbnail_id', '107'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('419', '164', '_edit_last', '2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('420', '164', '_edit_lock', '1474122331:2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('421', '164', '_thumbnail_id', '109'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('424', '166', '_edit_last', '2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('425', '166', '_edit_lock', '1474122431:2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('426', '166', '_thumbnail_id', '111'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('433', '171', '_edit_last', '2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('434', '171', '_edit_lock', '1474122291:2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('435', '171', '_thumbnail_id', '113'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('438', '173', '_edit_last', '2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('439', '173', '_edit_lock', '1474122522:2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('440', '173', '_thumbnail_id', '114'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('443', '175', '_edit_last', '2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('444', '175', '_edit_lock', '1474122551:2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('445', '175', '_thumbnail_id', '88'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('448', '177', '_edit_last', '2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('449', '177', '_edit_lock', '1474122539:2'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('450', '177', '_thumbnail_id', '115'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('475', '180', '_wp_attached_file', '2016/09/header.png'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('476', '180', '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1264;s:6:\"height\";i:219;s:4:\"file\";s:18:\"2016/09/header.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"header-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"header-300x52.png\";s:5:\"width\";i:300;s:6:\"height\";i:52;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"header-768x133.png\";s:5:\"width\";i:768;s:6:\"height\";i:133;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"header-1024x177.png\";s:5:\"width\";i:1024;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('477', '180', '_wp_attachment_custom_header_last_used_photolog', '1474119891'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('478', '180', '_wp_attachment_is_custom_header', 'photolog'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('479', '181', '_wp_attached_file', '2016/09/header.jpg'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('480', '181', '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:800;s:4:\"file\";s:18:\"2016/09/header.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"header-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"header-300x171.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"header-768x439.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:439;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"header-1024x585.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:585;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('481', '182', '_wp_attached_file', '2016/09/cropped-header.jpg'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('482', '182', '_wp_attachment_context', 'custom-header'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('483', '182', '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2016/09/cropped-header.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"cropped-header-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"cropped-header-300x171.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"cropped-header-768x439.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:439;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"cropped-header-1024x585.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:585;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('484', '182', '_wp_attachment_custom_header_last_used_photolog', '1474120209'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('485', '182', '_wp_attachment_is_custom_header', 'photolog'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('536', '184', '_menu_item_type', 'post_type'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('537', '184', '_menu_item_menu_item_parent', '0'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('538', '184', '_menu_item_object_id', '129'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('539', '184', '_menu_item_object', 'post'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('540', '184', '_menu_item_target', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('541', '184', '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('542', '184', '_menu_item_xfn', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('543', '184', '_menu_item_url', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('752', '208', '_menu_item_type', 'post_type'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('753', '208', '_menu_item_menu_item_parent', '0'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('754', '208', '_menu_item_object_id', '129'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('755', '208', '_menu_item_object', 'post'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('756', '208', '_menu_item_target', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('757', '208', '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('758', '208', '_menu_item_xfn', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('759', '208', '_menu_item_url', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('761', '209', '_menu_item_type', 'post_type'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('762', '209', '_menu_item_menu_item_parent', '0'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('763', '209', '_menu_item_object_id', '131'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('764', '209', '_menu_item_object', 'post'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('765', '209', '_menu_item_target', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('766', '209', '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('767', '209', '_menu_item_xfn', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('768', '209', '_menu_item_url', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('770', '210', '_menu_item_type', 'post_type'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('771', '210', '_menu_item_menu_item_parent', '0'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('772', '210', '_menu_item_object_id', '118'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('773', '210', '_menu_item_object', 'post'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('774', '210', '_menu_item_target', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('775', '210', '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('776', '210', '_menu_item_xfn', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('777', '210', '_menu_item_url', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('779', '211', '_menu_item_type', 'post_type'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('780', '211', '_menu_item_menu_item_parent', '0'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('781', '211', '_menu_item_object_id', '149'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('782', '211', '_menu_item_object', 'post'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('783', '211', '_menu_item_target', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('784', '211', '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('785', '211', '_menu_item_xfn', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('786', '211', '_menu_item_url', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('788', '212', '_menu_item_type', 'post_type'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('789', '212', '_menu_item_menu_item_parent', '0'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('790', '212', '_menu_item_object_id', '136'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('791', '212', '_menu_item_object', 'post'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('792', '212', '_menu_item_target', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('793', '212', '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('794', '212', '_menu_item_xfn', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('795', '212', '_menu_item_url', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('797', '213', '_menu_item_type', 'post_type'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('798', '213', '_menu_item_menu_item_parent', '0'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('799', '213', '_menu_item_object_id', '134'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('800', '213', '_menu_item_object', 'post'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('801', '213', '_menu_item_target', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('802', '213', '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('803', '213', '_menu_item_xfn', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('804', '213', '_menu_item_url', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('806', '214', '_menu_item_type', 'post_type'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('807', '214', '_menu_item_menu_item_parent', '0'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('808', '214', '_menu_item_object_id', '177'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('809', '214', '_menu_item_object', 'post'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('810', '214', '_menu_item_target', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('811', '214', '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('812', '214', '_menu_item_xfn', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('813', '214', '_menu_item_url', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('815', '215', '_menu_item_type', 'post_type'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('816', '215', '_menu_item_menu_item_parent', '0'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('817', '215', '_menu_item_object_id', '171'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('818', '215', '_menu_item_object', 'post'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('819', '215', '_menu_item_target', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('820', '215', '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('821', '215', '_menu_item_xfn', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('822', '215', '_menu_item_url', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('824', '216', '_menu_item_type', 'post_type'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('825', '216', '_menu_item_menu_item_parent', '0'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('826', '216', '_menu_item_object_id', '173'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('827', '216', '_menu_item_object', 'post'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('828', '216', '_menu_item_target', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('829', '216', '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('830', '216', '_menu_item_xfn', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('831', '216', '_menu_item_url', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('833', '217', '_menu_item_type', 'post_type'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('834', '217', '_menu_item_menu_item_parent', '0'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('835', '217', '_menu_item_object_id', '166'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('836', '217', '_menu_item_object', 'post'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('837', '217', '_menu_item_target', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('838', '217', '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('839', '217', '_menu_item_xfn', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('840', '217', '_menu_item_url', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('842', '218', '_menu_item_type', 'post_type'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('843', '218', '_menu_item_menu_item_parent', '0'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('844', '218', '_menu_item_object_id', '164'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('845', '218', '_menu_item_object', 'post'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('846', '218', '_menu_item_target', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('847', '218', '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('848', '218', '_menu_item_xfn', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('849', '218', '_menu_item_url', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('851', '219', '_menu_item_type', 'post_type'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('852', '219', '_menu_item_menu_item_parent', '0'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('853', '219', '_menu_item_object_id', '138'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('854', '219', '_menu_item_object', 'post'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('855', '219', '_menu_item_target', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('856', '219', '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('857', '219', '_menu_item_xfn', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('858', '219', '_menu_item_url', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('860', '220', '_menu_item_type', 'post_type'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('861', '220', '_menu_item_menu_item_parent', '0'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('862', '220', '_menu_item_object_id', '145'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('863', '220', '_menu_item_object', 'post'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('864', '220', '_menu_item_target', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('865', '220', '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('866', '220', '_menu_item_xfn', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('867', '220', '_menu_item_url', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('869', '221', '_menu_item_type', 'post_type'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('870', '221', '_menu_item_menu_item_parent', '0'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('871', '221', '_menu_item_object_id', '140'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('872', '221', '_menu_item_object', 'post'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('873', '221', '_menu_item_target', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('874', '221', '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('875', '221', '_menu_item_xfn', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('876', '221', '_menu_item_url', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('878', '222', '_menu_item_type', 'post_type'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('879', '222', '_menu_item_menu_item_parent', '0'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('880', '222', '_menu_item_object_id', '147'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('881', '222', '_menu_item_object', 'post'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('882', '222', '_menu_item_target', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('883', '222', '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('884', '222', '_menu_item_xfn', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('885', '222', '_menu_item_url', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('887', '223', '_menu_item_type', 'post_type'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('888', '223', '_menu_item_menu_item_parent', '0'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('889', '223', '_menu_item_object_id', '124'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('890', '223', '_menu_item_object', 'post'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('891', '223', '_menu_item_target', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('892', '223', '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('893', '223', '_menu_item_xfn', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('894', '223', '_menu_item_url', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('896', '224', '_menu_item_type', 'post_type'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('897', '224', '_menu_item_menu_item_parent', '0'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('898', '224', '_menu_item_object_id', '126'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('899', '224', '_menu_item_object', 'post'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('900', '224', '_menu_item_target', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('901', '224', '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('902', '224', '_menu_item_xfn', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('903', '224', '_menu_item_url', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('905', '225', '_menu_item_type', 'post_type'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('906', '225', '_menu_item_menu_item_parent', '0'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('907', '225', '_menu_item_object_id', '158'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('908', '225', '_menu_item_object', 'post'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('909', '225', '_menu_item_target', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('910', '225', '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('911', '225', '_menu_item_xfn', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('912', '225', '_menu_item_url', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('914', '226', '_menu_item_type', 'post_type'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('915', '226', '_menu_item_menu_item_parent', '0'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('916', '226', '_menu_item_object_id', '151'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('917', '226', '_menu_item_object', 'post'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('918', '226', '_menu_item_target', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('919', '226', '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('920', '226', '_menu_item_xfn', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('921', '226', '_menu_item_url', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('923', '227', '_menu_item_type', 'post_type'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('924', '227', '_menu_item_menu_item_parent', '0'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('925', '227', '_menu_item_object_id', '160'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('926', '227', '_menu_item_object', 'post'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('927', '227', '_menu_item_target', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('928', '227', '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('929', '227', '_menu_item_xfn', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('930', '227', '_menu_item_url', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('932', '228', '_menu_item_type', 'post_type'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('933', '228', '_menu_item_menu_item_parent', '0'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('934', '228', '_menu_item_object_id', '162'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('935', '228', '_menu_item_object', 'post'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('936', '228', '_menu_item_target', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('937', '228', '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('938', '228', '_menu_item_xfn', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('939', '228', '_menu_item_url', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('941', '229', '_menu_item_type', 'post_type'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('942', '229', '_menu_item_menu_item_parent', '0'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('943', '229', '_menu_item_object_id', '155'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('944', '229', '_menu_item_object', 'post'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('945', '229', '_menu_item_target', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('946', '229', '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('947', '229', '_menu_item_xfn', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('948', '229', '_menu_item_url', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('950', '230', '_menu_item_type', 'post_type'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('951', '230', '_menu_item_menu_item_parent', '0'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('952', '230', '_menu_item_object_id', '153'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('953', '230', '_menu_item_object', 'post'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('954', '230', '_menu_item_target', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('955', '230', '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('956', '230', '_menu_item_xfn', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('957', '230', '_menu_item_url', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('959', '231', '_menu_item_type', 'post_type'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('960', '231', '_menu_item_menu_item_parent', '0'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('961', '231', '_menu_item_object_id', '175'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('962', '231', '_menu_item_object', 'post'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('963', '231', '_menu_item_target', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('964', '231', '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('965', '231', '_menu_item_xfn', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('966', '231', '_menu_item_url', ''); -INSERT INTO `wp_wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES ('968', '2', '_edit_lock', '1474261371:2'); - --- TABLE: wp_wp_posts -CREATE TABLE `wp_wp_posts` ( - `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `post_author` bigint(20) unsigned 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_excerpt` text NOT NULL, - `post_status` varchar(20) NOT NULL DEFAULT 'publish', - `comment_status` varchar(20) NOT NULL DEFAULT 'open', - `ping_status` varchar(20) 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` longtext NOT NULL, - `post_parent` bigint(20) unsigned 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`(191)), - KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), - KEY `post_parent` (`post_parent`), - KEY `post_author` (`post_author`) -) ENGINE=InnoDB AUTO_INCREMENT=233 DEFAULT CHARSET=utf8; -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('2', '2', '2016-05-10 03:48:21', '2016-05-10 03:48:21', 'This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n
Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)
\n\n...or something like this:\n\n
The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.
\n\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!', 'Sample Page', '', 'publish', 'closed', 'open', '', 'sample-page', '', '', '2016-05-10 03:48:21', '2016-05-10 03:48:21', '', '0', 'http://wp452m.a10-52-158-154.qa.plesk.ru/wordpress/?page_id=2', '0', 'page', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('3', '2', '2016-09-17 05:32:00', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2016-09-17 05:32:00', '0000-00-00 00:00:00', '', '0', 'http://hotspot.helloperiyar.com/?p=3', '0', 'post', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('87', '2', '2016-09-17 13:54:20', '2016-09-17 08:24:20', '', 'shot1', '', 'inherit', 'closed', 'closed', '', 'shot1', '', '', '2016-09-17 18:31:42', '2016-09-17 13:01:42', '', '177', 'http://hotspot.helloperiyar.com/wp-content/uploads/2016/09/shot1.jpg', '0', 'attachment', 'image/jpeg', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('88', '2', '2016-09-17 13:54:29', '2016-09-17 08:24:29', '', 'shot2', '', 'inherit', 'closed', 'closed', '', 'shot2', '', '', '2016-09-17 13:54:29', '2016-09-17 08:24:29', '', '0', 'http://hotspot.helloperiyar.com/wp-content/uploads/2016/09/shot2.jpg', '0', 'attachment', 'image/jpeg', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('89', '2', '2016-09-17 13:54:41', '2016-09-17 08:24:41', '', 'shot3', '', 'inherit', 'closed', 'closed', '', 'shot3', '', '', '2016-09-17 13:54:41', '2016-09-17 08:24:41', '', '0', 'http://hotspot.helloperiyar.com/wp-content/uploads/2016/09/shot3.jpg', '0', 'attachment', 'image/jpeg', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('90', '2', '2016-09-17 13:54:51', '2016-09-17 08:24:51', '', 'shot4', '', 'inherit', 'closed', 'closed', '', 'shot4', '', '', '2016-09-17 13:54:51', '2016-09-17 08:24:51', '', '0', 'http://hotspot.helloperiyar.com/wp-content/uploads/2016/09/shot4.jpg', '0', 'attachment', 'image/jpeg', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('91', '2', '2016-09-17 13:54:59', '2016-09-17 08:24:59', '', 'shot5', '', 'inherit', 'closed', 'closed', '', 'shot5', '', '', '2016-09-17 13:54:59', '2016-09-17 08:24:59', '', '0', 'http://hotspot.helloperiyar.com/wp-content/uploads/2016/09/shot5.jpg', '0', 'attachment', 'image/jpeg', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('92', '2', '2016-09-17 13:55:07', '2016-09-17 08:25:07', '', 'shot6', '', 'inherit', 'closed', 'closed', '', 'shot6', '', '', '2016-09-17 13:55:07', '2016-09-17 08:25:07', '', '0', 'http://hotspot.helloperiyar.com/wp-content/uploads/2016/09/shot6.jpg', '0', 'attachment', 'image/jpeg', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('93', '2', '2016-09-17 13:55:16', '2016-09-17 08:25:16', '', 'shot7', '', 'inherit', 'closed', 'closed', '', 'shot7', '', '', '2016-09-17 13:55:16', '2016-09-17 08:25:16', '', '0', 'http://hotspot.helloperiyar.com/wp-content/uploads/2016/09/shot7.jpg', '0', 'attachment', 'image/jpeg', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('94', '2', '2016-09-17 13:55:23', '2016-09-17 08:25:23', '', 'shot8', '', 'inherit', 'closed', 'closed', '', 'shot8', '', '', '2016-09-17 13:55:23', '2016-09-17 08:25:23', '', '0', 'http://hotspot.helloperiyar.com/wp-content/uploads/2016/09/shot8.jpg', '0', 'attachment', 'image/jpeg', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('95', '2', '2016-09-17 13:55:31', '2016-09-17 08:25:31', '', 'shot9', '', 'inherit', 'closed', 'closed', '', 'shot9', '', '', '2016-09-17 13:55:31', '2016-09-17 08:25:31', '', '0', 'http://hotspot.helloperiyar.com/wp-content/uploads/2016/09/shot9.jpg', '0', 'attachment', 'image/jpeg', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('96', '2', '2016-09-17 13:55:42', '2016-09-17 08:25:42', '', 'shot10', '', 'inherit', 'closed', 'closed', '', 'shot10', '', '', '2016-09-17 13:55:42', '2016-09-17 08:25:42', '', '0', 'http://hotspot.helloperiyar.com/wp-content/uploads/2016/09/shot10.jpg', '0', 'attachment', 'image/jpeg', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('97', '2', '2016-09-17 13:55:50', '2016-09-17 08:25:50', '', 'shot10a', '', 'inherit', 'closed', 'closed', '', 'shot10a', '', '', '2016-09-17 13:55:50', '2016-09-17 08:25:50', '', '0', 'http://hotspot.helloperiyar.com/wp-content/uploads/2016/09/shot10a.jpg', '0', 'attachment', 'image/jpeg', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('98', '2', '2016-09-17 13:56:00', '2016-09-17 08:26:00', '', 'shot11', '', 'inherit', 'closed', 'closed', '', 'shot11', '', '', '2016-09-17 13:56:00', '2016-09-17 08:26:00', '', '0', 'http://hotspot.helloperiyar.com/wp-content/uploads/2016/09/shot11.jpg', '0', 'attachment', 'image/jpeg', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('99', '2', '2016-09-17 13:56:12', '2016-09-17 08:26:12', '', 'shot12', '', 'inherit', 'closed', 'closed', '', 'shot12', '', '', '2016-09-17 13:56:12', '2016-09-17 08:26:12', '', '0', 'http://hotspot.helloperiyar.com/wp-content/uploads/2016/09/shot12.jpg', '0', 'attachment', 'image/jpeg', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('100', '2', '2016-09-17 13:56:21', '2016-09-17 08:26:21', '', 'shot14', '', 'inherit', 'closed', 'closed', '', 'shot14', '', '', '2016-09-17 13:56:21', '2016-09-17 08:26:21', '', '0', 'http://hotspot.helloperiyar.com/wp-content/uploads/2016/09/shot14.jpg', '0', 'attachment', 'image/jpeg', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('101', '2', '2016-09-17 13:56:32', '2016-09-17 08:26:32', '', 'shot14a', '', 'inherit', 'closed', 'closed', '', 'shot14a', '', '', '2016-09-17 13:56:32', '2016-09-17 08:26:32', '', '0', 'http://hotspot.helloperiyar.com/wp-content/uploads/2016/09/shot14a.jpg', '0', 'attachment', 'image/jpeg', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('102', '2', '2016-09-17 13:56:41', '2016-09-17 08:26:41', '', 'shot14b', '', 'inherit', 'closed', 'closed', '', 'shot14b', '', '', '2016-09-17 13:56:41', '2016-09-17 08:26:41', '', '0', 'http://hotspot.helloperiyar.com/wp-content/uploads/2016/09/shot14b.jpg', '0', 'attachment', 'image/jpeg', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('103', '2', '2016-09-17 13:56:51', '2016-09-17 08:26:51', '', 'shot14c', '', 'inherit', 'closed', 'closed', '', 'shot14c', '', '', '2016-09-17 13:56:51', '2016-09-17 08:26:51', '', '0', 'http://hotspot.helloperiyar.com/wp-content/uploads/2016/09/shot14c.jpg', '0', 'attachment', 'image/jpeg', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('104', '2', '2016-09-17 13:57:03', '2016-09-17 08:27:03', '', 'shot14d', '', 'inherit', 'closed', 'closed', '', 'shot14d', '', '', '2016-09-17 13:57:03', '2016-09-17 08:27:03', '', '0', 'http://hotspot.helloperiyar.com/wp-content/uploads/2016/09/shot14d.jpg', '0', 'attachment', 'image/jpeg', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('105', '2', '2016-09-17 13:57:12', '2016-09-17 08:27:12', '', 'shot14e', '', 'inherit', 'closed', 'closed', '', 'shot14e', '', '', '2016-09-17 13:57:12', '2016-09-17 08:27:12', '', '0', 'http://hotspot.helloperiyar.com/wp-content/uploads/2016/09/shot14e.jpg', '0', 'attachment', 'image/jpeg', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('106', '2', '2016-09-17 13:57:19', '2016-09-17 08:27:19', '', 'shot14ea', '', 'inherit', 'closed', 'closed', '', 'shot14ea', '', '', '2016-09-17 20:04:32', '2016-09-17 14:34:32', '', '160', 'http://hotspot.helloperiyar.com/wp-content/uploads/2016/09/shot14ea.jpg', '0', 'attachment', 'image/jpeg', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('107', '2', '2016-09-17 13:57:29', '2016-09-17 08:27:29', '', 'shot14f', '', 'inherit', 'closed', 'closed', '', 'shot14f', '', '', '2016-09-17 13:57:29', '2016-09-17 08:27:29', '', '0', 'http://hotspot.helloperiyar.com/wp-content/uploads/2016/09/shot14f.jpg', '0', 'attachment', 'image/jpeg', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('108', '2', '2016-09-17 13:57:44', '2016-09-17 08:27:44', '', 'shot14fa', '', 'inherit', 'closed', 'closed', '', 'shot14fa', '', '', '2016-09-17 17:23:49', '2016-09-17 11:53:49', '', '160', 'http://hotspot.helloperiyar.com/wp-content/uploads/2016/09/shot14fa.jpg', '0', 'attachment', 'image/jpeg', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('109', '2', '2016-09-17 13:57:53', '2016-09-17 08:27:53', '', 'shot15', '', 'inherit', 'closed', 'closed', '', 'shot15', '', '', '2016-09-17 13:57:53', '2016-09-17 08:27:53', '', '0', 'http://hotspot.helloperiyar.com/wp-content/uploads/2016/09/shot15.jpg', '0', 'attachment', 'image/jpeg', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('110', '2', '2016-09-17 13:58:02', '2016-09-17 08:28:02', '', 'shot16', '', 'inherit', 'closed', 'closed', '', 'shot16', '', '', '2016-09-17 17:53:46', '2016-09-17 12:23:46', '', '164', 'http://hotspot.helloperiyar.com/wp-content/uploads/2016/09/shot16.jpg', '0', 'attachment', 'image/jpeg', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('111', '2', '2016-09-17 13:58:10', '2016-09-17 08:28:10', '', 'shot17', '', 'inherit', 'closed', 'closed', '', 'shot17', '', '', '2016-09-17 13:58:10', '2016-09-17 08:28:10', '', '0', 'http://hotspot.helloperiyar.com/wp-content/uploads/2016/09/shot17.jpg', '0', 'attachment', 'image/jpeg', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('112', '2', '2016-09-17 13:58:18', '2016-09-17 08:28:18', '', 'shot18', '', 'inherit', 'closed', 'closed', '', 'shot18', '', '', '2016-09-17 13:58:18', '2016-09-17 08:28:18', '', '0', 'http://hotspot.helloperiyar.com/wp-content/uploads/2016/09/shot18.jpg', '0', 'attachment', 'image/jpeg', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('113', '2', '2016-09-17 13:58:24', '2016-09-17 08:28:24', '', 'shot19', '', 'inherit', 'closed', 'closed', '', 'shot19', '', '', '2016-09-17 13:58:24', '2016-09-17 08:28:24', '', '0', 'http://hotspot.helloperiyar.com/wp-content/uploads/2016/09/shot19.jpg', '0', 'attachment', 'image/jpeg', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('114', '2', '2016-09-17 13:58:32', '2016-09-17 08:28:32', '', 'shot20', '', 'inherit', 'closed', 'closed', '', 'shot20', '', '', '2016-09-17 13:58:32', '2016-09-17 08:28:32', '', '0', 'http://hotspot.helloperiyar.com/wp-content/uploads/2016/09/shot20.jpg', '0', 'attachment', 'image/jpeg', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('115', '2', '2016-09-17 13:58:41', '2016-09-17 08:28:41', '', 'shot21', '', 'inherit', 'closed', 'closed', '', 'shot21', '', '', '2016-09-17 13:58:41', '2016-09-17 08:28:41', '', '0', 'http://hotspot.helloperiyar.com/wp-content/uploads/2016/09/shot21.jpg', '0', 'attachment', 'image/jpeg', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('118', '2', '2016-09-17 19:01:25', '2016-09-17 13:31:25', 'Easy HotSpot is a very simple and easy to use WiFi Hotspot user management utility by Team Zetozone.\r\n\r\nIt can be used with a Mikrotik Hardware Router or a PC installed with Mikrotik RouterOS for managing WiFi hotspots.  It is suitable for hotspots of any size and capacity like small internet caffes to Hotels and Resorts and Educational institutions like Universities, or Giant corporate houses employing 1000\'s of simultaneous users in each site.\r\n\r\n
\r\n\r\nWhy this Utility?\r\n\r\nEventhough the interface provided by mikrotik is very powerful, is not suitable for an ordinary user manager performing only the very basic activities like managing the guest users and profiles with very little effort and in an easily manageable way.  Here comes the Easy HotSpot as an assistant to serve.\r\n\r\n
\r\n\r\nMajor Features:\r\n\r\nAdding Single Guest User Accounts\r\n\r\nAdding Multiple Guest User Accounts as a single lot\r\n\r\nListing Active Users\r\n\r\nListing inactive Users\r\n\r\nRemove Selected/All User Accounts\r\n\r\nRemove all validity expired User Accounts\r\n\r\nServer Log of Recent Activities\r\n\r\nRemoval of uninitiated guest accounts.  Accounts created earlier but no one has started using it yet.\r\n\r\nVoucher Management and Printing.  Different Voucher Printing options are available suiting needs of all.\r\n\r\nManagement of System user Accounts who are in charge of managing the guest user accounts with this utility. 3 levels of System users are there from the Super power Admin to Unit heads and normal users. There is no limit on the number of system users of any level.\r\n\r\nHotspot User Profiles Management:  Creation of User profiles to changing options like Session Timeout, MAC Cookie Timeout, Keepalive Timeout, Download and Upload Speed Limits, Number of simultaneous user logins allowed per user account etc.\r\n\r\n
\r\n\r\n ', 'Easy HotSpot User Manager', '', 'publish', 'closed', 'closed', '', 'easy-hotspot-user-manager', '', '', '2016-09-17 19:03:27', '2016-09-17 13:33:27', '', '0', 'http://hotspot.helloperiyar.com/?p=118', '0', 'post', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('119', '2', '2016-09-17 14:46:09', '2016-09-17 09:16:09', 'Easy HotSpot is a very simple and easy to use WiFi Hotspot user management utility by Team Zetozone.\r\n\r\nIt can be used with a Mikrotik Hardware Router or a PC installed with Mikrotik RouterOS for managing WiFi hotspots.  It is suitable for hotspots of any size and capacity like small internet caffes to Hotels and Resorts and Educational institutions like Universities, or Giant corporate houses employing 1000\'s of users in each site.\r\n\r\n ', 'Easy HotSpot User Manager', '', 'inherit', 'closed', 'closed', '', '118-revision-v1', '', '', '2016-09-17 14:46:09', '2016-09-17 09:16:09', '', '118', 'http://hotspot.helloperiyar.com/118-revision-v1/', '0', 'revision', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('120', '2', '2016-09-17 14:56:57', '2016-09-17 09:26:57', 'Easy HotSpot is a very simple and easy to use WiFi Hotspot user management utility by Team Zetozone.\r\n\r\nIt can be used with a Mikrotik Hardware Router or a PC installed with Mikrotik RouterOS for managing WiFi hotspots.  It is suitable for hotspots of any size and capacity like small internet caffes to Hotels and Resorts and Educational institutions like Universities, or Giant corporate houses employing 1000\'s of simultaneous users in each site.\r\n\r\nWhy this Utility?\r\n\r\nEventhough the interface provided by mikrotik is very powerful, is not suitable for an ordinary user manager performing only the very basic activities like managing the guest users and profiles with very little effort and in an easily manageable way.  Here comes the Easy HotSpot for your help.', 'Easy HotSpot User Manager', '', 'inherit', 'closed', 'closed', '', '118-revision-v1', '', '', '2016-09-17 14:56:57', '2016-09-17 09:26:57', '', '118', 'http://hotspot.helloperiyar.com/118-revision-v1/', '0', 'revision', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('121', '2', '2016-09-17 15:13:48', '2016-09-17 09:43:48', 'Easy HotSpot is a very simple and easy to use WiFi Hotspot user management utility by Team Zetozone.\r\n\r\nIt can be used with a Mikrotik Hardware Router or a PC installed with Mikrotik RouterOS for managing WiFi hotspots.  It is suitable for hotspots of any size and capacity like small internet caffes to Hotels and Resorts and Educational institutions like Universities, or Giant corporate houses employing 1000\'s of simultaneous users in each site.\r\n\r\nWhy this Utility?\r\n\r\nEventhough the interface provided by mikrotik is very powerful, is not suitable for an ordinary user manager performing only the very basic activities like managing the guest users and profiles with very little effort and in an easily manageable way.  Here comes the Easy HotSpot as an assistant to serve.\r\n\r\nMajor Features:\r\n\r\nAdding Single Guest User Accounts\r\n\r\nAdding Multiple Guest User Accounts as a single lot\r\n\r\nListing Active Users\r\n\r\nListing inactive Users\r\n\r\nRemove Selected/All User Accounts\r\n\r\nRemove all validity expired User Accounts\r\n\r\nServer Log of Recent Activities\r\n\r\nRemoval of uninitiated guest accounts.  Accounts created earlier but no one has started using it yet.\r\n\r\nVoucher Management and Printing.  Different Voucher Printing options are available suiting needs of all.\r\n\r\nManagement of System user Accounts who are in charge of managing the guest user accounts with this utility. 3 levels of System users are there from the Super power Admin to Unit heads and normal users. There is no limit on the number of system users of any level.\r\n\r\nHotspot User Profiles Management:  Creation of User profiles to changing options like Session Timeout,  MAC Cookie Timeout, Keepalive Timeout, Download and Upload Speed Limits, Number of simultaneous user allowed per user account etc.\r\n\r\n ', 'Easy HotSpot User Manager', '', 'inherit', 'closed', 'closed', '', '118-revision-v1', '', '', '2016-09-17 15:13:48', '2016-09-17 09:43:48', '', '118', 'http://hotspot.helloperiyar.com/118-revision-v1/', '0', 'revision', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('122', '2', '2016-09-17 15:20:56', '2016-09-17 09:50:56', 'Easy HotSpot is a very simple and easy to use WiFi Hotspot user management utility by Team Zetozone.\r\n\r\nIt can be used with a Mikrotik Hardware Router or a PC installed with Mikrotik RouterOS for managing WiFi hotspots.  It is suitable for hotspots of any size and capacity like small internet caffes to Hotels and Resorts and Educational institutions like Universities, or Giant corporate houses employing 1000\'s of simultaneous users in each site.\r\n\r\nWhy this Utility?\r\n\r\nEventhough the interface provided by mikrotik is very powerful, is not suitable for an ordinary user manager performing only the very basic activities like managing the guest users and profiles with very little effort and in an easily manageable way.  Here comes the Easy HotSpot as an assistant to serve.\r\n\r\nMajor Features:\r\n\r\nAdding Single Guest User Accounts\r\n\r\nAdding Multiple Guest User Accounts as a single lot\r\n\r\nListing Active Users\r\n\r\nListing inactive Users\r\n\r\nRemove Selected/All User Accounts\r\n\r\nRemove all validity expired User Accounts\r\n\r\nServer Log of Recent Activities\r\n\r\nRemoval of uninitiated guest accounts.  Accounts created earlier but no one has started using it yet.\r\n\r\nVoucher Management and Printing.  Different Voucher Printing options are available suiting needs of all.\r\n\r\nManagement of System user Accounts who are in charge of managing the guest user accounts with this utility. 3 levels of System users are there from the Super power Admin to Unit heads and normal users. There is no limit on the number of system users of any level.\r\n\r\nHotspot User Profiles Management:  Creation of User profiles to changing options like Session Timeout, MAC Cookie Timeout, Keepalive Timeout, Download and Upload Speed Limits, Number of simultaneous user logins allowed per user account etc.\r\n\r\n ', 'Easy HotSpot User Manager', '', 'inherit', 'closed', 'closed', '', '118-revision-v1', '', '', '2016-09-17 15:20:56', '2016-09-17 09:50:56', '', '118', 'http://hotspot.helloperiyar.com/118-revision-v1/', '0', 'revision', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('123', '2', '2016-09-17 15:22:42', '2016-09-17 09:52:42', 'Easy HotSpot is a very simple and easy to use WiFi Hotspot user management utility by Team Zetozone.\r\n\r\nIt can be used with a Mikrotik Hardware Router or a PC installed with Mikrotik RouterOS for managing WiFi hotspots.  It is suitable for hotspots of any size and capacity like small internet caffes to Hotels and Resorts and Educational institutions like Universities, or Giant corporate houses employing 1000\'s of simultaneous users in each site.\r\n\r\n
\r\n\r\nWhy this Utility?\r\n\r\nEventhough the interface provided by mikrotik is very powerful, is not suitable for an ordinary user manager performing only the very basic activities like managing the guest users and profiles with very little effort and in an easily manageable way.  Here comes the Easy HotSpot as an assistant to serve.\r\n\r\n
\r\n\r\nMajor Features:\r\n\r\nAdding Single Guest User Accounts\r\n\r\nAdding Multiple Guest User Accounts as a single lot\r\n\r\nListing Active Users\r\n\r\nListing inactive Users\r\n\r\nRemove Selected/All User Accounts\r\n\r\nRemove all validity expired User Accounts\r\n\r\nServer Log of Recent Activities\r\n\r\nRemoval of uninitiated guest accounts.  Accounts created earlier but no one has started using it yet.\r\n\r\nVoucher Management and Printing.  Different Voucher Printing options are available suiting needs of all.\r\n\r\nManagement of System user Accounts who are in charge of managing the guest user accounts with this utility. 3 levels of System users are there from the Super power Admin to Unit heads and normal users. There is no limit on the number of system users of any level.\r\n\r\nHotspot User Profiles Management:  Creation of User profiles to changing options like Session Timeout, MAC Cookie Timeout, Keepalive Timeout, Download and Upload Speed Limits, Number of simultaneous user logins allowed per user account etc.\r\n\r\n
\r\n\r\n ', 'Easy HotSpot User Manager', '', 'inherit', 'closed', 'closed', '', '118-revision-v1', '', '', '2016-09-17 15:22:42', '2016-09-17 09:52:42', '', '118', 'http://hotspot.helloperiyar.com/118-revision-v1/', '0', 'revision', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('124', '2', '2016-09-17 19:00:53', '2016-09-17 13:30:53', 'Creation of a single guest user account done here\r\n\r\nGive Username, Password, Time limit in days, Maximum data usage allowed, Bandwidth profile (Download/Upload rate limit Profile)\r\n\r\nClick Issue to create User Account or Back Button to cancel the operation.\r\n\r\n ', 'Single User Creation', '', 'publish', 'closed', 'closed', '', 'single-user-creation', '', '', '2016-09-17 19:23:18', '2016-09-17 13:53:18', '', '0', 'http://hotspot.helloperiyar.com/?p=124', '0', 'post', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('125', '2', '2016-09-17 15:40:53', '2016-09-17 10:10:53', 'Creation of a single guest user account done here\r\n\r\nGive Username, Password, Time limit in days, Maximum data usage allowed, Bandwidth profile (Download/Upload rate limit Profile)\r\n\r\nClick Issue to create User Account or Back Button to cancel the operation.\r\n\r\nIf clicked Issue button, creates the guest user account with the given specification and pops-up a preview window before printing.\r\n\r\nNow its possible to print the Guest User voucher', 'Single User Creation', '', 'inherit', 'closed', 'closed', '', '124-revision-v1', '', '', '2016-09-17 15:40:53', '2016-09-17 10:10:53', '', '124', 'http://hotspot.helloperiyar.com/124-revision-v1/', '0', 'revision', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('126', '2', '2016-09-17 18:59:18', '2016-09-17 13:29:18', 'Printing of single guest user account voucher\r\n\r\nIf clicked Issue button in the Add Single User menu option, creates the guest user account with the given specification and pops-up a preview window for printing.\r\n\r\nNow its possible to print the Guest User voucher by clicking the Print button', 'Single User Creation - Voucher printing', '', 'publish', 'closed', 'closed', '', 'single-user-creation-voucher-printing', '', '', '2016-09-17 19:23:40', '2016-09-17 13:53:40', '', '0', 'http://hotspot.helloperiyar.com/?p=126', '0', 'post', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('127', '2', '2016-09-17 15:48:18', '2016-09-17 10:18:18', 'Printing of single guest user account voucher\r\n\r\nIf clicked Issue button in the Add Single User menu option, creates the guest user account with the given specification and pops-up a preview window for printing.\r\n\r\nNow its possible to print the Guest User voucher by clicking the Print button', 'Single User Creation - Voucher printing', '', 'inherit', 'closed', 'closed', '', '126-revision-v1', '', '', '2016-09-17 15:48:18', '2016-09-17 10:18:18', '', '126', 'http://hotspot.helloperiyar.com/126-revision-v1/', '0', 'revision', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('128', '2', '2016-09-17 15:56:44', '2016-09-17 10:26:44', 'Creation of a single guest user account done here\r\n\r\nGive Username, Password, Time limit in days, Maximum data usage allowed, Bandwidth profile (Download/Upload rate limit Profile)\r\n\r\nClick Issue to create User Account or Back Button to cancel the operation.\r\n\r\n ', 'Single User Creation', '', 'inherit', 'closed', 'closed', '', '124-revision-v1', '', '', '2016-09-17 15:56:44', '2016-09-17 10:26:44', '', '124', 'http://hotspot.helloperiyar.com/124-revision-v1/', '0', 'revision', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('129', '2', '2016-09-17 18:58:16', '2016-09-17 13:28:16', 'Creation of Multiple guest user accounts done here\r\n\r\nGive the required number of Guest user accounts to create, Username prefix if any,  Password length (4 to 10 characters), Time limit in days, Maximum data usage allowed, Bandwidth profile (Download/Upload rate limit Profile) and select the option whether we need same username and password or different username and password.\r\n\r\nClick Issue to create the required number of Guest User Accounts or Back Button to cancel the operation.', 'Creation of Multiple guest user accounts', '', 'publish', 'closed', 'closed', '', 'creation-of-multiple-guest-user-accounts', '', '', '2016-09-17 19:04:23', '2016-09-17 13:34:23', '', '0', 'http://hotspot.helloperiyar.com/?p=129', '0', 'post', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('130', '2', '2016-09-17 16:03:16', '2016-09-17 10:33:16', 'Creation of Multiple guest user accounts done here\r\n\r\nGive the required number of Guest user accounts to create, Username prefix if any,  Password length (4 to 10 characters), Time limit in days, Maximum data usage allowed, Bandwidth profile (Download/Upload rate limit Profile) and select the option whether we need same username and password or different username and password.\r\n\r\nClick Issue to create the required number of Guest User Accounts or Back Button to cancel the operation.', 'Creation of Multiple guest user accounts', '', 'inherit', 'closed', 'closed', '', '129-revision-v1', '', '', '2016-09-17 16:03:16', '2016-09-17 10:33:16', '', '129', 'http://hotspot.helloperiyar.com/129-revision-v1/', '0', 'revision', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('131', '2', '2016-09-17 18:56:40', '2016-09-17 13:26:40', 'Creation of Multiple guest user accounts Success\r\n\r\nAfter clicking the Issue Button in the Add Multiple User creation option, a popup window pops-up on successful creation showing that  xx number of guest user accounts created successfully.\r\n\r\nFor printing the multiple guest accounts vouchers, use the Voucher printing menu option in the main menu.\r\n\r\nLast single user accounts created also can be printed using the  Voucher printing menu option, but before any other guest user accounts are generated.', 'Creation of Multiple guest user accounts Success', '', 'publish', 'closed', 'closed', '', 'creation-of-multiple-guest-user-accounts-success', '', '', '2016-09-17 19:07:42', '2016-09-17 13:37:42', '', '0', 'http://hotspot.helloperiyar.com/?p=131', '0', 'post', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('132', '2', '2016-09-17 16:11:40', '2016-09-17 10:41:40', 'Creation of Multiple guest user accounts done here\r\n\r\nAfter clicking the Issue Button in the Add Multiple User creation option, a popup window pops-up on successful creation showing that  xx number of guest user accounts created successfully.\r\n\r\nFor printing the multiple guest accounts vouchers, use the Voucher printing menu option in the main menu.\r\n\r\nLast single user accounts created also can be printed using the  Voucher printing menu option, but before any other guest user accounts are generated.', 'Creation of Multiple guest user accounts Success', '', 'inherit', 'closed', 'closed', '', '131-revision-v1', '', '', '2016-09-17 16:11:40', '2016-09-17 10:41:40', '', '131', 'http://hotspot.helloperiyar.com/131-revision-v1/', '0', 'revision', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('133', '2', '2016-09-17 16:12:40', '2016-09-17 10:42:40', 'Creation of Multiple guest user accounts Success\r\n\r\nAfter clicking the Issue Button in the Add Multiple User creation option, a popup window pops-up on successful creation showing that  xx number of guest user accounts created successfully.\r\n\r\nFor printing the multiple guest accounts vouchers, use the Voucher printing menu option in the main menu.\r\n\r\nLast single user accounts created also can be printed using the  Voucher printing menu option, but before any other guest user accounts are generated.', 'Creation of Multiple guest user accounts Success', '', 'inherit', 'closed', 'closed', '', '131-revision-v1', '', '', '2016-09-17 16:12:40', '2016-09-17 10:42:40', '', '131', 'http://hotspot.helloperiyar.com/131-revision-v1/', '0', 'revision', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('134', '2', '2016-09-17 18:55:36', '2016-09-17 13:25:36', 'Listing of Inactive Guest User Accounts\r\n\r\nListing of Inactive Guest User Accounts, accounts those are not active at the moment are listed here using the List Inactive users menu option.', 'Listing of Inactive Guest User Accounts', '', 'publish', 'closed', 'closed', '', 'listing-of-inactive-guest-user-accounts', '', '', '2016-09-17 19:25:29', '2016-09-17 13:55:29', '', '0', 'http://hotspot.helloperiyar.com/?p=134', '0', 'post', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('135', '2', '2016-09-17 16:15:36', '2016-09-17 10:45:36', 'Listing of Inactive Guest User Accounts\r\n\r\nListing of Inactive Guest User Accounts, accounts those are not active at the moment are listed here using the List Inactive users menu option.', 'Listing of Inactive Guest User Accounts', '', 'inherit', 'closed', 'closed', '', '134-revision-v1', '', '', '2016-09-17 16:15:36', '2016-09-17 10:45:36', '', '134', 'http://hotspot.helloperiyar.com/134-revision-v1/', '0', 'revision', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('136', '2', '2016-09-17 18:54:02', '2016-09-17 13:24:02', 'Listing of active Guest User Accounts\r\n\r\nListing of active Guest User Accounts, accounts those are active at the moment are listed here using the List active users menu option.', 'Listing of active Guest User Accounts', '', 'publish', 'closed', 'closed', '', 'listing-of-active-guest-user-accounts', '', '', '2016-09-17 19:26:15', '2016-09-17 13:56:15', '', '0', 'http://hotspot.helloperiyar.com/?p=136', '0', 'post', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('137', '2', '2016-09-17 16:17:02', '2016-09-17 10:47:02', 'Listing of active Guest User Accounts\r\n\r\nListing of active Guest User Accounts, accounts those are active at the moment are listed here using the List active users menu option.', 'Listing of active Guest User Accounts', '', 'inherit', 'closed', 'closed', '', '136-revision-v1', '', '', '2016-09-17 16:17:02', '2016-09-17 10:47:02', '', '136', 'http://hotspot.helloperiyar.com/136-revision-v1/', '0', 'revision', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('138', '2', '2016-09-17 18:45:21', '2016-09-17 13:15:21', 'Removal of Selected Guest User Accounts done here.\r\n\r\nSelect Remove Selected Users menu option for removing guest user accounts selectively.\r\n\r\nBy choosing this option we are presented with a list of Inactive user accounts(at the moment), which can be removed.\r\n\r\nWe may either use the Remove button against each row to remove them individually or tick the selection boxes in each row and finally clicking the Remove Selected Button at the bottom of the window to remove the selected accounts all along at once.\r\n\r\nPress back button to cancel/go back to main menu.', 'Removal of Selected Guest User Accounts', '', 'publish', 'closed', 'closed', '', 'removal-of-selected-guest-user-accounts', '', '', '2016-09-17 19:25:57', '2016-09-17 13:55:57', '', '0', 'http://hotspot.helloperiyar.com/?p=138', '0', 'post', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('139', '2', '2016-09-17 16:28:21', '2016-09-17 10:58:21', 'Removal of Selected Guest User Accounts done here.\r\n\r\nSelect Remove Selected Users menu option for removing guest user accounts selectively.\r\n\r\nBy choosing this option we are presented with a list of Inactive user accounts(at the moment), which can be removed.\r\n\r\nWe may either use the Remove button against each row to remove them individually or tick the selection boxes in each row and finally clicking the Remove Selected Button at the bottom of the window to remove the selected accounts all along at once.\r\n\r\nPress back button to cancel/go back to main menu.', 'Removal of Selected Guest User Accounts', '', 'inherit', 'closed', 'closed', '', '138-revision-v1', '', '', '2016-09-17 16:28:21', '2016-09-17 10:58:21', '', '138', 'http://hotspot.helloperiyar.com/138-revision-v1/', '0', 'revision', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('140', '2', '2016-09-17 18:44:02', '2016-09-17 13:14:02', 'Removal of Validity expired Guest User Accounts done here\r\n\r\nClick Remove all Expired menu option to reach this list.\r\n\r\nAll user accounts having expired their validity either by using the full quota of data allowed or time limit allowed exceeded are listed in this option can be removed at once by clicking Remove All button.\r\n\r\nThis is a kind of cleanup option, which removes all validity expired guest user accounts irrespective of the age of accounts.\r\n\r\nPress back button to go back to main menu.', 'Removal of Validity Expired Guest User Accounts', '', 'publish', 'closed', 'closed', '', 'removal-of-validity-expired-guest-user-accounts', '', '', '2016-09-17 19:27:57', '2016-09-17 13:57:57', '', '0', 'http://hotspot.helloperiyar.com/?p=140', '0', 'post', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('141', '2', '2016-09-17 16:35:02', '2016-09-17 11:05:02', 'Removal of Validity expired Guest User Accounts done here\r\n\r\nClick Remove all Expired menu option to reach this list.\r\n\r\nAll user accounts having expired their validity either by using the full quota of data allowed or time limit allowed exceeded are listed in this option can be removed at once by clicking Remove All button.\r\n\r\nPress back button to go back to main menu.', 'Removal of Validity expired Guest User Accounts', '', 'inherit', 'closed', 'closed', '', '140-revision-v1', '', '', '2016-09-17 16:35:02', '2016-09-17 11:05:02', '', '140', 'http://hotspot.helloperiyar.com/140-revision-v1/', '0', 'revision', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('142', '2', '2016-09-17 16:36:16', '2016-09-17 11:06:16', 'Removal of Validity expired Guest User Accounts done here\n\nClick Remove all Expired menu option to reach this list.\n\nAll user accounts having expired their validity either by using the full quota of data allowed or time limit allowed exceeded are listed in this option can be removed at once by clicking Remove All button.\n\nThis is a kind of cleanup option, which removes all validity\n\nPress back button to go back to main menu.', 'Removal of Validity expired Guest User Accounts', '', 'inherit', 'closed', 'closed', '', '140-autosave-v1', '', '', '2016-09-17 16:36:16', '2016-09-17 11:06:16', '', '140', 'http://hotspot.helloperiyar.com/140-autosave-v1/', '0', 'revision', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('143', '2', '2016-09-17 16:36:49', '2016-09-17 11:06:49', 'Removal of Validity expired Guest User Accounts done here\r\n\r\nClick Remove all Expired menu option to reach this list.\r\n\r\nAll user accounts having expired their validity either by using the full quota of data allowed or time limit allowed exceeded are listed in this option can be removed at once by clicking Remove All button.\r\n\r\nThis is a kind of cleanup option, which removes all validity expired guest user accounts irrespective of the age of accounts.\r\n\r\nPress back button to go back to main menu.', 'Removal of Validity expired Guest User Accounts', '', 'inherit', 'closed', 'closed', '', '140-revision-v1', '', '', '2016-09-17 16:36:49', '2016-09-17 11:06:49', '', '140', 'http://hotspot.helloperiyar.com/140-revision-v1/', '0', 'revision', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('144', '2', '2016-09-17 16:37:13', '2016-09-17 11:07:13', 'Removal of Validity expired Guest User Accounts done here\r\n\r\nClick Remove all Expired menu option to reach this list.\r\n\r\nAll user accounts having expired their validity either by using the full quota of data allowed or time limit allowed exceeded are listed in this option can be removed at once by clicking Remove All button.\r\n\r\nThis is a kind of cleanup option, which removes all validity expired guest user accounts irrespective of the age of accounts.\r\n\r\nPress back button to go back to main menu.', 'Removal of Validity Expired Guest User Accounts', '', 'inherit', 'closed', 'closed', '', '140-revision-v1', '', '', '2016-09-17 16:37:13', '2016-09-17 11:07:13', '', '140', 'http://hotspot.helloperiyar.com/140-revision-v1/', '0', 'revision', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('145', '2', '2016-09-17 18:14:40', '2016-09-17 12:44:40', 'Removal of Uninitiated Guest User Accounts done here\r\n\r\nClick Remove all Uninitiated menu option to reach this list.\r\n\r\nAll user accounts having not yet initiated any activities from creation are listed in this option can be removed at once by clicking Remove button.\r\n\r\nThis is a kind of cleanup option, which removes all uninitiated guest user accounts irrespective of the age of accounts.\r\n\r\nPress back button to go back to main menu.', 'Removal of Uninitiated Guest User Accounts', '', 'publish', 'closed', 'closed', '', 'removal-of-uninitiated-guest-user-accounts', '', '', '2016-09-17 19:57:32', '2016-09-17 14:27:32', '', '0', 'http://hotspot.helloperiyar.com/?p=145', '0', 'post', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('146', '2', '2016-09-17 16:41:40', '2016-09-17 11:11:40', 'Removal of Uninitiated Guest User Accounts done here\r\n\r\nClick Remove all Uninitiated menu option to reach this list.\r\n\r\nAll user accounts having not yet initiated any activities from creation are listed in this option can be removed at once by clicking Remove button.\r\n\r\nThis is a kind of cleanup option, which removes all uninitiated guest user accounts irrespective of the age of accounts.\r\n\r\nPress back button to go back to main menu.', 'Removal of Uninitiated Guest User Accounts', '', 'inherit', 'closed', 'closed', '', '145-revision-v1', '', '', '2016-09-17 16:41:40', '2016-09-17 11:11:40', '', '145', 'http://hotspot.helloperiyar.com/145-revision-v1/', '0', 'revision', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('147', '2', '2016-09-17 18:43:38', '2016-09-17 13:13:38', 'Server Log of recent Activities Listed here\r\n\r\nLast 1000 activities in the server listed here for verification/cross checking purpose.\r\n\r\nPress Server Log in the menu option to reach here.', 'Server Log of recent Activities', '', 'publish', 'closed', 'closed', '', 'server-log-of-recent-activities', '', '', '2016-09-17 19:28:22', '2016-09-17 13:58:22', '', '0', 'http://hotspot.helloperiyar.com/?p=147', '0', 'post', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('148', '2', '2016-09-17 16:48:38', '2016-09-17 11:18:38', 'Server Log of recent Activities Listed here\r\n\r\nLast 1000 activities in the server listed here for verification/cross checking purpose.\r\n\r\nPress Server Log in the menu option to reach here.', 'Server Log of recent Activities', '', 'inherit', 'closed', 'closed', '', '147-revision-v1', '', '', '2016-09-17 16:48:38', '2016-09-17 11:18:38', '', '147', 'http://hotspot.helloperiyar.com/147-revision-v1/', '0', 'revision', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('149', '2', '2016-09-17 18:40:23', '2016-09-17 13:10:23', 'Guest User Voucher Printing options are available from the Voucher Printing menu option.\r\n\r\nThe LAST voucher/vouchers generated through the Add Single User/Add Multiple Users option can be printed using this option.\r\n\r\nThere are about 6 different voucher format choices available in the menu, which has to be clicked to get the printout of the voucher/List of Guest accounts in the selected format.\r\n
    \r\n
  1. Single account per row list (Plain list  for printing as a list)
  2. \r\n
  3. Two accounts per row list (Plain list  for printing as a list)
  4. \r\n
  5. Three accounts per row list(Plain list  for printing as a list, but remember this should be used for SAME PASSWORD/USERNAME accounts only)
  6. \r\n
  7. Single account in 2 rows(Plain list  for printing as a list)
  8. \r\n
  9. Single Voucher as a formatted slip/ID card like format(Adjust the paper size while printing to get a neat output, normally Envelope type paper sizes are selected with this option)
  10. \r\n
  11. Three accounts per row and as formatted slip/ID card like format(Adjust the paper size while printing to adjust the size of the output slip, normally A4/like paper sizes are selected with this option)
  12. \r\n
\r\nClick Main menu option to go back to Main menu and Reset Option to Refresh the Voucher Printing Page.', 'Guest User Voucher Printing', '', 'publish', 'closed', 'closed', '', 'guest-user-voucher-printing', '', '', '2016-09-17 19:28:41', '2016-09-17 13:58:41', '', '0', 'http://hotspot.helloperiyar.com/?p=149', '0', 'post', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('150', '2', '2016-09-17 17:06:23', '2016-09-17 11:36:23', 'Guest User Voucher Printing options are available from the Voucher Printing menu option.\r\n\r\nThe LAST voucher/vouchers generated through the Add Single User/Add Multiple Users option can be printed using this option.\r\n\r\nThere are about 6 different voucher format choices available in the menu, which has to be clicked to get the printout of the voucher/List of Guest accounts in the selected format.\r\n
    \r\n
  1. Single account per row list (Plain list  for printing as a list)
  2. \r\n
  3. Two accounts per row list (Plain list  for printing as a list)
  4. \r\n
  5. Three accounts per row list(Plain list  for printing as a list, but remember this should be used for SAME PASSWORD/USERNAME accounts only)
  6. \r\n
  7. Single account in 2 rows(Plain list  for printing as a list)
  8. \r\n
  9. Single Voucher as a formatted slip/ID card like format(Adjust the paper size while printing to get a neat output, normally Envelope type paper sizes are selected with this option)
  10. \r\n
  11. Three accounts per row and as formatted slip/ID card like format(Adjust the paper size while printing to adjust the size of the output slip, normally A4/like paper sizes are selected with this option)
  12. \r\n
\r\nClick Main menu option to go back to Main menu and Reset Option to Refresh the Voucher Printing Page.', 'Guest User Voucher Printing', '', 'inherit', 'closed', 'closed', '', '149-revision-v1', '', '', '2016-09-17 17:06:23', '2016-09-17 11:36:23', '', '149', 'http://hotspot.helloperiyar.com/149-revision-v1/', '0', 'revision', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('151', '2', '2016-09-17 18:38:48', '2016-09-17 13:08:48', 'Voucher printing - Single account per row list\r\n\r\nOther Options are:\r\n
    \r\n
  1. Two accounts per row list (Plain list  for printing as a list)
  2. \r\n
  3. Three accounts per row list(Plain list  for printing as a list, but remember this should be used for SAME PASSWORD/USERNAME accounts only)
  4. \r\n
  5. Single account in 2 rows(Plain list  for printing as a list)
  6. \r\n
  7. Single Voucher as a formatted slip/ID card like format(Adjust the paper size while printing to get a neat output, normally Envelope type paper sizes are selected with this option)
  8. \r\n
  9. Three accounts per row and as formatted slip/ID card like format(Adjust the paper size while printing to adjust the size of the output slip, normally A4/like paper sizes are selected with this option)
  10. \r\n
', 'Voucher printing - Single account per row list', '', 'publish', 'closed', 'closed', '', 'voucher-printing-single-account-per-row-list', '', '', '2016-09-17 19:50:16', '2016-09-17 14:20:16', '', '0', 'http://hotspot.helloperiyar.com/?p=151', '0', 'post', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('152', '2', '2016-09-17 17:09:48', '2016-09-17 11:39:48', 'Voucher printing - Single account per row list\r\n\r\nOther Options are:\r\n
    \r\n
  1. Two accounts per row list (Plain list  for printing as a list)
  2. \r\n
  3. Three accounts per row list(Plain list  for printing as a list, but remember this should be used for SAME PASSWORD/USERNAME accounts only)
  4. \r\n
  5. Single account in 2 rows(Plain list  for printing as a list)
  6. \r\n
  7. Single Voucher as a formatted slip/ID card like format(Adjust the paper size while printing to get a neat output, normally Envelope type paper sizes are selected with this option)
  8. \r\n
  9. Three accounts per row and as formatted slip/ID card like format(Adjust the paper size while printing to adjust the size of the output slip, normally A4/like paper sizes are selected with this option)
  10. \r\n
', 'Voucher printing - Single account per row list', '', 'inherit', 'closed', 'closed', '', '151-revision-v1', '', '', '2016-09-17 17:09:48', '2016-09-17 11:39:48', '', '151', 'http://hotspot.helloperiyar.com/151-revision-v1/', '0', 'revision', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('153', '2', '2016-09-17 18:36:15', '2016-09-17 13:06:15', 'Voucher printing - Two accounts per row list\r\n\r\nOther Options are:\r\n
    \r\n
  1. Single account per row list (Plain list  for printing as a list)
  2. \r\n
  3. Three accounts per row list(Plain list  for printing as a list, but remember this should be used for SAME PASSWORD/USERNAME accounts only)
  4. \r\n
  5. Single account in 2 rows(Plain list  for printing as a list)
  6. \r\n
  7. Single Voucher as a formatted slip/ID card like format(Adjust the paper size while printing to get a neat output, normally Envelope type paper sizes are selected with this option)
  8. \r\n
  9. Three accounts per row and as formatted slip/ID card like format(Adjust the paper size while printing to adjust the size of the output slip, normally A4/like paper sizes are selected with this option)
  10. \r\n
', 'Voucher printing - Two accounts per row list', '', 'publish', 'closed', 'closed', '', 'voucher-printing-two-accounts-per-row-list', '', '', '2016-09-17 19:50:27', '2016-09-17 14:20:27', '', '0', 'http://hotspot.helloperiyar.com/?p=153', '0', 'post', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('154', '2', '2016-09-17 17:12:15', '2016-09-17 11:42:15', 'Voucher printing - Two accounts per row list\r\n\r\nOther Options are:\r\n
    \r\n
  1. Single account per row list (Plain list  for printing as a list)
  2. \r\n
  3. Three accounts per row list(Plain list  for printing as a list, but remember this should be used for SAME PASSWORD/USERNAME accounts only)
  4. \r\n
  5. Single account in 2 rows(Plain list  for printing as a list)
  6. \r\n
  7. Single Voucher as a formatted slip/ID card like format(Adjust the paper size while printing to get a neat output, normally Envelope type paper sizes are selected with this option)
  8. \r\n
  9. Three accounts per row and as formatted slip/ID card like format(Adjust the paper size while printing to adjust the size of the output slip, normally A4/like paper sizes are selected with this option)
  10. \r\n
', 'Voucher printing - Two accounts per row list', '', 'inherit', 'closed', 'closed', '', '153-revision-v1', '', '', '2016-09-17 17:12:15', '2016-09-17 11:42:15', '', '153', 'http://hotspot.helloperiyar.com/153-revision-v1/', '0', 'revision', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('155', '2', '2016-09-17 18:34:18', '2016-09-17 13:04:18', 'Voucher printing - Three accounts per row list\r\n\r\nThis is for printing as a compressed list to save space, but remember this should be used for SAME PASSWORD/USERNAME accounts only\r\n\r\nOther Options are:\r\n
    \r\n
  1. Single account per row list (Plain list  for printing as a list)
  2. \r\n
  3. Two accounts per row list (Plain list  for printing as a list)
  4. \r\n
  5. Single account in 2 rows(Plain list  for printing as a list)
  6. \r\n
  7. Single Voucher as a formatted slip/ID card like format(Adjust the paper size while printing to get a neat output, normally Envelope type paper sizes are selected with this option)
  8. \r\n
  9. Three accounts per row and as formatted slip/ID card like format(Adjust the paper size while printing to adjust the size of the output slip, normally A4/like paper sizes are selected with this option)
  10. \r\n
', 'Voucher printing - Three accounts per row list', '', 'publish', 'closed', 'closed', '', 'voucher-printing-three-accounts-per-row-list', '', '', '2016-09-17 19:50:41', '2016-09-17 14:20:41', '', '0', 'http://hotspot.helloperiyar.com/?p=155', '0', 'post', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('156', '2', '2016-09-17 17:16:18', '2016-09-17 11:46:18', 'Voucher printing - Three accounts per row list\r\n\r\nThis is for printing as a compressed list to save space, but remember this should be used for SAME PASSWORD/USERNAME accounts only\r\n\r\nOther Options are:\r\n
    \r\n
  1. Single account per row list (Plain list  for printing as a list)
  2. \r\n
  3. Two accounts per row list(Plain list   for printing as a list)
  4. \r\n
  5. Single account in 2 rows(Plain list  for printing as a list)
  6. \r\n
  7. Single Voucher as a formatted slip/ID card like format(Adjust the paper size while printing to get a neat output, normally Envelope type paper sizes are selected with this option)
  8. \r\n
  9. Three accounts per row and as formatted slip/ID card like format(Adjust the paper size while printing to adjust the size of the output slip, normally A4/like paper sizes are selected with this option)
  10. \r\n
', 'Voucher printing - Three accounts per row list', '', 'inherit', 'closed', 'closed', '', '155-revision-v1', '', '', '2016-09-17 17:16:18', '2016-09-17 11:46:18', '', '155', 'http://hotspot.helloperiyar.com/155-revision-v1/', '0', 'revision', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('157', '2', '2016-09-17 17:18:34', '2016-09-17 11:48:34', 'Voucher printing - Three accounts per row list\r\n\r\nThis is for printing as a compressed list to save space, but remember this should be used for SAME PASSWORD/USERNAME accounts only\r\n\r\nOther Options are:\r\n
    \r\n
  1. Single account per row list (Plain list  for printing as a list)
  2. \r\n
  3. Two accounts per row list (Plain list  for printing as a list)
  4. \r\n
  5. Single account in 2 rows(Plain list  for printing as a list)
  6. \r\n
  7. Single Voucher as a formatted slip/ID card like format(Adjust the paper size while printing to get a neat output, normally Envelope type paper sizes are selected with this option)
  8. \r\n
  9. Three accounts per row and as formatted slip/ID card like format(Adjust the paper size while printing to adjust the size of the output slip, normally A4/like paper sizes are selected with this option)
  10. \r\n
', 'Voucher printing - Three accounts per row list', '', 'inherit', 'closed', 'closed', '', '155-revision-v1', '', '', '2016-09-17 17:18:34', '2016-09-17 11:48:34', '', '155', 'http://hotspot.helloperiyar.com/155-revision-v1/', '0', 'revision', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('158', '2', '2016-09-17 18:32:57', '2016-09-17 13:02:57', 'Voucher Printing - Single account in 2 rows\r\n\r\nOther options are\r\n
    \r\n
  1. Single account per row list (Plain list  for printing as a list)
  2. \r\n
  3. Two accounts per row list (Plain list  for printing as a list)
  4. \r\n
  5. Three accounts per row list(Plain list  for printing as a list, but remember this should be used for SAME PASSWORD/USERNAME accounts only)
  6. \r\n
  7. Single Voucher as a formatted slip/ID card like format(Adjust the paper size while printing to get a neat output, normally Envelope type paper sizes are selected with this option)
  8. \r\n
  9. Three accounts per row and as formatted slip/ID card like format(Adjust the paper size while printing to adjust the size of the output slip, normally A4/like paper sizes are selected with this option)
  10. \r\n
', 'Voucher Printing - Single account in 2 rows', '', 'publish', 'closed', 'closed', '', 'voucher-printing-single-account-in-2-rows', '', '', '2016-09-17 19:52:17', '2016-09-17 14:22:17', '', '0', 'http://hotspot.helloperiyar.com/?p=158', '0', 'post', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('159', '2', '2016-09-17 17:20:57', '2016-09-17 11:50:57', 'Voucher Printing - Single account in 2 rows\r\n\r\nOther options are\r\n
    \r\n
  1. Single account per row list (Plain list  for printing as a list)
  2. \r\n
  3. Two accounts per row list (Plain list  for printing as a list)
  4. \r\n
  5. Three accounts per row list(Plain list  for printing as a list, but remember this should be used for SAME PASSWORD/USERNAME accounts only)
  6. \r\n
  7. Single Voucher as a formatted slip/ID card like format(Adjust the paper size while printing to get a neat output, normally Envelope type paper sizes are selected with this option)
  8. \r\n
  9. Three accounts per row and as formatted slip/ID card like format(Adjust the paper size while printing to adjust the size of the output slip, normally A4/like paper sizes are selected with this option)
  10. \r\n
', 'Voucher Printing - Single account in 2 rows', '', 'inherit', 'closed', 'closed', '', '158-revision-v1', '', '', '2016-09-17 17:20:57', '2016-09-17 11:50:57', '', '158', 'http://hotspot.helloperiyar.com/158-revision-v1/', '0', 'revision', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('160', '2', '2016-09-17 18:30:25', '2016-09-17 13:00:25', '\"shot14ea\"Voucher Printing - Single Voucher as a formatted slip/ID card like format\r\n\r\nAdjust the paper size while printing to get a neat output, normally Envelope type paper sizes are selected with this option\r\n
    \r\n
  1. Single account per row list (Plain list  for printing as a list)
  2. \r\n
  3. Two accounts per row list (Plain list  for printing as a list)
  4. \r\n
  5. Three accounts per row list(Plain list  for printing as a list, but remember this should be used for SAME PASSWORD/USERNAME accounts only)
  6. \r\n
  7. Single account in 2 rows(Plain list  for printing as a list)
  8. \r\n
  9. Three accounts per row and as formatted slip/ID card like format(Adjust the paper size while printing to adjust the size of the output slip, normally A4/like paper sizes are selected with this option)
  10. \r\n
', 'Voucher Printing - Single Voucher as a formatted slip/ID card like format', '', 'publish', 'closed', 'closed', '', 'voucher-printing-single-voucher-as-a-formatted-slipid-card-like-format', '', '', '2016-09-17 20:04:43', '2016-09-17 14:34:43', '', '0', 'http://hotspot.helloperiyar.com/?p=160', '0', 'post', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('161', '2', '2016-09-17 17:24:25', '2016-09-17 11:54:25', 'V\"shot14fa\"oucher Printing - Single Voucher as a formatted slip/ID card like format\r\n\r\nAdjust the paper size while printing to get a neat output, normally Envelope type paper sizes are selected with this option\r\n
    \r\n
  1. Single account per row list (Plain list  for printing as a list)
  2. \r\n
  3. Two accounts per row list (Plain list  for printing as a list)
  4. \r\n
  5. Three accounts per row list(Plain list  for printing as a list, but remember this should be used for SAME PASSWORD/USERNAME accounts only)
  6. \r\n
  7. Single account in 2 rows(Plain list  for printing as a list)
  8. \r\n
  9. Three accounts per row and as formatted slip/ID card like format(Adjust the paper size while printing to adjust the size of the output slip, normally A4/like paper sizes are selected with this option)
  10. \r\n
', 'Voucher Printing - Single Voucher as a formatted slip/ID card like format', '', 'inherit', 'closed', 'closed', '', '160-revision-v1', '', '', '2016-09-17 17:24:25', '2016-09-17 11:54:25', '', '160', 'http://hotspot.helloperiyar.com/160-revision-v1/', '0', 'revision', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('162', '2', '2016-09-17 18:27:07', '2016-09-17 12:57:07', '\"shot14fa\"Voucher printing - Three accounts per row and as formatted slip/ID card like format\r\n\r\nAdjust the paper size while printing to adjust the size of the output slip, normally A4/like paper sizes are selected with this option\r\n\r\nOther Printing options are:\r\n
    \r\n
  1. Single account per row list (Plain list  for printing as a list)
  2. \r\n
  3. Two accounts per row list (Plain list  for printing as a list)
  4. \r\n
  5. Three accounts per row list(Plain list  for printing as a list, but remember this should be used for SAME PASSWORD/USERNAME accounts only)
  6. \r\n
  7. Single account in 2 rows(Plain list  for printing as a list)
  8. \r\n
  9. Single Voucher as a formatted slip/ID card like format(Adjust the paper size while printing to get a neat output, normally Envelope type paper sizes are selected with this option)
  10. \r\n
', 'Voucher printing - Three accounts per row and as formatted slip/ID card like format', '', 'publish', 'closed', 'closed', '', 'voucher-printing-three-accounts-per-row-and-as-formatted-slipid-card-like-format', '', '', '2016-09-17 19:52:49', '2016-09-17 14:22:49', '', '0', 'http://hotspot.helloperiyar.com/?p=162', '0', 'post', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('163', '2', '2016-09-17 17:27:07', '2016-09-17 11:57:07', '\"shot14fa\"Voucher printing - Three accounts per row and as formatted slip/ID card like format\r\n\r\nAdjust the paper size while printing to adjust the size of the output slip, normally A4/like paper sizes are selected with this option\r\n\r\nOther Printing options are:\r\n
    \r\n
  1. Single account per row list (Plain list  for printing as a list)
  2. \r\n
  3. Two accounts per row list (Plain list  for printing as a list)
  4. \r\n
  5. Three accounts per row list(Plain list  for printing as a list, but remember this should be used for SAME PASSWORD/USERNAME accounts only)
  6. \r\n
  7. Single account in 2 rows(Plain list  for printing as a list)
  8. \r\n
  9. Single Voucher as a formatted slip/ID card like format(Adjust the paper size while printing to get a neat output, normally Envelope type paper sizes are selected with this option)
  10. \r\n
', 'Voucher printing - Three accounts per row and as formatted slip/ID card like format', '', 'inherit', 'closed', 'closed', '', '162-revision-v1', '', '', '2016-09-17 17:27:07', '2016-09-17 11:57:07', '', '162', 'http://hotspot.helloperiyar.com/162-revision-v1/', '0', 'revision', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('164', '2', '2016-09-17 18:18:41', '2016-09-17 12:48:41', 'Managing System Users\r\n\r\nWhen clicked the System users menu option, will present a list of all System users available in the system whether active or not.  Active/Inactive users are listed in different colors to easily recognize the System user account status.\r\n\r\nSystem users are the in-house persons authorized to manage the activities of the WiFi Hotspot setup. They only operate this utility and is required to login with their username and password to gain access to this utility.  So it is required to create those system user accounts by the Super user of this setup, the Admin user.  Only Admin user(s) are permitted to manage system user accounts.\r\n\r\nSystem user management is activated by clicking the System Users menu option.\r\n\r\nSystem users can be created, edited and deleted by the admin.  He/she can reset their passwords also.\r\n\r\nW\"shot16\"hen created all system user accounts will be having a default password of \'password\', which can be changed by themselves after logging in and through the System Users menu option.\r\n\r\nThere are 3 levels of System users, viz Admin User, Unit heads and System Users.\r\n\r\nThere is no limit on the number of users in each level.\r\n\r\nAdmin level users only can manage other system user\'s accounts.  He/She can deactivate/Activate any System user on will.', 'Managing System Users', '', 'publish', 'closed', 'closed', '', 'managing-system-users', '', '', '2016-09-17 19:55:29', '2016-09-17 14:25:29', '', '0', 'http://hotspot.helloperiyar.com/?p=164', '0', 'post', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('165', '2', '2016-09-17 17:47:41', '2016-09-17 12:17:41', 'When clicked the System users menu option, will present a list of all System users available in the system whether active or not.  Active/Inactive users are listed in different colors to easily recognize the System user account status.\r\n\r\nSystem users are the in-house persons authorized to manage the activities of the WiFi Hotspot setup. They only operate this utility and is required to login with their username and password to gain access to this utility.  So it is required to create those system user accounts by the Super user of this setup, the Admin user.  Only Admin user(s) are permitted to manage system user accounts.\r\n\r\nSystem user management is activated by clicking the System Users menu option.\r\n\r\nSystem users can be created, edited and deleted by the admin.  He/she can reset their passwords also.\r\n\r\nWhen created all system user accounts will be having a default password of \'password\', which can be changed by themselves after logging in and through the System Users menu option.\r\n\r\nThere are 3 levels of System users, viz Admin User, Unit heads and System Users.\r\n\r\nThere is no limit on the number of users in each level.\r\n\r\nAdmin level users only can manage other system user\'s accounts.  He/She can deactivate/Activate any System user on will.', 'Managing System Users', '', 'inherit', 'closed', 'closed', '', '164-revision-v1', '', '', '2016-09-17 17:47:41', '2016-09-17 12:17:41', '', '164', 'http://hotspot.helloperiyar.com/164-revision-v1/', '0', 'revision', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('166', '2', '2016-09-17 18:16:42', '2016-09-17 12:46:42', 'System user account Management By Admin\r\n\r\nSystem users are the in-house persons authorized to manage the activities of the WiFi Hotspot setup. They only operate this utility and is required to login with their username and password to gain access to this utility.  So it is required to create those system user accounts by the Super user of this setup, the Admin user.  Only Admin user(s) are permitted to manage system user accounts.\r\n\r\nSystem user management is activated by clicking the System Users menu option.\r\n\r\nSystem users can be created, edited and deleted by the admin.  He/she can reset their passwords also.\r\n\r\nWhen created all system user accounts will be having a default password of \'password\', which can be changed by themselves after logging in and through the System Users menu option.\r\n\r\nThere are 3 levels of System users, viz Admin User, Unit heads and System Users.\r\n\r\nThere is no limit on the number of users in each level.\r\n\r\nAdmin level users only can manage other system user\'s accounts.  He/She can deactivate/Activate any System user on will.', 'Managing System User Accounts by Admins', '', 'publish', 'closed', 'closed', '', 'managing-system-user-accounts-by-admins', '', '', '2016-09-17 19:57:11', '2016-09-17 14:27:11', '', '0', 'http://hotspot.helloperiyar.com/?p=166', '0', 'post', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('167', '2', '2016-09-17 17:50:42', '2016-09-17 12:20:42', 'System user account status.\r\n\r\nSystem users are the in-house persons authorized to manage the activities of the WiFi Hotspot setup. They only operate this utility and is required to login with their username and password to gain access to this utility.  So it is required to create those system user accounts by the Super user of this setup, the Admin user.  Only Admin user(s) are permitted to manage system user accounts.\r\n\r\nSystem user management is activated by clicking the System Users menu option.\r\n\r\nSystem users can be created, edited and deleted by the admin.  He/she can reset their passwords also.\r\n\r\nWhen created all system user accounts will be having a default password of \'password\', which can be changed by themselves after logging in and through the System Users menu option.\r\n\r\nThere are 3 levels of System users, viz Admin User, Unit heads and System Users.\r\n\r\nThere is no limit on the number of users in each level.\r\n\r\nAdmin level users only can manage other system user\'s accounts.  He/She can deactivate/Activate any System user on will.', 'Managing System User Accounts by Admins', '', 'inherit', 'closed', 'closed', '', '166-revision-v1', '', '', '2016-09-17 17:50:42', '2016-09-17 12:20:42', '', '166', 'http://hotspot.helloperiyar.com/166-revision-v1/', '0', 'revision', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('168', '2', '2016-09-17 17:51:32', '2016-09-17 12:21:32', 'System user account Management By Admin\r\n\r\nSystem users are the in-house persons authorized to manage the activities of the WiFi Hotspot setup. They only operate this utility and is required to login with their username and password to gain access to this utility.  So it is required to create those system user accounts by the Super user of this setup, the Admin user.  Only Admin user(s) are permitted to manage system user accounts.\r\n\r\nSystem user management is activated by clicking the System Users menu option.\r\n\r\nSystem users can be created, edited and deleted by the admin.  He/she can reset their passwords also.\r\n\r\nWhen created all system user accounts will be having a default password of \'password\', which can be changed by themselves after logging in and through the System Users menu option.\r\n\r\nThere are 3 levels of System users, viz Admin User, Unit heads and System Users.\r\n\r\nThere is no limit on the number of users in each level.\r\n\r\nAdmin level users only can manage other system user\'s accounts.  He/She can deactivate/Activate any System user on will.', 'Managing System User Accounts by Admins', '', 'inherit', 'closed', 'closed', '', '166-revision-v1', '', '', '2016-09-17 17:51:32', '2016-09-17 12:21:32', '', '166', 'http://hotspot.helloperiyar.com/166-revision-v1/', '0', 'revision', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('169', '2', '2016-09-17 17:53:41', '2016-09-17 12:23:41', 'Managing System Users\n\nWhen clicked the System users menu option, will present a list of all System users available in the system whether active or not.  Active/Inactive users are listed in different colors to easily recognize the System user account status.\n\nSystem users are the in-house persons authorized to manage the activities of the WiFi Hotspot setup. They only operate this utility and is required to login with their username and password to gain access to this utility.  So it is required to create those system user accounts by the Super user of this setup, the Admin user.  Only Admin user(s) are permitted to manage system user accounts.\n\nSystem user management is activated by clicking the System Users menu option.\n\nSystem users can be created, edited and deleted by the admin.  He/she can reset their passwords also.\n\nWhen created all system user accounts will be having a default password of \'password\', which can be changed by themselves after logging in and through the System Users menu option.\n\nThere are 3 levels of System users, viz Admin User, Unit heads and System Users.\n\nThere is no limit on the number of users in each level.\n\nAdmin level users only can manage other system user\'s accounts.  He/She can deactivate/Activate any System user on will.', 'Managing System Users', '', 'inherit', 'closed', 'closed', '', '164-autosave-v1', '', '', '2016-09-17 17:53:41', '2016-09-17 12:23:41', '', '164', 'http://hotspot.helloperiyar.com/164-autosave-v1/', '0', 'revision', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('170', '2', '2016-09-17 17:54:22', '2016-09-17 12:24:22', 'Managing System Users\r\n\r\nWhen clicked the System users menu option, will present a list of all System users available in the system whether active or not.  Active/Inactive users are listed in different colors to easily recognize the System user account status.\r\n\r\nSystem users are the in-house persons authorized to manage the activities of the WiFi Hotspot setup. They only operate this utility and is required to login with their username and password to gain access to this utility.  So it is required to create those system user accounts by the Super user of this setup, the Admin user.  Only Admin user(s) are permitted to manage system user accounts.\r\n\r\nSystem user management is activated by clicking the System Users menu option.\r\n\r\nSystem users can be created, edited and deleted by the admin.  He/she can reset their passwords also.\r\n\r\nW\"shot16\"hen created all system user accounts will be having a default password of \'password\', which can be changed by themselves after logging in and through the System Users menu option.\r\n\r\nThere are 3 levels of System users, viz Admin User, Unit heads and System Users.\r\n\r\nThere is no limit on the number of users in each level.\r\n\r\nAdmin level users only can manage other system user\'s accounts.  He/She can deactivate/Activate any System user on will.', 'Managing System Users', '', 'inherit', 'closed', 'closed', '', '164-revision-v1', '', '', '2016-09-17 17:54:22', '2016-09-17 12:24:22', '', '164', 'http://hotspot.helloperiyar.com/164-revision-v1/', '0', 'revision', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('171', '2', '2016-09-17 18:00:14', '2016-09-17 12:30:14', 'Managing Hotspot User profiles\r\n\r\nWhen clicked the User Profiles menu option, will present a list of all user profiles available in the hotspot along with a few of its specifications.\r\n\r\nHotspot User Profiles are created and stored in the Hotspot server and is used for managing the guest users\' activities in the hotspot.   Only Admin user(s) and to a certain extend unithead users are also permitted to manage system hotspot user profiles.\r\n\r\nHotspot User Profiles management is activated by clicking the Hotspot User profiles menu option.\r\n\r\nHotspot User Profiles can be created, edited and deleted by the admin level accounts and to a certain level unit head level system users also.\r\n\r\nWhen creating Hotspot User Profiles if not supplied all options those will be defaulted to some safe values, which can be changed later by admin level users.\r\n\r\nThe options available are the Session Timeout values, MAC Cookie timeout, Keepalive Timeout and Download/Upload Rate limits and the number of concurrent users allowed for this profile.\r\n\r\nThere is no limit on the number of profiles created in the server.\r\n\r\nAdmin level users only can manage Hotspot user profiles.  He/She can edit/remove any User profile on will.\r\n\r\nTo create a new profile,  click the MORE OPTIONS Button of any profile row and click the Add New button after changing the Name of the Profile.  Change the required options as per the choice and save the profile.  The created profiles will be available to the guest user accounts when creating them to select with to control Speed Limit etc.', 'Managing Hotspot User profiles', '', 'publish', 'closed', 'closed', '', 'managing-hotspot-user-profiles', '', '', '2016-09-17 19:54:50', '2016-09-17 14:24:50', '', '0', 'http://hotspot.helloperiyar.com/?p=171', '0', 'post', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('172', '2', '2016-09-17 18:16:14', '2016-09-17 12:46:14', 'Managing Hotspot User profiles\r\n\r\nWhen clicked the User Profiles menu option, will present a list of all user profiles available in the hotspot along with a few of its specifications.\r\n\r\nHotspot User Profiles are created and stored in the Hotspot server and is used for managing the guest users\' activities in the hotspot.   Only Admin user(s) and to a certain extend unithead users are also permitted to manage system hotspot user profiles.\r\n\r\nHotspot User Profiles management is activated by clicking the Hotspot User profiles menu option.\r\n\r\nHotspot User Profiles can be created, edited and deleted by the admin level accounts and to a certain level unit head level system users also.\r\n\r\nWhen creating Hotspot User Profiles if not supplied all options those will be defaulted to some safe values, which can be changed later by admin level users.\r\n\r\nThe options available are the Session Timeout values, MAC Cookie timeout, Keepalive Timeout and Download/Upload Rate limits and the number of concurrent users allowed for this profile.\r\n\r\nThere is no limit on the number of profiles created in the server.\r\n\r\nAdmin level users only can manage Hotspot user profiles.  He/She can edit/remove any User profile on will.\r\n\r\nTo create a new profile,  click the MORE OPTIONS Button of any profile row and click the Add New button after changing the Name of the Profile.  Change the required options as per the choice and save the profile.  The created profiles will be available to the guest user accounts when creating them to select with to control Speed Limit etc.', 'Managing Hotspot User profiles', '', 'inherit', 'closed', 'closed', '', '171-revision-v1', '', '', '2016-09-17 18:16:14', '2016-09-17 12:46:14', '', '171', 'http://hotspot.helloperiyar.com/171-revision-v1/', '0', 'revision', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('173', '2', '2016-09-17 17:58:45', '2016-09-17 12:28:45', 'Managing Hotspot User profiles - By Administrative level System Users\r\n\r\nWhen clicked the User Profiles menu option, will present a list of all user profiles available in the hotspot along with a few of its specifications.\r\n\r\nHotspot User Profiles are created and stored in the Hotspot server and is used for managing the guest users\' activities in the hotspot.   Only Admin user(s) and to a certain extend unithead users are also permitted to manage system hotspot user profiles.\r\n\r\nHotspot User Profiles management is activated by clicking the Hotspot User profiles menu option.\r\n\r\nHotspot User Profiles can be created, edited and deleted by the admin level accounts and to a certain level unit head level system users also.\r\n\r\nWhen creating Hotspot User Profiles if not supplied all options those will be defaulted to some safe values, which can be changed later by admin level users.\r\n\r\nThe options available are the Session Timeout values, MAC Cookie timeout, Keepalive Timeout and Download/Upload Rate limits and the number of concurrent users allowed for this profile.\r\n\r\nThere is no limit on the number of profiles created in the server.\r\n\r\nAdmin level users only can manage Hotspot user profiles.  He/She can edit/remove any User profile on will.\r\n\r\nTo create a new profile,  click the MORE OPTIONS Button of any profile row and click the Add New button after changing the Name of the Profile.  Change the required options as per the choice and save the profile.  The created profiles will be available to the guest user accounts when creating them to select with to control Speed Limit etc.', 'Managing Hotspot User profiles - By Administrative level System Users', '', 'publish', 'closed', 'closed', '', 'managing-hotspot-user-profiles-by-administrative-level-system-users', '', '', '2016-09-17 19:58:41', '2016-09-17 14:28:41', '', '0', 'http://hotspot.helloperiyar.com/?p=173', '0', 'post', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('174', '2', '2016-09-17 18:17:45', '2016-09-17 12:47:45', 'Managing Hotspot User profiles - By Administrative level System Users\r\n\r\nWhen clicked the User Profiles menu option, will present a list of all user profiles available in the hotspot along with a few of its specifications.\r\n\r\nHotspot User Profiles are created and stored in the Hotspot server and is used for managing the guest users\' activities in the hotspot.   Only Admin user(s) and to a certain extend unithead users are also permitted to manage system hotspot user profiles.\r\n\r\nHotspot User Profiles management is activated by clicking the Hotspot User profiles menu option.\r\n\r\nHotspot User Profiles can be created, edited and deleted by the admin level accounts and to a certain level unit head level system users also.\r\n\r\nWhen creating Hotspot User Profiles if not supplied all options those will be defaulted to some safe values, which can be changed later by admin level users.\r\n\r\nThe options available are the Session Timeout values, MAC Cookie timeout, Keepalive Timeout and Download/Upload Rate limits and the number of concurrent users allowed for this profile.\r\n\r\nThere is no limit on the number of profiles created in the server.\r\n\r\nAdmin level users only can manage Hotspot user profiles.  He/She can edit/remove any User profile on will.\r\n\r\nTo create a new profile,  click the MORE OPTIONS Button of any profile row and click the Add New button after changing the Name of the Profile.  Change the required options as per the choice and save the profile.  The created profiles will be available to the guest user accounts when creating them to select with to control Speed Limit etc.', 'Managing Hotspot User profiles - By Administrative level System Users', '', 'inherit', 'closed', 'closed', '', '173-revision-v1', '', '', '2016-09-17 18:17:45', '2016-09-17 12:47:45', '', '173', 'http://hotspot.helloperiyar.com/173-revision-v1/', '0', 'revision', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('175', '2', '2016-09-17 17:54:58', '2016-09-17 12:24:58', 'Why there is a REFRESH Menu button?\r\n\r\nThe Easy HotSpot utility is designed to perform like an SPA Application to speed up and secure the activities.  It acts immediately to every System user actions but not immediately updates the screen in order to have maximum speed and performance.  In most cases this is not required also.\r\n\r\nIn cases where we want to show the updated lists/status of items/activities, please use REFRESH button shown in the main menu.', 'Why there is a REFRESH Menu option?', '', 'publish', 'closed', 'closed', '', 'why-there-is-a-refresh-menu-option', '', '', '2016-09-17 19:59:11', '2016-09-17 14:29:11', '', '0', 'http://hotspot.helloperiyar.com/?p=175', '0', 'post', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('176', '2', '2016-09-17 18:28:58', '2016-09-17 12:58:58', 'Why there is a REFRESH Menu button?\r\n\r\nThe Easy HotSpot utility is designed to perform like an SPA Application to speed up and secure the activities.  It acts immediately to every System user actions but not immediately updates the screen in order to have maximum speed and performance.  In most cases this is not required also.\r\n\r\nIn cases where we want to show the updated lists/status of items/activities, please use REFRESH button shown in the main menu.', 'Why there is a REFRESH Menu option?', '', 'inherit', 'closed', 'closed', '', '175-revision-v1', '', '', '2016-09-17 18:28:58', '2016-09-17 12:58:58', '', '175', 'http://hotspot.helloperiyar.com/175-revision-v1/', '0', 'revision', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('177', '2', '2016-09-17 17:50:35', '2016-09-17 12:20:35', '\"shot1\"\r\n\r\n \r\n

Login

\r\n

and

\r\n

Logout

\r\n

Options

\r\n

for

\r\n

System Users

', 'Login and Logout', '', 'publish', 'closed', 'closed', '', 'login-and-logout', '', '', '2016-09-17 19:58:56', '2016-09-17 14:28:56', '', '0', 'http://hotspot.helloperiyar.com/?p=177', '0', 'post', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('178', '2', '2016-09-17 18:34:35', '2016-09-17 13:04:35', '\"shot1\"\r\n\r\n \r\n

Login

\r\n

and

\r\n

Logout

\r\n

Options

', 'Login and Logout', '', 'inherit', 'closed', 'closed', '', '177-revision-v1', '', '', '2016-09-17 18:34:35', '2016-09-17 13:04:35', '', '177', 'http://hotspot.helloperiyar.com/177-revision-v1/', '0', 'revision', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('179', '2', '2016-09-17 18:35:25', '2016-09-17 13:05:25', '\"shot1\"\r\n\r\n \r\n

Login

\r\n

and

\r\n

Logout

\r\n

Options

\r\n

for

\r\n

System Users

', 'Login and Logout', '', 'inherit', 'closed', 'closed', '', '177-revision-v1', '', '', '2016-09-17 18:35:25', '2016-09-17 13:05:25', '', '177', 'http://hotspot.helloperiyar.com/177-revision-v1/', '0', 'revision', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('180', '2', '2016-09-17 19:14:12', '2016-09-17 13:44:12', '', 'header', '', 'inherit', 'closed', 'closed', '', 'header', '', '', '2016-09-17 19:14:12', '2016-09-17 13:44:12', '', '0', 'http://hotspot.helloperiyar.com/wp-content/uploads/2016/09/header.png', '0', 'attachment', 'image/png', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('181', '2', '2016-09-17 19:19:19', '2016-09-17 13:49:19', '', 'header', '', 'inherit', 'closed', 'closed', '', 'header-2', '', '', '2016-09-17 19:19:19', '2016-09-17 13:49:19', '', '0', 'http://hotspot.helloperiyar.com/wp-content/uploads/2016/09/header.jpg', '0', 'attachment', 'image/jpeg', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('182', '2', '2016-09-17 19:19:47', '2016-09-17 13:49:47', '', 'cropped-header.jpg', '', 'inherit', 'closed', 'closed', '', 'cropped-header-jpg', '', '', '2016-09-17 19:19:47', '2016-09-17 13:49:47', '', '0', 'http://hotspot.helloperiyar.com/wp-content/uploads/2016/09/cropped-header.jpg', '0', 'attachment', 'image/jpeg', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('183', '2', '2016-09-17 20:04:43', '2016-09-17 14:34:43', '\"shot14ea\"Voucher Printing - Single Voucher as a formatted slip/ID card like format\r\n\r\nAdjust the paper size while printing to get a neat output, normally Envelope type paper sizes are selected with this option\r\n
    \r\n
  1. Single account per row list (Plain list  for printing as a list)
  2. \r\n
  3. Two accounts per row list (Plain list  for printing as a list)
  4. \r\n
  5. Three accounts per row list(Plain list  for printing as a list, but remember this should be used for SAME PASSWORD/USERNAME accounts only)
  6. \r\n
  7. Single account in 2 rows(Plain list  for printing as a list)
  8. \r\n
  9. Three accounts per row and as formatted slip/ID card like format(Adjust the paper size while printing to adjust the size of the output slip, normally A4/like paper sizes are selected with this option)
  10. \r\n
', 'Voucher Printing - Single Voucher as a formatted slip/ID card like format', '', 'inherit', 'closed', 'closed', '', '160-revision-v1', '', '', '2016-09-17 20:04:43', '2016-09-17 14:34:43', '', '160', 'http://hotspot.helloperiyar.com/160-revision-v1/', '0', 'revision', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('184', '2', '2016-09-17 20:06:35', '2016-09-17 14:36:35', ' ', '', '', 'publish', 'closed', 'closed', '', '184', '', '', '2016-09-17 20:23:01', '2016-09-17 14:53:01', '', '0', 'http://hotspot.helloperiyar.com/?p=184', '1', 'nav_menu_item', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('208', '2', '2016-09-17 20:15:05', '2016-09-17 14:45:05', ' ', '', '', 'publish', 'closed', 'closed', '', '208', '', '', '2016-09-17 20:15:05', '2016-09-17 14:45:05', '', '0', 'http://hotspot.helloperiyar.com/?p=208', '1', 'nav_menu_item', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('209', '2', '2016-09-17 20:15:05', '2016-09-17 14:45:05', ' ', '', '', 'publish', 'closed', 'closed', '', '209', '', '', '2016-09-17 20:15:05', '2016-09-17 14:45:05', '', '0', 'http://hotspot.helloperiyar.com/?p=209', '2', 'nav_menu_item', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('210', '2', '2016-09-17 20:15:05', '2016-09-17 14:45:05', ' ', '', '', 'publish', 'closed', 'closed', '', '210', '', '', '2016-09-17 20:15:05', '2016-09-17 14:45:05', '', '0', 'http://hotspot.helloperiyar.com/?p=210', '3', 'nav_menu_item', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('211', '2', '2016-09-17 20:15:05', '2016-09-17 14:45:05', ' ', '', '', 'publish', 'closed', 'closed', '', '211', '', '', '2016-09-17 20:15:05', '2016-09-17 14:45:05', '', '0', 'http://hotspot.helloperiyar.com/?p=211', '4', 'nav_menu_item', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('212', '2', '2016-09-17 20:15:06', '2016-09-17 14:45:06', ' ', '', '', 'publish', 'closed', 'closed', '', '212', '', '', '2016-09-17 20:15:06', '2016-09-17 14:45:06', '', '0', 'http://hotspot.helloperiyar.com/?p=212', '5', 'nav_menu_item', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('213', '2', '2016-09-17 20:15:06', '2016-09-17 14:45:06', ' ', '', '', 'publish', 'closed', 'closed', '', '213', '', '', '2016-09-17 20:15:06', '2016-09-17 14:45:06', '', '0', 'http://hotspot.helloperiyar.com/?p=213', '6', 'nav_menu_item', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('214', '2', '2016-09-17 20:15:06', '2016-09-17 14:45:06', ' ', '', '', 'publish', 'closed', 'closed', '', '214', '', '', '2016-09-17 20:15:06', '2016-09-17 14:45:06', '', '0', 'http://hotspot.helloperiyar.com/?p=214', '7', 'nav_menu_item', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('215', '2', '2016-09-17 20:15:07', '2016-09-17 14:45:07', ' ', '', '', 'publish', 'closed', 'closed', '', '215', '', '', '2016-09-17 20:15:07', '2016-09-17 14:45:07', '', '0', 'http://hotspot.helloperiyar.com/?p=215', '8', 'nav_menu_item', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('216', '2', '2016-09-17 20:17:23', '2016-09-17 14:47:23', '', 'Managing Hotspot User profiles – By Administrative level System Users', '', 'publish', 'closed', 'closed', '', 'managing-hotspot-user-profiles-by-administrative-level-system-users-2', '', '', '2016-09-17 20:17:23', '2016-09-17 14:47:23', '', '0', 'http://hotspot.helloperiyar.com/?p=216', '1', 'nav_menu_item', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('217', '2', '2016-09-17 20:17:23', '2016-09-17 14:47:23', ' ', '', '', 'publish', 'closed', 'closed', '', '217', '', '', '2016-09-17 20:17:23', '2016-09-17 14:47:23', '', '0', 'http://hotspot.helloperiyar.com/?p=217', '2', 'nav_menu_item', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('218', '2', '2016-09-17 20:17:23', '2016-09-17 14:47:23', ' ', '', '', 'publish', 'closed', 'closed', '', '218', '', '', '2016-09-17 20:17:23', '2016-09-17 14:47:23', '', '0', 'http://hotspot.helloperiyar.com/?p=218', '3', 'nav_menu_item', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('219', '2', '2016-09-17 20:17:23', '2016-09-17 14:47:23', ' ', '', '', 'publish', 'closed', 'closed', '', '219', '', '', '2016-09-17 20:17:23', '2016-09-17 14:47:23', '', '0', 'http://hotspot.helloperiyar.com/?p=219', '4', 'nav_menu_item', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('220', '2', '2016-09-17 20:17:23', '2016-09-17 14:47:23', ' ', '', '', 'publish', 'closed', 'closed', '', '220', '', '', '2016-09-17 20:17:23', '2016-09-17 14:47:23', '', '0', 'http://hotspot.helloperiyar.com/?p=220', '5', 'nav_menu_item', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('221', '2', '2016-09-17 20:17:24', '2016-09-17 14:47:24', ' ', '', '', 'publish', 'closed', 'closed', '', '221', '', '', '2016-09-17 20:17:24', '2016-09-17 14:47:24', '', '0', 'http://hotspot.helloperiyar.com/?p=221', '6', 'nav_menu_item', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('222', '2', '2016-09-17 20:17:24', '2016-09-17 14:47:24', ' ', '', '', 'publish', 'closed', 'closed', '', '222', '', '', '2016-09-17 20:17:24', '2016-09-17 14:47:24', '', '0', 'http://hotspot.helloperiyar.com/?p=222', '7', 'nav_menu_item', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('223', '2', '2016-09-17 20:17:24', '2016-09-17 14:47:24', ' ', '', '', 'publish', 'closed', 'closed', '', '223', '', '', '2016-09-17 20:17:24', '2016-09-17 14:47:24', '', '0', 'http://hotspot.helloperiyar.com/?p=223', '8', 'nav_menu_item', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('224', '2', '2016-09-17 20:19:01', '2016-09-17 14:49:01', '', 'Single User Creation – Voucher printing', '', 'publish', 'closed', 'closed', '', 'single-user-creation-voucher-printing-2', '', '', '2016-09-17 20:19:01', '2016-09-17 14:49:01', '', '0', 'http://hotspot.helloperiyar.com/?p=224', '1', 'nav_menu_item', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('225', '2', '2016-09-17 20:19:01', '2016-09-17 14:49:01', '', 'Voucher Printing – Single account in 2 rows', '', 'publish', 'closed', 'closed', '', 'voucher-printing-single-account-in-2-rows-2', '', '', '2016-09-17 20:19:01', '2016-09-17 14:49:01', '', '0', 'http://hotspot.helloperiyar.com/?p=225', '2', 'nav_menu_item', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('226', '2', '2016-09-17 20:19:03', '2016-09-17 14:49:03', '', 'Voucher printing – Single account per row list', '', 'publish', 'closed', 'closed', '', 'voucher-printing-single-account-per-row-list-2', '', '', '2016-09-17 20:19:03', '2016-09-17 14:49:03', '', '0', 'http://hotspot.helloperiyar.com/?p=226', '3', 'nav_menu_item', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('227', '2', '2016-09-17 20:19:03', '2016-09-17 14:49:03', '', 'Voucher Printing – Single Voucher as a formatted slip/ID card like format', '', 'publish', 'closed', 'closed', '', 'voucher-printing-single-voucher-as-a-formatted-slipid-card-like-format-2', '', '', '2016-09-17 20:19:03', '2016-09-17 14:49:03', '', '0', 'http://hotspot.helloperiyar.com/?p=227', '4', 'nav_menu_item', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('228', '2', '2016-09-17 20:19:03', '2016-09-17 14:49:03', '', 'Voucher printing – Three accounts per row and as formatted slip/ID card like format', '', 'publish', 'closed', 'closed', '', 'voucher-printing-three-accounts-per-row-and-as-formatted-slipid-card-like-format-2', '', '', '2016-09-17 20:19:03', '2016-09-17 14:49:03', '', '0', 'http://hotspot.helloperiyar.com/?p=228', '5', 'nav_menu_item', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('229', '2', '2016-09-17 20:19:03', '2016-09-17 14:49:03', '', 'Voucher printing – Three accounts per row list', '', 'publish', 'closed', 'closed', '', 'voucher-printing-three-accounts-per-row-list-2', '', '', '2016-09-17 20:19:03', '2016-09-17 14:49:03', '', '0', 'http://hotspot.helloperiyar.com/?p=229', '6', 'nav_menu_item', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('230', '2', '2016-09-17 20:19:03', '2016-09-17 14:49:03', '', 'Voucher printing – Two accounts per row list', '', 'publish', 'closed', 'closed', '', 'voucher-printing-two-accounts-per-row-list-2', '', '', '2016-09-17 20:19:03', '2016-09-17 14:49:03', '', '0', 'http://hotspot.helloperiyar.com/?p=230', '7', 'nav_menu_item', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('231', '2', '2016-09-17 20:19:03', '2016-09-17 14:49:03', ' ', '', '', 'publish', 'closed', 'closed', '', '231', '', '', '2016-09-17 20:19:03', '2016-09-17 14:49:03', '', '0', 'http://hotspot.helloperiyar.com/?p=231', '8', 'nav_menu_item', '', '0'); -INSERT INTO `wp_wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES ('232', '2', '2016-09-17 20:26:34', '2016-09-17 14:56:34', 'Team Zetozone:\n
Hi there! We are Zetozone
\n...and we are Zetozone:\n
The Zetozone Technologies (India) Pvt. Ltd XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.
\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!', 'Team Zetozone', '', 'inherit', 'closed', 'closed', '', '2-autosave-v1', '', '', '2016-09-17 20:26:34', '2016-09-17 14:56:34', '', '2', 'http://hotspot.helloperiyar.com/2-autosave-v1/', '0', 'revision', '', '0'); - --- TABLE: wp_wp_term_relationships -CREATE TABLE `wp_wp_term_relationships` ( - `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', - `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', - `term_order` int(11) NOT NULL DEFAULT '0', - PRIMARY KEY (`object_id`,`term_taxonomy_id`), - KEY `term_taxonomy_id` (`term_taxonomy_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('118', '1', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('124', '1', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('126', '1', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('129', '1', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('131', '1', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('134', '1', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('136', '1', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('138', '1', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('140', '1', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('145', '1', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('147', '1', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('149', '1', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('151', '1', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('153', '1', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('155', '1', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('158', '1', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('160', '1', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('162', '1', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('164', '1', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('166', '1', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('171', '1', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('173', '1', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('175', '1', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('177', '1', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('184', '3', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('208', '4', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('209', '4', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('210', '4', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('211', '4', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('212', '4', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('213', '4', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('214', '4', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('215', '4', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('216', '5', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('217', '5', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('218', '5', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('219', '5', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('220', '5', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('221', '5', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('222', '5', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('223', '5', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('224', '6', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('225', '6', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('226', '6', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('227', '6', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('228', '6', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('229', '6', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('230', '6', '0'); -INSERT INTO `wp_wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES ('231', '6', '0'); - --- TABLE: wp_wp_term_taxonomy -CREATE TABLE `wp_wp_term_taxonomy` ( - `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', - `taxonomy` varchar(32) NOT NULL DEFAULT '', - `description` longtext NOT NULL, - `parent` bigint(20) unsigned NOT NULL DEFAULT '0', - `count` bigint(20) NOT NULL DEFAULT '0', - PRIMARY KEY (`term_taxonomy_id`), - UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), - KEY `taxonomy` (`taxonomy`) -) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8; -INSERT INTO `wp_wp_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES ('1', '1', 'category', '', '0', '24'); -INSERT INTO `wp_wp_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES ('2', '2', 'post_format', '', '0', '0'); -INSERT INTO `wp_wp_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES ('3', '3', 'nav_menu', '', '0', '1'); -INSERT INTO `wp_wp_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES ('4', '4', 'nav_menu', '', '0', '8'); -INSERT INTO `wp_wp_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES ('5', '5', 'nav_menu', '', '0', '8'); -INSERT INTO `wp_wp_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES ('6', '6', 'nav_menu', '', '0', '8'); - --- TABLE: wp_wp_termmeta -CREATE TABLE `wp_wp_termmeta` ( - `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', - `meta_key` varchar(255) DEFAULT NULL, - `meta_value` longtext, - PRIMARY KEY (`meta_id`), - KEY `term_id` (`term_id`), - KEY `meta_key` (`meta_key`(191)) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- TABLE: wp_wp_terms -CREATE TABLE `wp_wp_terms` ( - `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `name` varchar(200) NOT NULL DEFAULT '', - `slug` varchar(200) NOT NULL DEFAULT '', - `term_group` bigint(10) NOT NULL DEFAULT '0', - PRIMARY KEY (`term_id`), - KEY `slug` (`slug`(191)), - KEY `name` (`name`(191)) -) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8; -INSERT INTO `wp_wp_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES ('1', 'Uncategorized', 'uncategorized', '0'); -INSERT INTO `wp_wp_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES ('2', 'post-format-image', 'post-format-image', '0'); -INSERT INTO `wp_wp_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES ('3', 'Primary', 'primary', '0'); -INSERT INTO `wp_wp_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES ('4', 'Footer1', 'footer1', '0'); -INSERT INTO `wp_wp_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES ('5', 'Footer2', 'footer2', '0'); -INSERT INTO `wp_wp_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES ('6', 'Footer3', 'footer3', '0'); - --- TABLE: wp_wp_usermeta -CREATE TABLE `wp_wp_usermeta` ( - `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `user_id` bigint(20) unsigned 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`(191)) -) ENGINE=InnoDB AUTO_INCREMENT=37 DEFAULT CHARSET=utf8; -INSERT INTO `wp_wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES ('14', '2', 'nickname', 'admin'); -INSERT INTO `wp_wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES ('15', '2', 'first_name', ''); -INSERT INTO `wp_wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES ('16', '2', 'last_name', ''); -INSERT INTO `wp_wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES ('17', '2', 'description', ''); -INSERT INTO `wp_wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES ('18', '2', 'rich_editing', 'true'); -INSERT INTO `wp_wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES ('19', '2', 'comment_shortcuts', 'false'); -INSERT INTO `wp_wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES ('20', '2', 'admin_color', 'fresh'); -INSERT INTO `wp_wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES ('21', '2', 'use_ssl', '0'); -INSERT INTO `wp_wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES ('22', '2', 'show_admin_bar_front', 'true'); -INSERT INTO `wp_wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES ('23', '2', 'wp_wp_capabilities', 'a:1:{s:13:\"administrator\";b:1;}'); -INSERT INTO `wp_wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES ('24', '2', 'wp_wp_user_level', '10'); -INSERT INTO `wp_wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES ('25', '2', 'dismissed_wp_pointers', ''); -INSERT INTO `wp_wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES ('26', '2', 'show_welcome_panel', '1'); -INSERT INTO `wp_wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES ('27', '2', 'default_password_nag', ''); -INSERT INTO `wp_wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES ('29', '2', 'wp_wp_dashboard_quick_press_last_post_id', '3'); -INSERT INTO `wp_wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES ('30', '2', 'wp_wp_user-settings', 'libraryContent=browse'); -INSERT INTO `wp_wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES ('31', '2', 'wp_wp_user-settings-time', '1474120214'); -INSERT INTO `wp_wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES ('33', '2', 'session_tokens', 'a:1:{s:64:\"81b564bd5aa7986a6f64eea9067b970c4b27f16de295ba04a529b14a3cab6864\";a:4:{s:10:\"expiration\";i:1475327523;s:2:\"ip\";s:14:\"45.125.116.102\";s:2:\"ua\";s:110:\"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36\";s:5:\"login\";i:1474117923;}}'); -INSERT INTO `wp_wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES ('34', '2', 'managenav-menuscolumnshidden', 'a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'); -INSERT INTO `wp_wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES ('35', '2', 'metaboxhidden_nav-menus', 'a:2:{i:0;s:12:\"add-post_tag\";i:1;s:15:\"add-post_format\";}'); -INSERT INTO `wp_wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES ('36', '2', 'nav_menu_recently_edited', '3'); - --- TABLE: wp_wp_users -CREATE TABLE `wp_wp_users` ( - `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `user_login` varchar(60) NOT NULL DEFAULT '', - `user_pass` varchar(255) 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(255) 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`), - KEY `user_email` (`user_email`) -) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; -INSERT INTO `wp_wp_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES ('2', 'WcmtLpS8mz', '$P$B/reNUT8sZsM1q3JI4/pCLHmCCB6Pz.', 'admin', 'sibyperiyar@gmail.com', '', '2016-09-17 05:25:24', '', '0', 'admin'); - +INSERT INTO `hotspot_users` (`user_id`, `email`, `date_added`, `firstname`, `lastname`, `password`, `created_at`, `username`, `user_level`, `user_group`, `image_path`, `thumb_path`, `status`) VALUES ('3', '', '2016-09-20', 'Head User', 'Master', '5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8', '0000-00-00 00:00:00', 'admin2', '3', '0', '', '', 'Active'); \ No newline at end of file diff --git a/dbconfig.php b/dbconfig.php index d65b9cc..5ae51c7 100644 --- a/dbconfig.php +++ b/dbconfig.php @@ -1,24 +1,24 @@ -setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); - - $dbname = "`".str_replace("`","``",$DB_name)."`"; - $DB_con->query("CREATE DATABASE IF NOT EXISTS $dbname"); - $DB_con->query("use $dbname"); - } - catch(PDOException $e) { - echo "Error Creating/Locating Database $dbname: " . $e->getMessage(); - } - - /* Old Version, NOT creating DB if NOT Exist - $DB_con = new PDO("mysql:host={$DB_host};dbname={$DB_name}",$DB_user,$DB_pass); - $DB_con->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); - */ +setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); + + $dbname = "`".str_replace("`","``",$DB_name)."`"; + $DB_con->query("CREATE DATABASE IF NOT EXISTS $dbname"); + $DB_con->query("use $dbname"); + } + catch(PDOException $e) { + echo "Error: " . $e->getMessage(); + } + + /* Old Version, NOT creating DB if NOT Exist + $DB_con = new PDO("mysql:host={$DB_host};dbname={$DB_name}",$DB_user,$DB_pass); + $DB_con->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); + */ ?> \ No newline at end of file diff --git a/header.php b/header.php index ad9d1b9..371c648 100644 --- a/header.php +++ b/header.php @@ -1,954 +1,954 @@ - - - - - - - - - Easy HotSpot - A Simple Hotspot user management utility by Team Zetozone - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + Easy HotSpot - A Simple Hotspot user management utility by Team Zetozone + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/home.php b/home.php new file mode 100644 index 0000000..1ea2909 --- /dev/null +++ b/home.php @@ -0,0 +1,870 @@ + +
+
+ +
+
+
+
+ +
+
+
+
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + \ No newline at end of file diff --git a/hotsoft.php b/hotsoft.php index fa517b3..f8ba2d5 100644 --- a/hotsoft.php +++ b/hotsoft.php @@ -1,133 +1,133 @@ -setMenu('/ip hotspot user'); - $iv = count($util); - - if ((intval($limit_bytes) != 0) and (!empty($limit_uptime))) { - $limit_bytes_total = (intval($limit_bytes) * 1024 * 1024 * 1024 ); - $util->add( - array( - 'name' => "$username", - 'password' => "$password", - 'limit-uptime' => "$limit_uptime", - 'limit-bytes-total' => "$limit_bytes_total", - 'profile' => "$profile" - ) - ); - } - elseif (intval($limit_bytes) != 0) { - $limit_bytes_total = (intval($limit_bytes) * 1024 * 1024 * 1024 ); - $util->add( - array( - 'name' => "$username", - 'password' => "$password", - 'limit-bytes-total' => "$limit_bytes_total", - 'profile' => "$profile" - ) - ); - } - else - { - $util->add( - array( - 'name' => "$username", - 'password' => "$password", - 'limit-uptime' => "$limit_uptime", - 'profile' => "$profile" - ) - ); - $limit_bytes = 0; // For Adding it to Local database - } - - if ($iv != count($util)) { - include('dbconfig.php'); - $stmt = $DB_con->prepare("SELECT booking_id from hotspot_vouchers ORDER BY booking_id DESC LIMIT 1"); - $stmt->execute(array()); - $row = $stmt->fetch(PDO::FETCH_ASSOC); - $booking_id = $row['booking_id']; - $booking_id++; - $uid = $booking_id.'-1-'.date('dmY'); - $creator = 999; - $created_by = 'Hotsoft'; - $stmt = $DB_con->prepare("UPDATE hotspot_vouchers set status=:status WHERE 1"); - $stmt->execute(array(':status' => 'Over')); - $stmt = $DB_con->prepare("insert into hotspot_vouchers (created_on, created_by, creator, user_name, password, printed_times, - printed_last, status, group_of, booking_id, limit_uptime, limit_bytes, profile, uid) - values(NOW(), :created_by, :creator, :user_name, :password, :printed_times, :printed_last, :status, :group_of, - :booking_id, :limit_uptime, :limit_bytes, :profile, :uid)"); - $stmt->execute(array(':created_by' => $created_by, ':creator' => $creator, ':user_name' => $username, ':password' => $password, - ':printed_times' => 0, ':printed_last' => '', ':status' => 'Active', ':group_of' => 1, - ':booking_id' => $booking_id, ':limit_uptime' => $limit_uptime, ':limit_bytes' => $limit_bytes, - ':profile' => $profile, ':uid' => $uid)); - echo 0; //Success - } - else - { - echo 3; // Duplicate/Existing username - } - } -else - { - echo 2; //Blank Username - } - //End Adding a Guest User -} -elseif (strtolower($action) == 'checkout')) { - //Removal - $username=trim($_GET['username']); - if (!empty($username)) { - $printRequest = new RouterOS\Request('/ip/hotspot/user/print'); - $printRequest->setArgument('.proplist', '.id,name'); - $printRequest->setQuery(RouterOS\Query::where('name', $username)); - $id = $client->sendSync($printRequest)->getProperty('.id'); - - $removeRequest = new RouterOS\Request('/ip/hotspot/user/remove'); - $removeRequest->setArgument('numbers', $id); - $client->sendSync($removeRequest); - echo 0; //Success - } - else - { - echo 2; //Blank Username - } -} -else -{ - echo 1; //Wrong Action Verb -} +setMenu('/ip hotspot user'); + $iv = count($util); + + if ((intval($limit_bytes) != 0) and (!empty($limit_uptime))) { + $limit_bytes_total = (intval($limit_bytes) * 1024 * 1024 * 1024 ); + $util->add( + array( + 'name' => "$username", + 'password' => "$password", + 'limit-uptime' => "$limit_uptime", + 'limit-bytes-total' => "$limit_bytes_total", + 'profile' => "$profile" + ) + ); + } + elseif (intval($limit_bytes) != 0) { + $limit_bytes_total = (intval($limit_bytes) * 1024 * 1024 * 1024 ); + $util->add( + array( + 'name' => "$username", + 'password' => "$password", + 'limit-bytes-total' => "$limit_bytes_total", + 'profile' => "$profile" + ) + ); + } + else + { + $util->add( + array( + 'name' => "$username", + 'password' => "$password", + 'limit-uptime' => "$limit_uptime", + 'profile' => "$profile" + ) + ); + $limit_bytes = 0; // For Adding it to Local database + } + + if ($iv != count($util)) { + include('dbconfig.php'); + $stmt = $DB_con->prepare("SELECT booking_id from hotspot_vouchers ORDER BY booking_id DESC LIMIT 1"); + $stmt->execute(array()); + $row = $stmt->fetch(PDO::FETCH_ASSOC); + $booking_id = $row['booking_id']; + $booking_id++; + $uid = $booking_id.'-1-'.date('dmY'); + $creator = 999; + $created_by = 'Hotsoft'; + $stmt = $DB_con->prepare("UPDATE hotspot_vouchers set status=:status WHERE 1"); + $stmt->execute(array(':status' => 'Over')); + $stmt = $DB_con->prepare("insert into hotspot_vouchers (created_on, created_by, creator, user_name, password, printed_times, + printed_last, status, group_of, booking_id, limit_uptime, limit_bytes, profile, uid) + values(NOW(), :created_by, :creator, :user_name, :password, :printed_times, :printed_last, :status, :group_of, + :booking_id, :limit_uptime, :limit_bytes, :profile, :uid)"); + $stmt->execute(array(':created_by' => $created_by, ':creator' => $creator, ':user_name' => $username, ':password' => $password, + ':printed_times' => 0, ':printed_last' => '', ':status' => 'Active', ':group_of' => 1, + ':booking_id' => $booking_id, ':limit_uptime' => $limit_uptime, ':limit_bytes' => $limit_bytes, + ':profile' => $profile, ':uid' => $uid)); + echo 0; //Success + } + else + { + echo 3; // Duplicate/Existing username + } + } +else + { + echo 2; //Blank Username + } + //End Adding a Guest User +} +elseif (strtolower($action) == 'checkout')) { + //Removal + $username=trim($_GET['username']); + if (!empty($username)) { + $printRequest = new RouterOS\Request('/ip/hotspot/user/print'); + $printRequest->setArgument('.proplist', '.id,name'); + $printRequest->setQuery(RouterOS\Query::where('name', $username)); + $id = $client->sendSync($printRequest)->getProperty('.id'); + + $removeRequest = new RouterOS\Request('/ip/hotspot/user/remove'); + $removeRequest->setArgument('numbers', $id); + $client->sendSync($removeRequest); + echo 0; //Success + } + else + { + echo 2; //Blank Username + } +} +else +{ + echo 1; //Wrong Action Verb +} ?> \ No newline at end of file diff --git a/index.php b/index.php index 93b61f4..6da0ef5 100644 --- a/index.php +++ b/index.php @@ -1,881 +1,31 @@ - - -= 4))) { - header("location:login.php"); -} -?> - - - - - -
-
- -
-
-
-
- -
-
-
-
- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - + + += 4))) { + header("location:login.php"); +} +?> + + + + + + + \ No newline at end of file diff --git a/info.php b/info.php index 39feaec..d6c35ec 100644 --- a/info.php +++ b/info.php @@ -1,91 +1,91 @@ -

PHP Info of this Machine



'; -echo phpinfo(); -/* -* Md. Nazmul Basher - - -ob_start(); // Turn on output buffering -system(‘ipconfig /all’); //Execute external program to display output -$mycom=ob_get_contents(); // Capture the output into a variable -ob_clean(); // Clean (erase) the output buffer - -$findme = “Physicalâ€; -$pmac = strpos($mycom, $findme); // Find the position of Physical text -$mac=substr($mycom,($pmac+36),17); // Get Physical Address - - - -echo "MAC ID: "; -echo $pmac; -echo $mac; - -function getMacLinux() { - exec('netstat -ie', $result); - if(is_array($result)) { - $iface = array(); - foreach($result as $key => $line) { - if($key > 0) { - $tmp = str_replace(" ", "", substr($line, 0, 10)); - if($tmp <> "") { - $macpos = strpos($line, "HWaddr"); - if($macpos !== false) { - $iface[] = array('iface' => $tmp, 'mac' => strtolower(substr($line, $macpos+7, 17))); - } - } - } - } - return $iface[0]['mac']; - } else { - return "notfound"; - } -} - -echo 'Linux Mac ID : '.getMaclinux(); - - -$ip=$_SERVER['SERVER_ADDR']; -echo "Server IP: {$ip}
-Server Mac: "; -$conf=exec('netstat -ie'); -$prots=explode("\n\n",$conf); -if($ip=='127.0.0.1')$ip='192.168.'; -foreach($prots as $prot){ - if(strpos($prot,' addr:'.$ip) && preg_match('/(?:\s+)HWaddr(?:\s+)(?P[a-f0-9\:]+)/',$prot,$match)){ - echo $match['mac']; - } -} - - -$ipAddress=$_SERVER['REMOTE_ADDR']; -$macAddr=false; - -#run the external command, break output into lines -$arp=`arp -a $ipAddress`; -$lines=explode("\n", $arp); - -#look for the output line describing our IP address -foreach($lines as $line) -{ - $cols=preg_split('/\s+/', trim($line)); - if ($cols[0]==$ipAddress) - { - $macAddr=$cols[1]; - } -} -echo $lines[1]; -echo $cols[1]; -echo $macAddr; -*/ -//=========================================== -ob_start(); -$cmd = system("getmac"); -ob_end_clean(); -echo 'Your MAC ID : '. substr($cmd,0,17); -/* -echo '


'; -echo '
New Get Mac: '.substr($cmd,0,17).'
'; -echo 'Location: '.strstr($cmd, '{'); -$cmd = system("nbtstat -a ip.of.remote.machine"); -echo '
Another ID New Get Mac: '.$cmd; */ +

PHP Info of this Machine



'; +echo phpinfo(); +/* +* Md. Nazmul Basher + + +ob_start(); // Turn on output buffering +system(‘ipconfig /all’); //Execute external program to display output +$mycom=ob_get_contents(); // Capture the output into a variable +ob_clean(); // Clean (erase) the output buffer + +$findme = “Physicalâ€; +$pmac = strpos($mycom, $findme); // Find the position of Physical text +$mac=substr($mycom,($pmac+36),17); // Get Physical Address + + + +echo "MAC ID: "; +echo $pmac; +echo $mac; + +function getMacLinux() { + exec('netstat -ie', $result); + if(is_array($result)) { + $iface = array(); + foreach($result as $key => $line) { + if($key > 0) { + $tmp = str_replace(" ", "", substr($line, 0, 10)); + if($tmp <> "") { + $macpos = strpos($line, "HWaddr"); + if($macpos !== false) { + $iface[] = array('iface' => $tmp, 'mac' => strtolower(substr($line, $macpos+7, 17))); + } + } + } + } + return $iface[0]['mac']; + } else { + return "notfound"; + } +} + +echo 'Linux Mac ID : '.getMaclinux(); + + +$ip=$_SERVER['SERVER_ADDR']; +echo "Server IP: {$ip}
+Server Mac: "; +$conf=exec('netstat -ie'); +$prots=explode("\n\n",$conf); +if($ip=='127.0.0.1')$ip='192.168.'; +foreach($prots as $prot){ + if(strpos($prot,' addr:'.$ip) && preg_match('/(?:\s+)HWaddr(?:\s+)(?P[a-f0-9\:]+)/',$prot,$match)){ + echo $match['mac']; + } +} + + +$ipAddress=$_SERVER['REMOTE_ADDR']; +$macAddr=false; + +#run the external command, break output into lines +$arp=`arp -a $ipAddress`; +$lines=explode("\n", $arp); + +#look for the output line describing our IP address +foreach($lines as $line) +{ + $cols=preg_split('/\s+/', trim($line)); + if ($cols[0]==$ipAddress) + { + $macAddr=$cols[1]; + } +} +echo $lines[1]; +echo $cols[1]; +echo $macAddr; +*/ +//=========================================== +ob_start(); +$cmd = system("getmac"); +ob_end_clean(); +echo 'Your MAC ID : '. substr($cmd,0,17); +/* +echo '


'; +echo '
New Get Mac: '.substr($cmd,0,17).'
'; +echo 'Location: '.strstr($cmd, '{'); +$cmd = system("nbtstat -a ip.of.remote.machine"); +echo '
Another ID New Get Mac: '.$cmd; */ ?> \ No newline at end of file diff --git a/login.php b/login.php index 19c45ef..1ac6c30 100644 --- a/login.php +++ b/login.php @@ -1,97 +1,97 @@ - - - -
-
-

Easy Hotspot

-

Simple HotSpot User Management Utility

-

By TEAM ZETOZONE

-
-
-
-
-
-

Login using Registered Credentials

-
-
-
-
- -
- -
-
-
- -
- -
-
-
-
- -
-
- -
-
-
- prepare("SELECT user_id FROM hotspot_users WHERE 1"); - $stmt->execute(array()); - } - catch(PDOException $e) { - try { - include('database.php'); - $stmt = $DB_con->prepare("SELECT user_id FROM hotspot_users WHERE 1"); - $stmt->execute(array()); - } - catch(PDOException $e) { - echo "Error Accessing Data: " . $e->getMessage(); - } - } - - $count = $stmt->rowCount(); - if( $count == 0 ) { - $password = sha1('admin'); - $stmt = $DB_con->prepare("insert into hotspot_users (date_added, firstname, username, password, user_level, status, user_group, created_at) - values(CURDATE(), 'Administrator', :username, :password, :level, 'Active', 1, NOW())"); - $stmt->execute(array(':username' => 'admin', ':password' => $password, ':level' => 1)); - } - try - { - $stmt = $DB_con->prepare("SELECT * FROM hotspot_users WHERE username=:username AND password =:password AND status =:status"); - $stmt->execute(array(':username' => $username, ':password' => $password, ':status' => 'Active')); - $count = $stmt->rowCount(); - } - catch(PDOException $e) { - echo "Error: " . $e->getMessage(); - } - - if( $count == 1 ) { - $row=$stmt->fetch(PDO::FETCH_ASSOC); - - $_SESSION['id']=$row['user_id']; - $_SESSION['username']=$row['firstname'].' '.$row['lastname']; - $_SESSION['user_level']= $row['user_level']; - echo ''; - } - else - { - echo ''; - } - } - ?> -
-
-
-
+ + + +
+
+

Easy Hotspot

+

Simple HotSpot User Management Utility

+

By TEAM ZETOZONE

+
+
+
+
+
+

Login using Registered Credentials

+
+
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+ +
+
+ +
+
+
+ prepare("SELECT user_id FROM hotspot_users WHERE 1"); + $stmt->execute(array()); + } + catch(PDOException $e) { + try { + include('database.php'); + $stmt = $DB_con->prepare("SELECT user_id FROM hotspot_users WHERE 1"); + $stmt->execute(array()); + } + catch(PDOException $e) { + echo "Error Accessing Data: " . $e->getMessage(); + } + } + + $count = $stmt->rowCount(); + if( $count == 0 ) { + $password = sha1('admin'); + $stmt = $DB_con->prepare("insert into hotspot_users (date_added, firstname, username, password, user_level, status, user_group, created_at) + values(CURDATE(), 'Administrator', :username, :password, :level, 'Active', 1, NOW())"); + $stmt->execute(array(':username' => 'admin', ':password' => $password, ':level' => 1)); + } + try + { + $stmt = $DB_con->prepare("SELECT * FROM hotspot_users WHERE username=:username AND password =:password AND status =:status"); + $stmt->execute(array(':username' => $username, ':password' => $password, ':status' => 'Active')); + $count = $stmt->rowCount(); + } + catch(PDOException $e) { + echo "Error: " . $e->getMessage(); + } + + if( $count == 1 ) { + $row=$stmt->fetch(PDO::FETCH_ASSOC); + + $_SESSION['id']=$row['user_id']; + $_SESSION['username']=$row['firstname'].' '.$row['lastname']; + $_SESSION['user_level']= $row['user_level']; + echo ''; + } + else + { + echo ''; + } + } + ?> +
+
+
+
\ No newline at end of file diff --git a/logme.php b/logme.php new file mode 100644 index 0000000..09350cc --- /dev/null +++ b/logme.php @@ -0,0 +1,49 @@ +. + */ +session_start(); +?> + + + + \ No newline at end of file diff --git a/logout.php b/logout.php index 57c5f0b..927e207 100644 --- a/logout.php +++ b/logout.php @@ -1,7 +1,7 @@ -window.open("backup.php", "_self").close(); top.close(); window.open("backup.php", "_self", ""); window.close();'; -header('location:index.php'); +window.open("backup.php", "_self").close(); top.close(); window.open("backup.php", "_self", ""); window.close();'; +header('location:index.php'); ?> \ No newline at end of file diff --git a/modal_change_pass.php b/modal_change_pass.php index ce440ed..4272f46 100644 --- a/modal_change_pass.php +++ b/modal_change_pass.php @@ -1,72 +1,72 @@ -