maj.world

maj.world

Git

This blob has been accessed 257 times via Git panel.

  1. <?php
  2.  
  3. require("core.php");
  4.  
  5. session_regenerate_id(TRUE);
  6.  
  7. if (file_exists("$maj_data_directory/lite.txt")) {
  8.         exit();
  9. }
  10.  
  11. if (!file_exists("$maj_data_directory/bb.txt")) {
  12.         exit();
  13. }
  14.  
  15. if (file_exists("$maj_data_directory/bb-min-age.txt")) {
  16.         $minage = file_get_contents("$maj_data_directory/bb-min-age.txt");
  17. }
  18. else {
  19.         $minage = 5;
  20. }
  21.  
  22. if (file_exists("$maj_data_directory/bb-max-age.txt")) {
  23.         $maxage = file_get_contents("$maj_data_directory/bb-max-age.txt");
  24. }
  25. else {
  26.         $maxage = 125;
  27. }
  28.  
  29. echo "<title>Options</title>";
  30.  
  31. include("css.php");
  32.  
  33. echo "\n<style>body { margin: {$maj_wspace}px; }</style>\n";
  34.  
  35. if (isset($_REQUEST['username']) and !empty($_REQUEST['username']) and isset($_REQUEST['key']) and !empty($_REQUEST['key'])) {
  36.  
  37.         $username = $_REQUEST['username'];
  38.  
  39.         if (file_exists("$maj_data_directory/members/active/$username") and ($_REQUEST['key'] == file_get_contents("$maj_data_directory/members/active/$username/key.txt"))) {
  40.                 unlink("$maj_data_directory/members/active/$username/key.txt");
  41.                 unlink("$maj_data_directory/members/active/$username/bb-vacation.txt");
  42.                 unlink("$maj_data_directory/members/active/$username/email.txt");
  43.                 rename("$maj_data_directory/members/active/$username/new-email.txt","$maj_data_directory/members/active/$username/email.txt");
  44.                 echo "<font style=\"font-size: 12px;\"><b>Thanks!</b></font>You have successfully verified your new e-mail address.<br>Click <a href=index.php>here</a> to go to the index page.";
  45.         }
  46.         exit();
  47. }
  48.  
  49. if (!isset($maj_logged_in_username)) {
  50.         exit();
  51. }
  52.  
  53. if ($maj_logged_in_username == $maj_admin_username) {
  54.         exit();
  55. }
  56.  
  57. if (!file_exists("$maj_data_directory/members/active/$maj_logged_in_username")) {
  58.         exit();
  59. }
  60.  
  61. if (isset($_POST['email']) and !empty($_POST['email']) and (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/email.txt") != $_POST['email']) and (mb_ereg("@", $_POST['email'])) and (mb_ereg("\.", $_POST['email']))) {
  62.  
  63.         $email_write_content = mb_strtolower($_POST['email']);
  64.         $email_write_content = trim($email_write_content);
  65.         $email_write_content = str_replace(" ","",$email_write_content);
  66.         $email_write_content = htmlentities($email_write_content, ENT_QUOTES, 'UTF-8');
  67.  
  68.         $fp_email_txt = fopen("$maj_data_directory/members/active/$maj_logged_in_username/new-email.txt","w");
  69.         fwrite($fp_email_txt,$email_write_content);
  70.         fclose($fp_email_txt);
  71.  
  72.         $key_email = str_rand(40);
  73.  
  74.         $fp_key_txt = fopen("$maj_data_directory/members/active/$maj_logged_in_username/key.txt","w");
  75.         fwrite($fp_key_txt,$key_email);
  76.         fclose($fp_key_txt);
  77.  
  78.         $firstname = file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/firstname.txt");
  79.         $lastname = file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/lastname.txt");
  80.  
  81.         $old_email = file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/email.txt");
  82.  
  83.         $sig_url = $_SERVER['HTTP_HOST'] . dirname($_SERVER['PHP_SELF']) . "/";
  84.         $sig_url = str_replace('//', '/', $sig_url);
  85.         $sig_url = "http://" . $sig_url;
  86.  
  87.         $sig_author = file_get_contents("$maj_data_directory/author.txt");
  88.         $from_email = file_get_contents("$maj_data_directory/email.txt");
  89.  
  90.         $confirm_change = "Hi $firstname,\n\nWe have received an e-mail address modification request ($old_email to $email_write_content) at $sig_url. To confirm this, simply visit this link:\n\n{$sig_url}options.php?username={$maj_logged_in_username}&key=$key_email\n\nIf you have any questions, send them to $from_email.\n\nThanks!\n\n--\n$sig_author\n$sig_url\n";
  91.         //$confirm_change = wordwrap($confirm_change);
  92.  
  93.         $email_to = '"' . "$firstname $lastname" . '" <' . $email_write_content . '>';
  94.         $email_from = '"' . $sig_author . '" <' . $from_email . '>';
  95.  
  96.         mb_send_mail($email_to, "confirm $key_email", $confirm_change,
  97.                 "From: $email_from\n" .
  98.                 "Reply-To: $email_from\n" .
  99.                 "X-Mailer: $maj_mailer");
  100.  
  101.         echo "Confirmation request sent. Check your $email_write_content inbox for details.";
  102. }
  103.  
  104. if (isset($_POST['tel']) and !empty($_POST['tel']) and (mb_strlen(preg_replace("/[^0-9]/","", $_POST['tel'])) > 6)) {
  105.  
  106.         $tel = strip_tags($_POST['tel']);
  107.         $tel = htmlentities($tel, ENT_QUOTES, 'UTF-8');
  108.         $tel = trim($tel);
  109.  
  110.         $tel = preg_replace('/[^0-9+]/i','',$tel);
  111.  
  112.         if (preg_match("/^\+/",$tel)) {
  113.  
  114.                 $tel = preg_replace('/[^0-9]/i','',$tel);
  115.                 $tel = '+' . $tel;
  116.         }
  117.         else {
  118.                 $tel = preg_replace('/[^0-9]/i','',$tel);
  119.         }
  120.  
  121.         $fp_tel_txt = fopen("$maj_data_directory/members/active/$maj_logged_in_username/tel.txt","w");
  122.         fwrite($fp_tel_txt,$tel);
  123.         fclose($fp_tel_txt);
  124. }
  125.  
  126. if (isset($_POST['org']) and !empty($_POST['org']) and (strlen($_POST['org']) > 2)) {
  127.  
  128.         $org = trim(strip_tags($_POST['org']));
  129.         $org = htmlentities($org, ENT_QUOTES, 'UTF-8');
  130.         $org = format_title_put($org);
  131.  
  132.         $fp_org_txt = fopen("$maj_data_directory/members/active/$maj_logged_in_username/org.txt","w");
  133.         fwrite($fp_org_txt,$org);
  134.         fclose($fp_org_txt);
  135. }
  136.  
  137. if ((!isset($_POST['url']) or empty($_POST['url'])) and isset($_POST['edit']) and ($_POST['edit'] == "on")) {
  138.         unlink("$maj_data_directory/members/active/$maj_logged_in_username/url.txt");
  139. }
  140.  
  141. if (isset($_POST['url']) and !empty($_POST['url']) and (mb_ereg("\.", $_POST['url']))) {
  142.  
  143.         $url = strip_tags($_POST['url']);
  144.         $url = str_replace('http://', '', $url);
  145.         $url = mb_strtolower($url);
  146.         $url = trim($url);
  147.         $url = 'http://' . $url;
  148.         $url = str_replace(" ","",$url);
  149.         $url = htmlentities($url, ENT_QUOTES, 'UTF-8');
  150.  
  151.         $fp_url_txt = fopen("$maj_data_directory/members/active/$maj_logged_in_username/url.txt","w");
  152.         fwrite($fp_url_txt,$url);
  153.         fclose($fp_url_txt);
  154. }
  155.  
  156. if (isset($_POST['country']) and !empty($_POST['country'])) {
  157.  
  158.         $country = strip_tags($_POST['country']);
  159.         $country = trim($country);
  160.         $country = mb_strtoupper($country);
  161.         $country = htmlentities($country, ENT_QUOTES, 'UTF-8');
  162.  
  163.         $fp_country_txt = fopen("$maj_data_directory/members/active/$maj_logged_in_username/country.txt","w");
  164.         fwrite($fp_country_txt,$country);
  165.         fclose($fp_country_txt);
  166. }
  167.  
  168. if (isset($_POST['city']) and !empty($_POST['city'])) {
  169.  
  170.         $city = strip_tags($_POST['city']);
  171.         $city = trim($city);
  172.         $city = ucwords($city);
  173.         $city = htmlentities($city, ENT_QUOTES, 'UTF-8');
  174.  
  175.         $fp_city_txt = fopen("$maj_data_directory/members/active/$maj_logged_in_username/city.txt","w");
  176.         fwrite($fp_city_txt,$city);
  177.         fclose($fp_city_txt);
  178. }
  179.  
  180. if ((!isset($_POST['sig']) or empty($_POST['sig'])) and isset($_POST['edit']) and ($_POST['edit'] == "on")) {
  181.         unlink("$maj_data_directory/members/active/$maj_logged_in_username/sig.txt");
  182. }
  183.  
  184. if (isset($_POST['sig']) and !empty($_POST['sig'])) {
  185.  
  186.         $sig = strip_tags($_POST['sig']);
  187.         $sig = str_replace("[b]","<b>",$sig);
  188.         $sig = str_replace("[/b]","</b>",$sig);
  189.         $sig = str_replace("[i]","<i>",$sig);
  190.         $sig = str_replace("[/i]","</i>",$sig);
  191.         $sig = str_replace("[u]","<u>",$sig);
  192.         $sig = str_replace("[/u]","</u>",$sig);
  193.         $sig = str_replace("[sup]","<sup>",$sig);
  194.         $sig = str_replace("[/sup]","</sup>",$sig);
  195.         $sig = str_replace("[sub]","<sub>",$sig);
  196.         $sig = str_replace("[/sub]","</sub>",$sig);
  197.         $sig = str_replace("[strike]","<strike>",$sig);
  198.         $sig = str_replace("[/strike]","</strike>",$sig);
  199.         $sig = str_replace("\n","<br>", $sig);
  200.         $sig = ucfirst($sig);
  201.         $sig = trim($sig);
  202.  
  203.         $fp_sig_txt = fopen("$maj_data_directory/members/active/$maj_logged_in_username/sig.txt","w");
  204.         fwrite($fp_sig_txt,$sig);
  205.         fclose($fp_sig_txt);
  206. }
  207.  
  208. if (isset($_POST['del_avatar']) and !empty($_POST['del_avatar']) and ($_POST['del_avatar'] == "on")) {
  209.         if (file_exists("$maj_image_directory/members/$maj_logged_in_username/avatar.gif")) {
  210.                 unlink("$maj_image_directory/members/$maj_logged_in_username/avatar.gif");
  211.         }
  212.  
  213.         if (file_exists("$maj_image_directory/members/$maj_logged_in_username/avatar.jpg")) {
  214.                 unlink("$maj_image_directory/members/$maj_logged_in_username/avatar.jpg");
  215.         }
  216.  
  217.         if (file_exists("$maj_image_directory/members/$maj_logged_in_username/avatar.png")) {
  218.                 unlink("$maj_image_directory/members/$maj_logged_in_username/avatar.png");
  219.         }
  220. }
  221.  
  222. if (isset($_FILES['avatar']) and !empty($_FILES['avatar'])) {
  223.  
  224.         if (is_uploaded_file($_FILES['avatar']['tmp_name'])) {
  225.  
  226.                 if ($_FILES['avatar']['size']<=$max_file_size) {
  227.  
  228.                         if (($_FILES['avatar']['type']=="image/gif") || ($_FILES['avatar']['type']=="image/pjpeg") || ($_FILES['avatar']['type']=="image/jpeg") || ($_FILES['avatar']['type']=="image/png")) {
  229.  
  230.                                 if (!file_exists("$maj_image_directory/members")) {
  231.                                         mkdir("$maj_image_directory/members");
  232.                                 }
  233.  
  234.                                 if (!file_exists("$maj_image_directory/members/$maj_logged_in_username")) {
  235.                                         mkdir("$maj_image_directory/members/$maj_logged_in_username");
  236.                                 }
  237.  
  238.                                 if (file_exists("$maj_image_directory/members/$maj_logged_in_username/avatar.gif")) {
  239.                                         unlink("$maj_image_directory/members/$maj_logged_in_username/avatar.gif");
  240.                                 }
  241.  
  242.                                 if (file_exists("$maj_image_directory/members/$maj_logged_in_username/avatar.jpg")) {
  243.                                         unlink("$maj_image_directory/members/$maj_logged_in_username/avatar.jpg");
  244.                                 }
  245.  
  246.                                 if (file_exists("$maj_image_directory/members/$maj_logged_in_username/avatar.png")) {
  247.                                         unlink("$maj_image_directory/members/$maj_logged_in_username/avatar.png");
  248.                                 }
  249.  
  250.                                 if ($_FILES['avatar']['type']=="image/gif") {
  251.                                         $res = copy($_FILES['avatar']['tmp_name'], "$maj_image_directory/members/$maj_logged_in_username/avatar.gif");
  252.                                         unlink($_FILES['avatar']['tmp_name']);
  253.                                 }
  254.  
  255.                                 if (($_FILES['avatar']['type']=="image/jpeg") or ($_FILES['avatar']['type']=="image/pjpeg")) {
  256.                                         $res = copy($_FILES['avatar']['tmp_name'], "$maj_image_directory/members/$maj_logged_in_username/avatar.jpg");
  257.                                         unlink($_FILES['avatar']['tmp_name']);
  258.                                 }
  259.  
  260.                                 if ($_FILES['avatar']['type']=="image/png") {
  261.                                         $res = copy($_FILES['avatar']['tmp_name'], "$maj_image_directory/members/$maj_logged_in_username/avatar.png");
  262.                                         unlink($_FILES['avatar']['tmp_name']);
  263.                                 }
  264.                         }
  265.                         else {
  266.                                 unlink($_FILES['avatar']['tmp_name']);
  267.                         }
  268.                 }
  269.                 else {
  270.                         unlink($_FILES['avatar']['tmp_name']);
  271.                 }
  272.         }
  273.         else {
  274.                 unlink($_FILES['avatar']['tmp_name']);
  275.         }
  276. }
  277.  
  278. if (isset($_POST['vacation']) and !empty($_POST['vacation']) and ($_POST['vacation'] == "on") and !file_exists("$maj_data_directory/members/active/$maj_logged_in_username/bb-vacation.txt")) {
  279.         touch("$maj_data_directory/members/active/$maj_logged_in_username/bb-vacation.txt");
  280. }
  281.  
  282. if (!isset($_POST['vacation']) or empty($_POST['vacation'])) {
  283.         if (isset($_POST['edit']) and ($_POST['edit'] == "on")) {
  284.                 if (file_exists("$maj_data_directory/members/active/$maj_logged_in_username/bb-vacation.txt")) {
  285.                         unlink("$maj_data_directory/members/active/$maj_logged_in_username/bb-vacation.txt");
  286.                 }
  287.         }
  288. }
  289.  
  290. if (file_exists("$maj_data_directory/members/active/$maj_logged_in_username/key.txt") and !file_exists("$maj_data_directory/members/active/$maj_logged_in_username/bb-vacation.txt")) {
  291.         touch("$maj_data_directory/members/active/$maj_logged_in_username/bb-vacation.txt");
  292. }
  293.  
  294.  
  295. if (isset($_POST['bday']) and !empty($_POST['bday']) and (mb_strlen($_POST['bday']) == "8") and is_numeric($_POST['bday']) and ((round((date("Ymd", time() + $maj_offset) - $_POST['bday']) * 0.0001)) >= $minage) and ((round((date("Ymd", time() + $maj_offset) - $_POST['bday']) * 0.0001)) <= $maxage)) {
  296.  
  297.         $fp_bday_txt = fopen("$maj_data_directory/members/active/$maj_logged_in_username/bday.txt","w");
  298.         fwrite($fp_bday_txt,strip_tags($_POST['bday']));
  299.         fclose($fp_bday_txt);
  300.  
  301. }
  302.  
  303. if (isset($_POST['current_passwd']) and !empty($_POST['current_passwd']) and isset($_POST['new_passwd']) and !empty($_POST['new_passwd']) and isset($_POST['confirm_passwd']) and !empty($_POST['confirm_passwd'])) {
  304.  
  305.         if (file_exists("$maj_data_directory/bb-passlen.txt")) {
  306.                 $pass_len = file_get_contents("$maj_data_directory/bb-passlen.txt");
  307.         }
  308.         else {
  309.                 $pass_len = 8;
  310.         }
  311.  
  312.         $current_passwd = trim($_POST['current_passwd']);
  313.         $new_passwd = trim($_POST['new_passwd']);
  314.         $confirm_passwd = trim($_POST['confirm_passwd']);
  315.  
  316.         if ((mb_strlen($new_passwd) < $pass_len) or (mb_strlen($confirm_passwd) < $pass_len)) {
  317.                 echo "Passwords must be composed of at least $pass_len characters.";
  318.         }
  319.         else {
  320.                 /* Fun with crypt! */
  321.                 $current_passwd = sha1($current_passwd);
  322.                 $current_passwd = md5($current_passwd);
  323.                 $current_passwd = crypt($current_passwd, $current_passwd);
  324.                 $new_passwd = sha1($new_passwd);
  325.                 $new_passwd = md5($new_passwd);
  326.                 $new_passwd = crypt($new_passwd, $new_passwd);
  327.                 $confirm_passwd = sha1($confirm_passwd);
  328.                 $confirm_passwd = md5($confirm_passwd);
  329.                 $confirm_passwd = crypt($confirm_passwd, $confirm_passwd);
  330.                
  331.                 if (($current_passwd != file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/password.txt")) or ($new_passwd != $confirm_passwd)) {
  332.                         echo "Passwords do not match.";
  333.                 }
  334.                 else {
  335.                         $fp_passwd_txt = fopen("$maj_data_directory/members/active/$maj_logged_in_username/password.txt","w");
  336.                         fwrite($fp_passwd_txt,$new_passwd);
  337.                         fclose($fp_passwd_txt);
  338.                         $login_url = "http://" . $_SERVER['HTTP_HOST'] . dirname($_SERVER['PHP_SELF']) . "/login.php";
  339.                         $login_url = str_replace("//login.php", "/login.php", $login_url);
  340.                         echo "Password successfully changed and encrypted on record.";
  341.                 }
  342.         }
  343. }
  344.  
  345. ?>
  346.  
  347. <table border="0" cellspacing="1" cellpadding="2" bgcolor="#cccccc">
  348.  
  349. <tr><td bgcolor="#ffffff" colspan="2" align="right">you are logged in as <b><?php echo "<b>{$maj_logged_in_username}</b>"; ?>&nbsp;&nbsp;</b></td></tr>
  350.  
  351. <tr><td bgcolor="#ffffff" width="<?php echo $maj_ablock; ?>" align="center"><?php maj_avatar_image($maj_logged_in_username,$maj_aimage,0,0); ?></td><td bgcolor="#ffffff">
  352.  
  353. <?php
  354.  
  355. echo "<b>";
  356. readfile("$maj_data_directory/members/active/$maj_logged_in_username/firstname.txt");
  357. echo " ";
  358. readfile("$maj_data_directory/members/active/$maj_logged_in_username/lastname.txt");
  359. echo "</b>";
  360.  
  361. if (file_exists("$maj_data_directory/members/active/$maj_logged_in_username/rank.txt") and file_exists("$maj_data_directory/rank.txt")) {
  362.         $rank = file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/rank.txt");
  363.         echo "<br>$rank";
  364. }
  365. elseif (!file_exists("$maj_data_directory/members/active/$maj_logged_in_username/rank.txt") and file_exists("$maj_data_directory/rank.txt")) {
  366.         echo "<br>member";
  367. }
  368.  
  369. echo "<p align=right>";
  370.  
  371. if (file_exists("$maj_data_directory/members/active/$maj_logged_in_username/bday.txt")) {
  372.  
  373.         $bday = file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/bday.txt");
  374.         $bday_year = mb_substr($bday,0,4);
  375.         $bday_month = mb_substr($bday,4,2);
  376.         $bday_day = mb_substr($bday,6,2);
  377.         $bday = date("d M Y [D]", mktime(0, 0, 0, $bday_month, $bday_day, $bday_year));
  378.         echo "birthdate<code>&nbsp;$bday&nbsp;</code><br>";
  379. }
  380.  
  381. if (file_exists("$maj_data_directory/members/active/$maj_logged_in_username/timestamp.txt")) {
  382.         $joined = file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/timestamp.txt");
  383.         $joined_year = mb_substr($joined,0,4);
  384.         $joined_month = mb_substr($joined,4,2);
  385.         $joined_day = mb_substr($joined,6,2);
  386.         $joined_hh = mb_substr($joined,8,2);
  387.         $joined_mm = mb_substr($joined,10,2);
  388.         $member_since = date("d M Y H:i", mktime($joined_hh, $joined_mm, 0, $joined_month, $joined_day, $joined_year));
  389.         echo "member since<code>&nbsp;$member_since&nbsp;</code><br>";
  390. }
  391.  
  392. if (file_exists("$maj_data_directory/members/active/$maj_logged_in_username/bb-last.txt")) {
  393.         $lastlog = file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/bb-last.txt");
  394.         $lastlog_year = mb_substr($lastlog,0,4);
  395.         $lastlog_month = mb_substr($lastlog,4,2);
  396.         $lastlog_day = mb_substr($lastlog,6,2);
  397.         $lastlog_hh = mb_substr($lastlog,8,2);
  398.         $lastlog_mm = mb_substr($lastlog,10,2);
  399.         $last_login = date("d M Y H:i", mktime($lastlog_hh, $lastlog_mm, 0, $lastlog_month, $lastlog_day, $lastlog_year));
  400.         echo "last login<code>&nbsp;$last_login&nbsp;</code>";
  401. }
  402.  
  403. ?>
  404.  
  405. </td></tr>
  406.  
  407. <form enctype="multipart/form-data" action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
  408. <input type="hidden" name="edit" value="on">
  409.  
  410. <?php if (!file_exists("$maj_data_directory/members/active/$maj_logged_in_username/key.txt")) { ?>
  411. <tr><td bgcolor="#ffffff">e-mail address*</td><td bgcolor="#ffffff" colspan="2"><input autofocus required class="input" type="email" autocomplete="off" name="email" maxlength="60" value="<?php readfile("$maj_data_directory/members/active/$maj_logged_in_username/email.txt"); ?>"></td></tr>
  412. <?php } ?>
  413.  
  414. <tr><td bgcolor="#ffffff">mobile number</td><td bgcolor="#ffffff" colspan="2"><input autofocus required class="input" type="tel" autocomplete="off" name="tel" maxlength="30" <?php if (file_exists("$maj_data_directory/members/active/$maj_logged_in_username/tel.txt")) { echo "value=\""; readfile("$maj_data_directory/members/active/$maj_logged_in_username/tel.txt"); echo "\""; } ?>></td></tr>
  415.  
  416. <tr><td bgcolor="#ffffff">company or school</td><td bgcolor="#ffffff" colspan="2"><input autofocus required class="input" type="org" autocomplete="off" name="org" maxlength="60" <?php if (file_exists("$maj_data_directory/members/active/$maj_logged_in_username/org.txt")) { echo "value=\""; readfile("$maj_data_directory/members/active/$maj_logged_in_username/org.txt"); echo "\""; } ?>></td></tr>
  417.  
  418. <tr><td bgcolor="#ffffff">website</td><td bgcolor="#ffffff" colspan="2"><input class="input" type="url" autocomplete="off" name="url" maxlength="300" <?php if (file_exists("$maj_data_directory/members/active/$maj_logged_in_username/url.txt")) { echo "value=\""; readfile("$maj_data_directory/members/active/$maj_logged_in_username/url.txt"); echo "\""; } ?>></td></tr>
  419.  
  420. <tr><td bgcolor="#ffffff">country</td><td bgcolor="#ffffff" colspan="2">
  421.  
  422. <select class="input" name="country" required>
  423. <option<?php if (!file_exists("$maj_data_directory/members/active/$maj_logged_in_username/country.txt")) { echo " selected"; } ?> value=""></option>
  424. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "AF") { echo " selected"; } ?> value="AF">Afghanistan</option>
  425. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "AX") { echo " selected"; } ?> value="AX">Aland (Ahvenanmaa) Islands</option>
  426. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "AL") { echo " selected"; } ?> value="AL">Albania</option>
  427. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "DZ") { echo " selected"; } ?> value="DZ">Algeria</option>
  428. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "AS") { echo " selected"; } ?> value="AS">American Samoa</option>
  429. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "AD") { echo " selected"; } ?> value="AD">Andorra</option>
  430. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "AO") { echo " selected"; } ?> value="AO">Angola</option>
  431. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "AI") { echo " selected"; } ?> value="AI">Anguilla</option>
  432. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "AQ") { echo " selected"; } ?> value="AQ">Antarctica</option>
  433. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "AG") { echo " selected"; } ?> value="AG">Antigua & Barbuda</option>
  434. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "AR") { echo " selected"; } ?> value="AR">Argentina</option>
  435. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "AM") { echo " selected"; } ?> value="AM">Armenia</option>
  436. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "AW") { echo " selected"; } ?> value="AW">Aruba</option>
  437. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "AU") { echo " selected"; } ?> value="AU">Australia</option>
  438. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "AT") { echo " selected"; } ?> value="AT">Austria</option>
  439. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "AZ") { echo " selected"; } ?> value="AZ">Azerbaijan</option>
  440. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "BS") { echo " selected"; } ?> value="BS">Bahamas</option>
  441. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "BH") { echo " selected"; } ?> value="BH">Bahrain</option>
  442. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "BD") { echo " selected"; } ?> value="BD">Bangladesh</option>
  443. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "BB") { echo " selected"; } ?> value="BB">Barbados</option>
  444. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "BY") { echo " selected"; } ?> value="BY">Belarus</option>
  445. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "BE") { echo " selected"; } ?> value="BE">Belgium</option>
  446. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "BZ") { echo " selected"; } ?> value="BZ">Belize</option>
  447. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "BJ") { echo " selected"; } ?> value="BJ">Benin</option>
  448. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "BM") { echo " selected"; } ?> value="BM">Bermuda</option>
  449. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "BT") { echo " selected"; } ?> value="BT">Bhutan</option>
  450. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "BO") { echo " selected"; } ?> value="BO">Bolivia</option>
  451. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "BA") { echo " selected"; } ?> value="BA">Bosnia & Herzegovina</option>
  452. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "BW") { echo " selected"; } ?> value="BW">Botswana</option>
  453. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "BV") { echo " selected"; } ?> value="BV">Bouvet Island</option>
  454. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "BR") { echo " selected"; } ?> value="BR">Brazil</option>
  455. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "IO") { echo " selected"; } ?> value="IO">British Indian Ocean Territory</option>
  456. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "BN") { echo " selected"; } ?> value="BN">Brunei Darussalam</option>
  457. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "BG") { echo " selected"; } ?> value="BG">Bulgaria</option>
  458. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "BF") { echo " selected"; } ?> value="BF">Burkina Faso</option>
  459. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "BI") { echo " selected"; } ?> value="BI">Burundi</option>
  460. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "KH") { echo " selected"; } ?> value="KH">Cambodia</option>
  461. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "CM") { echo " selected"; } ?> value="CM">Cameroon</option>
  462. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "CA") { echo " selected"; } ?> value="CA">Canada</option>
  463. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "CV") { echo " selected"; } ?> value="CV">Cape Verde</option>
  464. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "KY") { echo " selected"; } ?> value="KY">Cayman Islands</option>
  465. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "CF") { echo " selected"; } ?> value="CF">Central African Republic</option>
  466. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "TD") { echo " selected"; } ?> value="TD">Chad</option>
  467. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "CL") { echo " selected"; } ?> value="CL">Chile</option>
  468. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "CN") { echo " selected"; } ?> value="CN">China</option>
  469. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "CX") { echo " selected"; } ?> value="CX">Christmas Island</option>
  470. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "CC") { echo " selected"; } ?> value="CC">Cocos (Keeling) Islands</option>
  471. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "CO") { echo " selected"; } ?> value="CO">Colombia</option>
  472. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "KM") { echo " selected"; } ?> value="KM">Comoros</option>
  473. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "CG") { echo " selected"; } ?> value="CG">Congo</option>
  474. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "CD") { echo " selected"; } ?> value="CD">Congo (Democratic Republic)</option>
  475. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "CK") { echo " selected"; } ?> value="CK">Cook Islands</option>
  476. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "CR") { echo " selected"; } ?> value="CR">Costa Rica</option>
  477. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "CI") { echo " selected"; } ?> value="CI">Cote D'Ivoire</option>
  478. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "HR") { echo " selected"; } ?> value="HR">Croatia</option>
  479. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "CU") { echo " selected"; } ?> value="CU">Cuba</option>
  480. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "CY") { echo " selected"; } ?> value="CY">Cyprus</option>
  481. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "CZ") { echo " selected"; } ?> value="CZ">Czech Republic</option>
  482. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "DK") { echo " selected"; } ?> value="DK">Denmark</option>
  483. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "DJ") { echo " selected"; } ?> value="DJ">Djibouti</option>
  484. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "DM") { echo " selected"; } ?> value="DM">Dominica</option>
  485. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "DO") { echo " selected"; } ?> value="DO">Dominican Republic</option>
  486. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "EC") { echo " selected"; } ?> value="EC">Ecuador</option>
  487. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "EG") { echo " selected"; } ?> value="EG">Egypt</option>
  488. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "SV") { echo " selected"; } ?> value="SV">El Salvador</option>
  489. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "GQ") { echo " selected"; } ?> value="GQ">Equatorial Guinea</option>
  490. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "ER") { echo " selected"; } ?> value="ER">Eritrea</option>
  491. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "EE") { echo " selected"; } ?> value="EE">Estonia</option>
  492. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "ET") { echo " selected"; } ?> value="ET">Ethiopia</option>
  493. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "FK") { echo " selected"; } ?> value="FK">Falkland Islands (Malvinas)</option>
  494. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "FO") { echo " selected"; } ?> value="FO">Faroe Islands</option>
  495. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "FJ") { echo " selected"; } ?> value="FJ">Fiji</option>
  496. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "FI") { echo " selected"; } ?> value="FI">Finland</option>
  497. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "FR") { echo " selected"; } ?> value="FR">France</option>
  498. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "GF") { echo " selected"; } ?> value="GF">French Guiana</option>
  499. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "PF") { echo " selected"; } ?> value="PF">French Polynesia</option>
  500. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "TF") { echo " selected"; } ?> value="TF">French Southern Territories</option>
  501. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "GA") { echo " selected"; } ?> value="GA">Gabon</option>
  502. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "GM") { echo " selected"; } ?> value="GM">Gambia</option>
  503. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "GE") { echo " selected"; } ?> value="GE">Georgia</option>
  504. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "DE") { echo " selected"; } ?> value="DE">Germany</option>
  505. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "GH") { echo " selected"; } ?> value="GH">Ghana</option>
  506. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "GI") { echo " selected"; } ?> value="GI">Gibraltar</option>
  507. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "GR") { echo " selected"; } ?> value="GR">Greece</option>
  508. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "GL") { echo " selected"; } ?> value="GL">Greenland</option>
  509. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "GD") { echo " selected"; } ?> value="GD">Grenada</option>
  510. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "GP") { echo " selected"; } ?> value="GP">Guadeloupe</option>
  511. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "GU") { echo " selected"; } ?> value="GU">Guam</option>
  512. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "GT") { echo " selected"; } ?> value="GT">Guatemala</option>
  513. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "GG") { echo " selected"; } ?> value="GG">Guernsey</option>
  514. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "GN") { echo " selected"; } ?> value="GN">Guinea</option>
  515. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "GW") { echo " selected"; } ?> value="GW">Guinea-Bissau</option>
  516. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "GY") { echo " selected"; } ?> value="GY">Guyana</option>
  517. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "HT") { echo " selected"; } ?> value="HT">Haiti</option>
  518. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "HM") { echo " selected"; } ?> value="HM">Heard Island & Mcdonald Islands</option>
  519. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "VA") { echo " selected"; } ?> value="VA">Holy See (Vatican City State)</option>
  520. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "HN") { echo " selected"; } ?> value="HN">Honduras</option>
  521. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "HK") { echo " selected"; } ?> value="HK">Hong Kong</option>
  522. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "HU") { echo " selected"; } ?> value="HU">Hungary</option>
  523. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "IS") { echo " selected"; } ?> value="IS">Iceland</option>
  524. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "IN") { echo " selected"; } ?> value="IN">India</option>
  525. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "ID") { echo " selected"; } ?> value="ID">Indonesia</option>
  526. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "IR") { echo " selected"; } ?> value="IR">Iran (Islamic Republic)</option>
  527. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "IQ") { echo " selected"; } ?> value="IQ">Iraq</option>
  528. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "IE") { echo " selected"; } ?> value="IE">Ireland</option>
  529. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "IM") { echo " selected"; } ?> value="IM">Isle Of Man</option>
  530. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "IL") { echo " selected"; } ?> value="IL">Israel</option>
  531. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "IT") { echo " selected"; } ?> value="IT">Italy</option>
  532. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "JM") { echo " selected"; } ?> value="JM">Jamaica</option>
  533. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "JP") { echo " selected"; } ?> value="JP">Japan</option>
  534. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "JE") { echo " selected"; } ?> value="JE">Jersey</option>
  535. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "JO") { echo " selected"; } ?> value="JO">Jordan</option>
  536. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "KZ") { echo " selected"; } ?> value="KZ">Kazakhstan</option>
  537. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "KE") { echo " selected"; } ?> value="KE">Kenya</option>
  538. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "KI") { echo " selected"; } ?> value="KI">Kiribati</option>
  539. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "KP") { echo " selected"; } ?> value="KP">Korea (Democratic People's Republic)</option>
  540. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "KR") { echo " selected"; } ?> value="KR">Korea (Republic)</option>
  541. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "KW") { echo " selected"; } ?> value="KW">Kuwait</option>
  542. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "KG") { echo " selected"; } ?> value="KG">Kyrgyzstan</option>
  543. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "LA") { echo " selected"; } ?> value="LA">Laos</option>
  544. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "LV") { echo " selected"; } ?> value="LV">Latvia</option>
  545. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "LB") { echo " selected"; } ?> value="LB">Lebanon</option>
  546. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "LS") { echo " selected"; } ?> value="LS">Lesotho</option>
  547. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "LR") { echo " selected"; } ?> value="LR">Liberia</option>
  548. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "LY") { echo " selected"; } ?> value="LY">Libyan Arab Jamahiriya</option>
  549. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "LI") { echo " selected"; } ?> value="LI">Liechtenstein</option>
  550. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "LT") { echo " selected"; } ?> value="LT">Lithuania</option>
  551. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "LU") { echo " selected"; } ?> value="LU">Luxembourg</option>
  552. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "MO") { echo " selected"; } ?> value="MO">Macao</option>
  553. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "MK") { echo " selected"; } ?> value="MK">Macedonia (Yugoslav Republic)</option>
  554. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "MG") { echo " selected"; } ?> value="MG">Madagascar</option>
  555. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "MW") { echo " selected"; } ?> value="MW">Malawi</option>
  556. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "MY") { echo " selected"; } ?> value="MY">Malaysia</option>
  557. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "MV") { echo " selected"; } ?> value="MV">Maldives</option>
  558. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "ML") { echo " selected"; } ?> value="ML">Mali</option>
  559. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "MT") { echo " selected"; } ?> value="MT">Malta</option>
  560. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "MH") { echo " selected"; } ?> value="MH">Marshall Islands</option>
  561. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "MQ") { echo " selected"; } ?> value="MQ">Martinique</option>
  562. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "MR") { echo " selected"; } ?> value="MR">Mauritania</option>
  563. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "MU") { echo " selected"; } ?> value="MU">Mauritius</option>
  564. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "YT") { echo " selected"; } ?> value="YT">Mayotte</option>
  565. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "MX") { echo " selected"; } ?> value="MX">Mexico</option>
  566. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "FM") { echo " selected"; } ?> value="FM">Micronesia (Federated States)</option>
  567. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "MD") { echo " selected"; } ?> value="MD">Moldova (Republic)</option>
  568. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "MC") { echo " selected"; } ?> value="MC">Monaco</option>
  569. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "MN") { echo " selected"; } ?> value="MN">Mongolia</option>
  570. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "MS") { echo " selected"; } ?> value="MS">Montserrat</option>
  571. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "MA") { echo " selected"; } ?> value="MA">Morocco</option>
  572. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "MZ") { echo " selected"; } ?> value="MZ">Mozambique</option>
  573. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "MM") { echo " selected"; } ?> value="MM">Myanmar</option>
  574. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "NA") { echo " selected"; } ?> value="NA">Namibia</option>
  575. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "NR") { echo " selected"; } ?> value="NR">Nauru</option>
  576. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "NP") { echo " selected"; } ?> value="NP">Nepal</option>
  577. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "NL") { echo " selected"; } ?> value="NL">Netherlands</option>
  578. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "AN") { echo " selected"; } ?> value="AN">Netherlands Antilles</option>
  579. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "NC") { echo " selected"; } ?> value="NC">New Caledonia</option>
  580. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "NZ") { echo " selected"; } ?> value="NZ">New Zealand</option>
  581. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "NI") { echo " selected"; } ?> value="NI">Nicaragua</option>
  582. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "NE") { echo " selected"; } ?> value="NE">Niger</option>
  583. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "NG") { echo " selected"; } ?> value="NG">Nigeria</option>
  584. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "NU") { echo " selected"; } ?> value="NU">Niue</option>
  585. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "NF") { echo " selected"; } ?> value="NF">Norfolk Island</option>
  586. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "MP") { echo " selected"; } ?> value="MP">Northern Mariana Islands</option>
  587. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "NO") { echo " selected"; } ?> value="NO">Norway</option>
  588. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "OM") { echo " selected"; } ?> value="OM">Oman</option>
  589. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "PK") { echo " selected"; } ?> value="PK">Pakistan</option>
  590. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "PW") { echo " selected"; } ?> value="PW">Palau</option>
  591. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "PS") { echo " selected"; } ?> value="PS">Palestinian Territory</option>
  592. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "PA") { echo " selected"; } ?> value="PA">Panama</option>
  593. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "PG") { echo " selected"; } ?> value="PG">Papua New Guinea</option>
  594. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "PY") { echo " selected"; } ?> value="PY">Paraguay</option>
  595. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "PE") { echo " selected"; } ?> value="PE">Peru</option>
  596. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "PH") { echo " selected"; } ?> value="PH">Philippines</option>
  597. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "PN") { echo " selected"; } ?> value="PN">Pitcairn</option>
  598. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "PL") { echo " selected"; } ?> value="PL">Poland</option>
  599. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "PT") { echo " selected"; } ?> value="PT">Portugal</option>
  600. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "PR") { echo " selected"; } ?> value="PR">Puerto Rico</option>
  601. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "QA") { echo " selected"; } ?> value="QA">Qatar</option>
  602. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "RE") { echo " selected"; } ?> value="RE">Reunion</option>
  603. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "RO") { echo " selected"; } ?> value="RO">Romania</option>
  604. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "RU") { echo " selected"; } ?> value="RU">Russian Federation</option>
  605. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "RW") { echo " selected"; } ?> value="RW">Rwanda</option>
  606. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "SH") { echo " selected"; } ?> value="SH">Saint Helena</option>
  607. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "KN") { echo " selected"; } ?> value="KN">Saint Kitts & Nevis</option>
  608. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "LC") { echo " selected"; } ?> value="LC">Saint Lucia</option>
  609. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "PM") { echo " selected"; } ?> value="PM">Saint Pierre & Miquelon</option>
  610. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "VC") { echo " selected"; } ?> value="VC">Saint Vincent & The Grenadines</option>
  611. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "WS") { echo " selected"; } ?> value="WS">Samoa</option>
  612. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "SM") { echo " selected"; } ?> value="SM">San Marino</option>
  613. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "ST") { echo " selected"; } ?> value="ST">Sao Tome & Principe</option>
  614. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "SA") { echo " selected"; } ?> value="SA">Saudi Arabia</option>
  615. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "SN") { echo " selected"; } ?> value="SN">Senegal</option>
  616. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "CS") { echo " selected"; } ?> value="CS">Serbia & Montenegro</option>
  617. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "SC") { echo " selected"; } ?> value="SC">Seychelles</option>
  618. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "SL") { echo " selected"; } ?> value="SL">Sierra Leone</option>
  619. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "SG") { echo " selected"; } ?> value="SG">Singapore</option>
  620. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "SK") { echo " selected"; } ?> value="SK">Slovakia</option>
  621. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "SI") { echo " selected"; } ?> value="SI">Slovenia</option>
  622. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "SB") { echo " selected"; } ?> value="SB">Solomon Islands</option>
  623. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "SO") { echo " selected"; } ?> value="SO">Somalia</option>
  624. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "ZA") { echo " selected"; } ?> value="ZA">South Africa</option>
  625. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "GS") { echo " selected"; } ?> value="GS">South Georgia & The South Sandwich Islands</option>
  626. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "ES") { echo " selected"; } ?> value="ES">Spain</option>
  627. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "LK") { echo " selected"; } ?> value="LK">Sri Lanka</option>
  628. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "SD") { echo " selected"; } ?> value="SD">Sudan</option>
  629. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "SR") { echo " selected"; } ?> value="SR">Suriname</option>
  630. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "SJ") { echo " selected"; } ?> value="SJ">Svalbard & Jan Mayen</option>
  631. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "SZ") { echo " selected"; } ?> value="SZ">Swaziland</option>
  632. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "SE") { echo " selected"; } ?> value="SE">Sweden</option>
  633. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "CH") { echo " selected"; } ?> value="CH">Switzerland</option>
  634. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "SY") { echo " selected"; } ?> value="SY">Syrian Arab Republic</option>
  635. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "TW") { echo " selected"; } ?> value="TW">Taiwan</option>
  636. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "TJ") { echo " selected"; } ?> value="TJ">Tajikistan</option>
  637. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "TZ") { echo " selected"; } ?> value="TZ">Tanzania (United Republic)</option>
  638. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "TH") { echo " selected"; } ?> value="TH">Thailand</option>
  639. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "TL") { echo " selected"; } ?> value="TL">Timor-Leste</option>
  640. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "TG") { echo " selected"; } ?> value="TG">Togo</option>
  641. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "TK") { echo " selected"; } ?> value="TK">Tokelau</option>
  642. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "TO") { echo " selected"; } ?> value="TO">Tonga</option>
  643. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "TT") { echo " selected"; } ?> value="TT">Trinidad & Tobago</option>
  644. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "TN") { echo " selected"; } ?> value="TN">Tunisia</option>
  645. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "TR") { echo " selected"; } ?> value="TR">Turkey</option>
  646. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "TM") { echo " selected"; } ?> value="TM">Turkmenistan</option>
  647. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "TC") { echo " selected"; } ?> value="TC">Turks & Caicos Islands</option>
  648. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "TV") { echo " selected"; } ?> value="TV">Tuvalu</option>
  649. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "UG") { echo " selected"; } ?> value="UG">Uganda</option>
  650. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "UA") { echo " selected"; } ?> value="UA">Ukraine</option>
  651. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "AE") { echo " selected"; } ?> value="AE">United Arab Emirates</option>
  652. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "GB") { echo " selected"; } ?> value="GB">United Kingdom</option>
  653. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "US") { echo " selected"; } ?> value="US">United States</option>
  654. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "UM") { echo " selected"; } ?> value="UM">United States Minor Outlying Islands</option>
  655. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "UY") { echo " selected"; } ?> value="UY">Uruguay</option>
  656. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "UZ") { echo " selected"; } ?> value="UZ">Uzbekistan</option>
  657. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "VU") { echo " selected"; } ?> value="VU">Vanuatu</option>
  658. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "VE") { echo " selected"; } ?> value="VE">Venezuela</option>
  659. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "VN") { echo " selected"; } ?> value="VN">Vietnam</option>
  660. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "VG") { echo " selected"; } ?> value="VG">Virgin Islands (British)</option>
  661. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "VI") { echo " selected"; } ?> value="VI">Virgin Islands (US)</option>
  662. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "WF") { echo " selected"; } ?> value="WF">Wallis & Futuna</option>
  663. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "EH") { echo " selected"; } ?> value="EH">Western Sahara</option>
  664. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "YE") { echo " selected"; } ?> value="YE">Yemen</option>
  665. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "ZM") { echo " selected"; } ?> value="ZM">Zambia</option>
  666. <option<?php if (file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/country.txt") == "ZW") { echo " selected"; } ?> value="ZW">Zimbabwe</option>
  667. </select>
  668.  
  669. </td></tr>
  670.  
  671. <tr><td bgcolor="#ffffff">city or municipality</td><td bgcolor="#ffffff" colspan="2"><input required class="input" type="text" autocomplete="off" name="city" maxlength="100" <?php if (file_exists("$maj_data_directory/members/active/$maj_logged_in_username/city.txt")) { echo "value=\""; readfile("$maj_data_directory/members/active/$maj_logged_in_username/city.txt");echo "\"";  } ?>></td></tr>
  672.  
  673. <?php if (file_exists("$maj_data_directory/bb.txt") and file_exists("$maj_data_directory/bb-sig.txt")) { ?>
  674.  
  675. <tr><td bgcolor="#ffffff">signature</td><td bgcolor="#ffffff" colspan="2"><textarea class="input" name="sig"><?php if (file_exists("$maj_data_directory/members/active/$maj_logged_in_username/sig.txt")) {
  676.  
  677.         $get_sig = file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/sig.txt");
  678.         $get_sig = str_replace("<b>","[b]",$get_sig);
  679.         $get_sig = str_replace("</b>","[/b]",$get_sig);
  680.         $get_sig = str_replace("<i>","[i]",$get_sig);
  681.         $get_sig = str_replace("</i>","[/i]",$get_sig);
  682.         $get_sig = str_replace("<u>","[u]",$get_sig);
  683.         $get_sig = str_replace("</u>","[/u]",$get_sig);
  684.         $get_sig = str_replace("<sup>","[sup]",$get_sig);
  685.         $get_sig = str_replace("</sup>","[/sup]",$get_sig);
  686.         $get_sig = str_replace("<sub>","[sub]",$get_sig);
  687.         $get_sig = str_replace("</sub>","[/sub]",$get_sig);
  688.         $get_sig = str_replace("<strike>","[strike]",$get_sig);
  689.         $get_sig = str_replace("</strike>","[/strike]",$get_sig);
  690.         $get_sig = str_replace("<br>","\n",$get_sig);
  691.  
  692.         echo $get_sig;
  693.  
  694. } ?></textarea></td></tr>
  695.  
  696. <?php
  697.  
  698. }
  699.  
  700. if (file_exists("$maj_data_directory/avatar.txt")) {
  701.  
  702. ?>
  703.  
  704. <tr><td bgcolor="#ffffff">upload avatar</td><td bgcolor="#ffffff" colspan="2"><input type="file" autocomplete="off" name="avatar"></td></tr>
  705. <?php
  706.  
  707. }
  708.  
  709. if (file_exists("$maj_data_directory/avatar.txt") and (file_exists("$maj_image_directory/members/$maj_logged_in_username/avatar.gif") or file_exists("$maj_image_directory/members/$maj_logged_in_username/avatar.jpg") or file_exists("$maj_image_directory/members/$maj_logged_in_username/avatar.png"))) { ?>
  710. <tr><td bgcolor="#ffffff"></td><td bgcolor="#ffffff" colspan="2"><table border="0" cellspacing="0" cellpadding="0"><tr><td><input type="checkbox" name="del_avatar"></td><td>delete existing avatar</td></tr></table></td></tr>
  711. <?php } if (file_exists("$maj_data_directory/ml.txt") and !file_exists("$maj_data_directory/members/active/$maj_logged_in_username/key.txt")) { ?>
  712. <tr><td bgcolor="#ffffff"></td><td bgcolor="#ffffff" colspan="2"><table border="0" cellspacing="0" cellpadding="0"><tr><td><input type="checkbox" name="vacation" <?php if (file_exists("$maj_data_directory/members/active/$maj_logged_in_username/bb-vacation.txt")) { echo checked; } ?>></td><td>temporarily disable mailing list subscription</td></tr></table></td></tr>
  713. <?php } ?>
  714.  
  715. <?php if (!file_exists("$maj_data_directory/members/active/$maj_logged_in_username/bday.txt")) { ?>
  716. <tr><td bgcolor="#ffffff">birthdate (YYYYMMDD)</td><td bgcolor="#ffffff" colspan="2"><input class="input" type="text" autocomplete="off" name="bday" maxlength="8" value="<?php echo date("Ymd", time() + $maj_offset); ?>"></td></tr>
  717. <?php } ?>
  718.  
  719. <tr><td bgcolor="#ffffff">current password</td><td bgcolor="#ffffff" colspan="2"><input class="input" type="password" autocomplete="off" name="current_passwd" maxlength="30"></td></tr>
  720. <tr><td bgcolor="#ffffff">new password</td><td bgcolor="#ffffff" width="300"><input class="input" type="password" autocomplete="off" name="new_passwd" maxlength="30"></td></tr>
  721. <tr><td bgcolor="#ffffff">confirm password</td><td bgcolor="#ffffff"><input class="input" type="password" autocomplete="off" name="confirm_passwd" maxlength="30"></td></tr>
  722. <tr><td bgcolor="#ffffff"></td><td bgcolor="#ffffff"><input class="click" type="submit" value="click here to activate new settings"></td></tr>
  723. </form>
  724. <form enctype="multipart/form-data" action="<?php echo 'http://' . $_SERVER['HTTP_HOST'] . dirname($_SERVER['PHP_SELF']); ?>" method="post">
  725. <tr><td bgcolor="#ffffff"></td><td bgcolor="#ffffff"><input class="click" type="submit" value="click here to go to the index page"></td></tr>
  726. </form>
  727. </table>
  728.  
filedropmaj.git-01822e4.tar.bz2
147.95 KB
62 downloads
filedropmaj.git-01822e4.zip
201.96 KB
19 downloads
filedropmaj.git-0291349.tar.bz2
152.85 KB
60 downloads
filedropmaj.git-0291349.zip
211.90 KB
19 downloads
filedropmaj.git-02cb3b7.tar.bz2
151.48 KB
63 downloads
filedropmaj.git-02cb3b7.zip
209.82 KB
19 downloads
filedropmaj.git-0811dd5.tar.bz2
152.90 KB
60 downloads
filedropmaj.git-0811dd5.zip
211.90 KB
18 downloads
filedropmaj.git-083625f.tar.bz2
132.92 KB
59 downloads
filedropmaj.git-083625f.zip
179.59 KB
20 downloads
filedropmaj.git-0885d7b.tar.bz2
92.63 KB
60 downloads
filedropmaj.git-0885d7b.zip
132.34 KB
17 downloads
filedropmaj.git-09c6f33.tar.bz2
151.51 KB
59 downloads
filedropmaj.git-09c6f33.zip
202.12 KB
18 downloads
filedropmaj.git-0b26a85.tar.bz2
151.44 KB
57 downloads
filedropmaj.git-0b26a85.zip
209.75 KB
16 downloads
filedropmaj.git-0b32424.tar.bz2
151.66 KB
58 downloads
filedropmaj.git-0b32424.zip
206.72 KB
17 downloads
filedropmaj.git-0f3ac59.tar.bz2
152.14 KB
57 downloads
filedropmaj.git-0f3ac59.zip
211.45 KB
13 downloads
filedropmaj.git-11d4582.tar.bz2
143.02 KB
55 downloads
filedropmaj.git-11d4582.zip
195.12 KB
12 downloads
filedropmaj.git-17f105a.tar.bz2
137.96 KB
53 downloads
filedropmaj.git-17f105a.zip
193.02 KB
13 downloads
filedropmaj.git-183270b.tar.bz2
137.54 KB
57 downloads
filedropmaj.git-183270b.zip
187.93 KB
13 downloads
filedropmaj.git-197a49d.tar.bz2
152.03 KB
55 downloads
filedropmaj.git-197a49d.zip
211.32 KB
16 downloads
filedropmaj.git-1b9af25.tar.bz2
152.87 KB
53 downloads
filedropmaj.git-1b9af25.zip
211.96 KB
14 downloads
filedropmaj.git-1be2914.tar.bz2
149.30 KB
55 downloads
filedropmaj.git-1be2914.zip
203.09 KB
13 downloads
filedropmaj.git-1bed800.tar.bz2
138.15 KB
51 downloads
filedropmaj.git-1bed800.zip
190.15 KB
17 downloads
filedropmaj.git-1d330de.tar.bz2
151.65 KB
54 downloads
filedropmaj.git-1d330de.zip
210.80 KB
15 downloads
filedropmaj.git-1df190d.tar.bz2
151.72 KB
55 downloads
filedropmaj.git-1df190d.zip
210.85 KB
13 downloads
filedropmaj.git-1ee1167.tar.bz2
151.52 KB
56 downloads
filedropmaj.git-1ee1167.zip
202.16 KB
14 downloads
filedropmaj.git-2057838.tar.bz2
151.76 KB
52 downloads
filedropmaj.git-2057838.zip
202.36 KB
14 downloads
filedropmaj.git-2075213.tar.bz2
155.81 KB
52 downloads
filedropmaj.git-2075213.zip
208.39 KB
13 downloads
filedropmaj.git-211b7b0.tar.bz2
142.53 KB
55 downloads
filedropmaj.git-211b7b0.zip
194.64 KB
14 downloads
filedropmaj.git-2331f5a.tar.bz2
75.55 KB
55 downloads
filedropmaj.git-2331f5a.zip
100.32 KB
16 downloads
filedropmaj.git-25e3c4c.tar.bz2
147.57 KB
53 downloads
filedropmaj.git-25e3c4c.zip
201.46 KB
13 downloads
filedropmaj.git-2622313.tar.bz2
151.47 KB
50 downloads
filedropmaj.git-2622313.zip
206.44 KB
12 downloads
filedropmaj.git-273e4b2.tar.bz2
152.60 KB
52 downloads
filedropmaj.git-273e4b2.zip
203.40 KB
15 downloads
filedropmaj.git-2753e51.tar.bz2
136.37 KB
55 downloads
filedropmaj.git-2753e51.zip
184.34 KB
12 downloads
filedropmaj.git-2c1a589.tar.bz2
155.89 KB
49 downloads
filedropmaj.git-2c1a589.zip
208.69 KB
13 downloads
filedropmaj.git-2c3d544.tar.bz2
151.33 KB
51 downloads
filedropmaj.git-2c3d544.zip
206.23 KB
14 downloads
filedropmaj.git-2c85f72.tar.bz2
143.23 KB
50 downloads
filedropmaj.git-2c85f72.zip
194.84 KB
12 downloads
filedropmaj.git-2dc622c.tar.bz2
151.76 KB
48 downloads
filedropmaj.git-2dc622c.zip
202.35 KB
14 downloads
filedropmaj.git-2fabf8a.tar.bz2
151.35 KB
53 downloads
filedropmaj.git-2fabf8a.zip
206.24 KB
15 downloads
filedropmaj.git-322736b.tar.bz2
137.81 KB
45 downloads
filedropmaj.git-322736b.zip
190.18 KB
13 downloads
filedropmaj.git-374279c.tar.bz2
137.54 KB
46 downloads
filedropmaj.git-374279c.zip
189.58 KB
12 downloads
filedropmaj.git-37e852d.tar.bz2
151.32 KB
42 downloads
filedropmaj.git-37e852d.zip
206.21 KB
11 downloads
filedropmaj.git-38636de.tar.bz2
147.35 KB
42 downloads
filedropmaj.git-38636de.zip
201.16 KB
69 downloads
filedropmaj.git-3b25d71.tar.bz2
147.88 KB
35 downloads
filedropmaj.git-3b25d71.zip
201.85 KB
14 downloads
filedropmaj.git-3b6df7a.tar.bz2
153.39 KB
33 downloads
filedropmaj.git-3b6df7a.zip
204.55 KB
17 downloads
filedropmaj.git-3bf6bd2.tar.bz2
137.77 KB
38 downloads
filedropmaj.git-3bf6bd2.zip
190.16 KB
14 downloads
filedropmaj.git-3e012ff.tar.bz2
152.83 KB
34 downloads
filedropmaj.git-3e012ff.zip
211.89 KB
16 downloads
filedropmaj.git-4129ab8.tar.bz2
135.86 KB
42 downloads
filedropmaj.git-4129ab8.zip
184.30 KB
14 downloads
filedropmaj.git-414dbb4.tar.bz2
91.09 KB
40 downloads
filedropmaj.git-414dbb4.zip
130.29 KB
14 downloads
filedropmaj.git-43755d0.tar.bz2
150.25 KB
33 downloads
filedropmaj.git-43755d0.zip
204.44 KB
14 downloads
filedropmaj.git-4c20005.tar.bz2
55.59 KB
37 downloads
filedropmaj.git-4c20005.zip
74.20 KB
14 downloads
filedropmaj.git-4ccdbcd.tar.bz2
136.38 KB
38 downloads
filedropmaj.git-4ccdbcd.zip
185.22 KB
16 downloads
filedropmaj.git-4cd1a1c.tar.bz2
155.25 KB
35 downloads
filedropmaj.git-4cd1a1c.zip
207.88 KB
16 downloads
filedropmaj.git-4cf16d1.tar.bz2
76.32 KB
38 downloads
filedropmaj.git-4cf16d1.zip
101.80 KB
12 downloads
filedropmaj.git-4ec45a0.tar.bz2
131.16 KB
35 downloads
filedropmaj.git-4ec45a0.zip
172.66 KB
14 downloads
filedropmaj.git-4f73c22.tar.bz2
134.46 KB
35 downloads
filedropmaj.git-4f73c22.zip
182.45 KB
13 downloads
filedropmaj.git-5457969.tar.bz2
155.21 KB
38 downloads
filedropmaj.git-5457969.zip
207.63 KB
14 downloads
filedropmaj.git-57ee8a1.tar.bz2
145.49 KB
38 downloads
filedropmaj.git-57ee8a1.zip
198.12 KB
66 downloads
filedropmaj.git-592978d.tar.bz2
138.38 KB
36 downloads
filedropmaj.git-592978d.zip
190.58 KB
13 downloads
filedropmaj.git-5935b42.tar.bz2
135.60 KB
34 downloads
filedropmaj.git-5935b42.zip
183.28 KB
15 downloads
filedropmaj.git-5b443b6.tar.bz2
152.00 KB
36 downloads
filedropmaj.git-5b443b6.zip
211.07 KB
13 downloads
filedropmaj.git-5b4a9bf.tar.bz2
155.29 KB
34 downloads
filedropmaj.git-5b4a9bf.zip
207.93 KB
12 downloads
filedropmaj.git-5b6c01d.tar.bz2
147.13 KB
35 downloads
filedropmaj.git-5b6c01d.zip
200.86 KB
16 downloads
filedropmaj.git-5da45f7.tar.bz2
147.27 KB
36 downloads
filedropmaj.git-5da45f7.zip
201.02 KB
13 downloads
filedropmaj.git-5e53618.tar.bz2
75.57 KB
38 downloads
filedropmaj.git-5e53618.zip
100.78 KB
14 downloads
filedropmaj.git-5f8ca35.tar.bz2
136.39 KB
33 downloads
filedropmaj.git-5f8ca35.zip
185.32 KB
13 downloads
filedropmaj.git-61e3d7b.tar.bz2
153.52 KB
33 downloads
filedropmaj.git-61e3d7b.zip
204.73 KB
15 downloads
filedropmaj.git-62a635c.tar.bz2
155.90 KB
37 downloads
filedropmaj.git-62a635c.zip
208.73 KB
14 downloads
filedropmaj.git-6390d34.tar.bz2
138.39 KB
37 downloads
filedropmaj.git-6390d34.zip
190.56 KB
17 downloads
filedropmaj.git-649dfbe.tar.bz2
151.78 KB
37 downloads
filedropmaj.git-649dfbe.zip
210.91 KB
14 downloads
filedropmaj.git-65d6570.tar.bz2
151.63 KB
39 downloads
filedropmaj.git-65d6570.zip
210.80 KB
16 downloads
filedropmaj.git-660433f.tar.bz2
151.67 KB
36 downloads
filedropmaj.git-660433f.zip
206.68 KB
14 downloads
filedropmaj.git-6619ae5.tar.bz2
153.23 KB
46 downloads
filedropmaj.git-6619ae5.zip
204.28 KB
13 downloads
filedropmaj.git-68e4e3a.tar.bz2
135.13 KB
34 downloads
filedropmaj.git-68e4e3a.zip
182.91 KB
13 downloads
filedropmaj.git-6995297.tar.bz2
144.93 KB
38 downloads
filedropmaj.git-6995297.zip
197.18 KB
12 downloads
filedropmaj.git-69d6fd3.tar.bz2
143.23 KB
34 downloads
filedropmaj.git-69d6fd3.zip
194.89 KB
16 downloads
filedropmaj.git-6aa872a.tar.bz2
142.95 KB
39 downloads
filedropmaj.git-6aa872a.zip
195.11 KB
15 downloads
filedropmaj.git-6bad5c7.tar.bz2
147.04 KB
38 downloads
filedropmaj.git-6bad5c7.zip
200.79 KB
14 downloads
filedropmaj.git-6e96a2d.tar.bz2
152.13 KB
37 downloads
filedropmaj.git-6e96a2d.zip
207.21 KB
67 downloads
filedropmaj.git-73d46de.tar.bz2
138.42 KB
36 downloads
filedropmaj.git-73d46de.zip
190.59 KB
13 downloads
filedropmaj.git-75e0478.tar.bz2
144.54 KB
38 downloads
filedropmaj.git-75e0478.zip
196.70 KB
15 downloads
filedropmaj.git-784fc35.tar.bz2
143.07 KB
38 downloads
filedropmaj.git-784fc35.zip
195.01 KB
13 downloads
filedropmaj.git-7872a83.tar.bz2
138.51 KB
39 downloads
filedropmaj.git-7872a83.zip
190.69 KB
13 downloads
filedropmaj.git-788fb89.tar.bz2
138.30 KB
37 downloads
filedropmaj.git-788fb89.zip
191.26 KB
18 downloads
filedropmaj.git-796d8a3.tar.bz2
138.92 KB
35 downloads
filedropmaj.git-796d8a3.zip
191.24 KB
13 downloads
filedropmaj.git-79a5e8d.tar.bz2
132.43 KB
38 downloads
filedropmaj.git-79a5e8d.zip
176.90 KB
14 downloads
filedropmaj.git-7b3b2e0.tar.bz2
147.24 KB
36 downloads
filedropmaj.git-7b3b2e0.zip
201.05 KB
14 downloads
filedropmaj.git-7e28eed.tar.bz2
138.89 KB
33 downloads
filedropmaj.git-7e28eed.zip
191.24 KB
14 downloads
filedropmaj.git-8279296.tar.bz2
135.56 KB
38 downloads
filedropmaj.git-8279296.zip
183.25 KB
14 downloads
filedropmaj.git-84c17fe.tar.bz2
152.87 KB
38 downloads
filedropmaj.git-84c17fe.zip
211.90 KB
14 downloads
filedropmaj.git-87c5d5f.tar.bz2
135.78 KB
36 downloads
filedropmaj.git-87c5d5f.zip
183.64 KB
12 downloads
filedropmaj.git-8a48901.tar.bz2
147.27 KB
39 downloads
filedropmaj.git-8a48901.zip
201.06 KB
14 downloads
filedropmaj.git-8ad9892.tar.bz2
164.04 KB
36 downloads
filedropmaj.git-8ad9892.zip
224.42 KB
13 downloads
filedropmaj.git-8b4cf2a.tar.bz2
134.06 KB
37 downloads
filedropmaj.git-8b4cf2a.zip
180.78 KB
14 downloads
filedropmaj.git-8b7e38d.tar.bz2
138.04 KB
41 downloads
filedropmaj.git-8b7e38d.zip
190.39 KB
70 downloads
filedropmaj.git-8df6e40.tar.bz2
143.11 KB
38 downloads
filedropmaj.git-8df6e40.zip
194.66 KB
18 downloads
filedropmaj.git-8e80c84.tar.bz2
138.18 KB
36 downloads
filedropmaj.git-8e80c84.zip
190.30 KB
14 downloads
filedropmaj.git-8ec0fba.tar.bz2
138.37 KB
39 downloads
filedropmaj.git-8ec0fba.zip
191.39 KB
14 downloads
filedropmaj.git-8f7abf6.tar.bz2
153.36 KB
38 downloads
filedropmaj.git-8f7abf6.zip
211.80 KB
13 downloads
filedropmaj.git-923f11a.tar.bz2
138.14 KB
36 downloads
filedropmaj.git-923f11a.zip
191.03 KB
15 downloads
filedropmaj.git-955e82e.tar.bz2
42.71 KB
35 downloads
filedropmaj.git-955e82e.zip
59.77 KB
14 downloads
filedropmaj.git-95add4a.tar.bz2
151.23 KB
40 downloads
filedropmaj.git-95add4a.zip
205.91 KB
14 downloads
filedropmaj.git-96fe0ba.tar.bz2
137.68 KB
32 downloads
filedropmaj.git-96fe0ba.zip
190.34 KB
13 downloads
filedropmaj.git-99a90ce.tar.bz2
137.82 KB
39 downloads
filedropmaj.git-99a90ce.zip
191.20 KB
16 downloads
filedropmaj.git-9a69bb9.tar.bz2
143.19 KB
39 downloads
filedropmaj.git-9a69bb9.zip
194.70 KB
15 downloads
filedropmaj.git-9b6538e.tar.bz2
151.45 KB
36 downloads
filedropmaj.git-9b6538e.zip
202.15 KB
13 downloads
filedropmaj.git-9c4292d.tar.bz2
132.06 KB
37 downloads
filedropmaj.git-9c4292d.zip
176.93 KB
13 downloads
filedropmaj.git-9c78d40.tar.bz2
137.70 KB
37 downloads
filedropmaj.git-9c78d40.zip
190.49 KB
15 downloads
filedropmaj.git-9f1363f.tar.bz2
43.12 KB
40 downloads
filedropmaj.git-9f1363f.zip
60.31 KB
13 downloads
filedropmaj.git-a16c3eb.tar.bz2
90.22 KB
34 downloads
filedropmaj.git-a16c3eb.zip
128.62 KB
14 downloads
filedropmaj.git-a3aa72d.tar.bz2
153.00 KB
37 downloads
filedropmaj.git-a3aa72d.zip
203.86 KB
16 downloads
filedropmaj.git-a6886e4.tar.bz2
144.69 KB
37 downloads
filedropmaj.git-a6886e4.zip
196.95 KB
13 downloads
filedropmaj.git-a8669dc.tar.bz2
135.60 KB
35 downloads
filedropmaj.git-a8669dc.zip
183.34 KB
14 downloads
filedropmaj.git-a9477f1.tar.bz2
135.59 KB
37 downloads
filedropmaj.git-a9477f1.zip
183.45 KB
14 downloads
filedropmaj.git-aa285db.tar.bz2
151.73 KB
38 downloads
filedropmaj.git-aa285db.zip
210.85 KB
14 downloads
filedropmaj.git-aa6ae87.tar.bz2
135.44 KB
37 downloads
filedropmaj.git-aa6ae87.zip
183.88 KB
14 downloads
filedropmaj.git-ab6bc22.tar.bz2
151.71 KB
33 downloads
filedropmaj.git-ab6bc22.zip
210.84 KB
16 downloads
filedropmaj.git-adef726.tar.bz2
153.48 KB
36 downloads
filedropmaj.git-adef726.zip
212.32 KB
14 downloads
filedropmaj.git-afe5877.tar.bz2
144.73 KB
32 downloads
filedropmaj.git-afe5877.zip
197.01 KB
13 downloads
filedropmaj.git-b2d9f8e.tar.bz2
133.22 KB
35 downloads
filedropmaj.git-b2d9f8e.zip
179.27 KB
13 downloads
filedropmaj.git-b41f320.tar.bz2
151.56 KB
33 downloads
filedropmaj.git-b41f320.zip
209.85 KB
18 downloads
filedropmaj.git-b4432ce.tar.bz2
152.96 KB
34 downloads
filedropmaj.git-b4432ce.zip
203.86 KB
14 downloads
filedropmaj.git-b67b08f.tar.bz2
151.27 KB
36 downloads
filedropmaj.git-b67b08f.zip
206.15 KB
16 downloads
filedropmaj.git-b899831.tar.bz2
143.12 KB
35 downloads
filedropmaj.git-b899831.zip
194.60 KB
14 downloads
filedropmaj.git-b8b49c1.tar.bz2
132.59 KB
33 downloads
filedropmaj.git-b8b49c1.zip
178.90 KB
13 downloads
filedropmaj.git-b9c5bcf.tar.bz2
155.92 KB
34 downloads
filedropmaj.git-b9c5bcf.zip
208.70 KB
12 downloads
filedropmaj.git-bbddb1f.tar.bz2
151.63 KB
33 downloads
filedropmaj.git-bbddb1f.zip
209.92 KB
16 downloads
filedropmaj.git-bcaa744.tar.bz2
146.98 KB
37 downloads
filedropmaj.git-bcaa744.zip
200.79 KB
15 downloads
filedropmaj.git-c1ff9dc.tar.bz2
138.39 KB
38 downloads
filedropmaj.git-c1ff9dc.zip
191.43 KB
97 downloads
filedropmaj.git-c20c4b0.tar.bz2
151.64 KB
35 downloads
filedropmaj.git-c20c4b0.zip
210.79 KB
13 downloads
filedropmaj.git-c37f3f7.tar.bz2
145.45 KB
49 downloads
filedropmaj.git-c37f3f7.zip
198.11 KB
22 downloads
filedropmaj.git-c532394.tar.bz2
146.39 KB
37 downloads
filedropmaj.git-c532394.zip
199.91 KB
15 downloads
filedropmaj.git-c6317a4.tar.bz2
152.01 KB
36 downloads
filedropmaj.git-c6317a4.zip
207.08 KB
13 downloads
filedropmaj.git-c748176.tar.bz2
89.44 KB
34 downloads
filedropmaj.git-c748176.zip
126.35 KB
14 downloads
filedropmaj.git-c9ed81f.tar.bz2
135.56 KB
34 downloads
filedropmaj.git-c9ed81f.zip
183.28 KB
16 downloads
filedropmaj.git-c9f9b80.tar.bz2
138.50 KB
34 downloads
filedropmaj.git-c9f9b80.zip
190.66 KB
15 downloads
filedropmaj.git-ca65b73.tar.bz2
152.69 KB
35 downloads
filedropmaj.git-ca65b73.zip
207.87 KB
15 downloads
filedropmaj.git-cd80b77.tar.bz2
153.12 KB
35 downloads
filedropmaj.git-cd80b77.zip
212.01 KB
12 downloads
filedropmaj.git-cffbb2a.tar.bz2
138.22 KB
33 downloads
filedropmaj.git-cffbb2a.zip
190.28 KB
14 downloads
filedropmaj.git-d061ad7.tar.bz2
55.78 KB
47 downloads
filedropmaj.git-d061ad7.zip
74.39 KB
15 downloads
filedropmaj.git-d0af4d6.tar.bz2
57.28 KB
35 downloads
filedropmaj.git-d0af4d6.zip
78.56 KB
15 downloads
filedropmaj.git-d1caa0a.tar.bz2
144.57 KB
37 downloads
filedropmaj.git-d1caa0a.zip
196.63 KB
14 downloads
filedropmaj.git-d5679b5.tar.bz2
152.37 KB
34 downloads
filedropmaj.git-d5679b5.zip
207.52 KB
15 downloads
filedropmaj.git-d72f459.tar.bz2
147.90 KB
36 downloads
filedropmaj.git-d72f459.zip
201.92 KB
13 downloads
filedropmaj.git-d958c91.tar.bz2
144.67 KB
37 downloads
filedropmaj.git-d958c91.zip
196.88 KB
17 downloads
filedropmaj.git-d96784f.tar.bz2
135.58 KB
36 downloads
filedropmaj.git-d96784f.zip
183.46 KB
12 downloads
filedropmaj.git-da4b73f.tar.bz2
152.62 KB
33 downloads
filedropmaj.git-da4b73f.zip
203.48 KB
13 downloads
filedropmaj.git-dd24240.tar.bz2
138.27 KB
33 downloads
filedropmaj.git-dd24240.zip
190.45 KB
72 downloads
filedropmaj.git-e11e772.tar.bz2
152.09 KB
33 downloads
filedropmaj.git-e11e772.zip
211.33 KB
14 downloads
filedropmaj.git-e61478e.tar.bz2
135.95 KB
37 downloads
filedropmaj.git-e61478e.zip
183.91 KB
14 downloads
filedropmaj.git-e7a2547.tar.bz2
133.80 KB
33 downloads
filedropmaj.git-e7a2547.zip
180.05 KB
16 downloads
filedropmaj.git-e8a3b95.tar.bz2
138.15 KB
37 downloads
filedropmaj.git-e8a3b95.zip
191.04 KB
12 downloads
filedropmaj.git-eac86d5.tar.bz2
155.65 KB
33 downloads
filedropmaj.git-eac86d5.zip
208.28 KB
12 downloads
filedropmaj.git-ed83bf9.tar.bz2
135.16 KB
34 downloads
filedropmaj.git-ed83bf9.zip
182.91 KB
15 downloads
filedropmaj.git-ee50d40.tar.bz2
135.59 KB
36 downloads
filedropmaj.git-ee50d40.zip
183.48 KB
16 downloads
filedropmaj.git-efdb4df.tar.bz2
155.87 KB
36 downloads
filedropmaj.git-efdb4df.zip
208.72 KB
14 downloads
filedropmaj.git-f1554f8.tar.bz2
151.30 KB
37 downloads
filedropmaj.git-f1554f8.zip
206.22 KB
16 downloads
filedropmaj.git-f72a07b.tar.bz2
153.44 KB
37 downloads
filedropmaj.git-f72a07b.zip
212.11 KB
17 downloads
filedropmaj.git-f7ea5a1.tar.bz2
147.46 KB
36 downloads
filedropmaj.git-f7ea5a1.zip
201.32 KB
17 downloads
filedropmaj.git-f8a7353.tar.bz2
138.49 KB
36 downloads
filedropmaj.git-f8a7353.zip
190.66 KB
18 downloads
filedropmaj.git-fb84a8d.tar.bz2
137.61 KB
41 downloads
filedropmaj.git-fb84a8d.zip
190.70 KB
18 downloads
filedropmaj.git-fdcf5d3.tar.bz2
152.34 KB
40 downloads
filedropmaj.git-fdcf5d3.zip
207.53 KB
17 downloads
filedropmaj.git-feca42d.tar.bz2
132.90 KB
38 downloads
filedropmaj.git-feca42d.zip
179.44 KB
19 downloads