설명 없음
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

show.htm 23KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678
  1. <?php
  2. function hide_phone_number_regex($phone_number) {
  3. return preg_replace('/(\d{3})\d{4}(\d{4})/', '$1****$2', $phone_number);
  4. }
  5. $param = request()->param();
  6. function isValidChineseMobileNumber($number) {
  7. return preg_match('/^1\d{10}$/', $number) ? true : false;
  8. }
  9. if(!empty($param['p'])){
  10. //验证手机号码
  11. if(isValidChineseMobileNumber($param['p'])) {
  12. $is_cha = 1;
  13. }else{
  14. $is_cha = 0;
  15. }
  16. }else{
  17. $is_cha = 0;
  18. }
  19. $is_detail = 0;
  20. if(!empty($param['h'])){
  21. $is_cha = 1;
  22. $is_detail = 1;
  23. $sql = "select * from ey_zc_form where code='".$param['h']."' and status=1 and is_del=0 limit 1";
  24. }
  25. //缓存问题 增加时间参数即可
  26. ?>
  27. {eyou:if condition='($is_detail === 1)'}
  28. {eyou:sql sql='$sql' cachetime='3600' empty=''}
  29. {eyou:php}
  30. $detail = $field;
  31. $extend_info = json_decode($field['extend'],true);
  32. {/eyou:php}
  33. {/eyou:sql}
  34. <?php
  35. //区域
  36. if((int)$detail['yxdq'] === 10001){
  37. $area_name = '不限制';
  38. }else if((int)$detail['yxdq'] === 20000){
  39. $area_name = '全国';
  40. }else if((int)$detail['yxdq'] === 0){
  41. $area_name = '未选';
  42. }else{
  43. $area_name = '';
  44. $sql2 = "select id,name from ey_citysite where id=".$detail['yxdq'];
  45. }
  46. //职称
  47. $zc_name = '';
  48. $sql3 = "select id,title from ey_zc_position where id=".$detail['sbzy'];
  49. //职称等级
  50. $zc_dj = '';
  51. $sql4 = "select id,title from ey_zcdj_position where id=".$detail['sbdj'];
  52. ?>
  53. {eyou:if condition='($area_name == "")'}
  54. {eyou:sql sql='$sql2' cachetime='3600' empty=''}
  55. {eyou:php}
  56. $area_name = $field['name'];
  57. {/eyou:php}
  58. {/eyou:sql}
  59. {/eyou:if}
  60. <?php
  61. /*
  62. *
  63. * 减少sql调用
  64. *
  65. * {eyou:sql sql='$sql3' cachetime='3600' empty=''}
  66. {eyou:php}
  67. $zc_name = $field['title'];
  68. {/eyou:php}
  69. {/eyou:sql}
  70. {eyou:sql sql='$sql4' cachetime='3600' empty=''}
  71. {eyou:php}
  72. $zc_dj = $field['title'];
  73. {/eyou:php}
  74. {/eyou:sql}
  75. *
  76. *
  77. */
  78. ?>
  79. {/eyou:if}
  80. <!DOCTYPE html>
  81. <html lang="zh-CN">
  82. <head>
  83. <title>职称评审一键匹配系统</title>
  84. <meta name="keywords" content="职称评审系统">
  85. <meta name="description" content="职称评审系统,输入学历、区域、专业名称等,即可为您一建匹配符合相应的区域,并提供详细的申报流程指引及各地规则参考。">
  86. <meta charset="UTF-8">
  87. <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
  88. <meta name="renderer" content="webkit">
  89. <meta name="force-rendering" content="webkit">
  90. <meta http-equiv="X-UA-Compatible" content="IE=edge,Chrome=1">
  91. <meta name="applicable-device" content="pc,mobile">
  92. <meta name="author" content="order by ">
  93. <!-- 最新版本的 Bootstrap 核心 CSS 文件 -->
  94. <link rel="stylesheet" href="https://cdn.bootcdn.net/ajax/libs/twitter-bootstrap/3.4.1/css/bootstrap.min.css" integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">
  95. <!-- 可选的 Bootstrap 主题文件(一般不用引入) -->
  96. <link rel="stylesheet" href="https://cdn.bootcdn.net/ajax/libs/twitter-bootstrap/3.4.1/css/bootstrap-theme.min.css" integrity="sha384-6pzBo3FDv/PJ8r2KRkGHifhEocL+1X2rVCTTkUfGk7/0pbek5mMa1upzvWbrUbOZ" crossorigin="anonymous">
  97. <!-- 最新的 Bootstrap 核心 JavaScript 文件 -->
  98. <script src="https://cdn.bootcdn.net/ajax/libs/twitter-bootstrap/3.4.1/js/bootstrap.min.js" integrity="sha384-aJ21OjlMXNL5UyIl/XNwTMqvzeRMZH2w8c5cRVpzpU8Y5bApTppSuUkhZXN0VxHd" crossorigin="anonymous"></script>
  99. <body>
  100. <div style="width:600px;margin: 0 auto;">
  101. <div class="well" style="margin-top:20px;">
  102. <p>匹配结果展示:<br/><br/>
  103. <!--编号: 202410247774<br/>-->
  104. 姓名: {$detail.ch}<br/>
  105. 手机: <?php echo $detail['sjhm']; ?><br/>
  106. 地区: {$extend_info.szsf}/{$extend_info.szcs}
  107. </p>
  108. </div>
  109. <div class="well" style="margin-top:20px;">
  110. <?php
  111. /*
  112. *
  113. * 预选地区: {$area_name}<br/>
  114. */
  115. ?>
  116. 申报专业: {$extend_info.sbzy}<br/>
  117. 申报等级: {$extend_info.sbdj}<br/>
  118. </div>
  119. <?php
  120. //现在没有所谓预选和其他推荐的区分
  121. $sql_end = '';
  122. $t = '';
  123. $scen = '抱歉!暂时未找到相关匹配结果信息!';
  124. ?>
  125. <?php
  126. $result_map = "";
  127. $xl = ['不限制','中专','高技','大专','本科','硕士','博士'];
  128. //先列出全国 再其他省 再到市
  129. $sql = 'select * from ey_zcwd_position where type='.$detail['sbzy'].' and sbdj='.$detail['sbdj'].' and is_del=0 and status=1'.$sql_end.' order by sf asc';
  130. $is_list_empty = '';
  131. ?>
  132. {eyou:sql sql="$sql" cachetime='3600' empty='' id="field"}
  133. <?php
  134. $is_list_empty = $field['id'];
  135. ?>
  136. <div class="panel panel-primary">
  137. <div class="panel-body">
  138. {eyou:if condition='((int)$field.sf === 0)'}
  139. ({$t}匹配结果)全国通用申报要求对比结果如下:
  140. {eyou:else /}
  141. <?php
  142. if((int)$field['sf'] > 0){
  143. $sql22 = "select id,name from ey_citysite where id=".$field['sf'];
  144. $sql222 = '';
  145. if((int)$field['cs'] > 0){
  146. $sql222 = "select id,name from ey_citysite where id=".$field['cs'];
  147. }
  148. }
  149. ?>
  150. {eyou:sql sql='$sql22' cachetime='3600' empty='' id="kop"}
  151. <?php
  152. $aname = $kop['name'];
  153. ?>
  154. {/eyou:sql}
  155. {eyou:if condition='((int)$field.cs > 0)'}
  156. {eyou:sql sql='$sql222' cachetime='3600' empty='' id="kop"}
  157. <?php
  158. $bname = $kop['name'];
  159. ?>
  160. {/eyou:sql}
  161. {/eyou:if}
  162. ({$t}匹配结果){$aname}{$bname}地区申报要求对比结果如下:
  163. {/eyou:if}
  164. </div>
  165. <div class="panel-footer" style="padding:3px 5px;">
  166. <!--查询专业-->
  167. <?php
  168. $num = 0;
  169. $sql2 = "select * from ey_zcwe_position where type=".$field['id']." and is_del=0 and status=1";
  170. ?>
  171. {eyou:sql sql="$sql2" cachetime='3600' empty='暂无相关数据' id="field2"}
  172. <table class="table table-bordered" style="margin-bottom:0px;margin-top:5px;">
  173. <thead>
  174. <tr>
  175. <th scope="col" style="text-align: center;">情况<br/>{$i}</th>
  176. <th scope="col">字段<br/>信息</th>
  177. <th scope="col">实际<br/>要求</th>
  178. <th scope="col">填写<br/>资料</th>
  179. <th scope="col">匹配<br/>结果</th>
  180. </tr>
  181. </thead>
  182. <tbody>
  183. <?php
  184. //先判断学历是否符合
  185. ?>
  186. <tr>
  187. <th scope="row">1</th>
  188. <td>学历</td>
  189. <td><?php echo $xl[$field2['xlyq']];?></td>
  190. <td><?php echo $xl[$detail['xl']];?></td>
  191. <td>
  192. <?php
  193. if($field2['xlyq'] == $detail['xl']){
  194. echo "<font style='color: blue;'>符合</font>";
  195. $num++;
  196. }else{
  197. echo "<font style='color: red;'>不符合</font>";
  198. }
  199. ?>
  200. </td>
  201. </tr>
  202. <tr>
  203. <th scope="row">2</th>
  204. <td>年龄</td>
  205. <td>
  206. <?php
  207. if((int)$field2['is_ega'] === 0){
  208. echo "不限制";
  209. }else{
  210. echo $field2['ega_0'].'-'.$field2['ega_1'].'岁';
  211. }
  212. ?>
  213. </td>
  214. <td>
  215. {$detail.nl}岁
  216. </td>
  217. <td>
  218. <?php
  219. if((int)$detail['nl'] <= (int)$field2['ega_1'] && (int)$detail['nl'] >= (int)$field2['ega_0']){
  220. echo "<font style='color: blue;'>符合</font>";
  221. $num++;
  222. }else{
  223. echo "<font style='color: red;'>不符合</font>";
  224. }
  225. ?>
  226. </td>
  227. </tr>
  228. <tr>
  229. <th scope="row">3</th>
  230. <td>毕业<br/>专业</td>
  231. <td>
  232. {eyou:if condition='((int)$field2.byzy === 0)'}
  233. 不限制
  234. {eyou:else /}
  235. <?php
  236. //查询出毕业专业 $deta
  237. $zhengshu2 = json_decode($field2['zhengshu2'],true);
  238. $zhengshu2_str = '0';
  239. foreach ($zhengshu2 as $k => $v){
  240. if((int)$v > 0) {
  241. $zhengshu2_str .= ',' . $v;
  242. }
  243. }
  244. $sql3 = "select id,title from ey_zczy_position where id IN(".$zhengshu2_str.") and is_del=0 and status=1";
  245. ?>
  246. {eyou:if condition='($zhengshu2_str != "0")'}
  247. {eyou:sql sql="$sql3" cachetime='3600' empty='' id="field3"}
  248. <?php /***/ ?>{$field3.title}<br/>
  249. {/eyou:sql}
  250. {eyou:else /}
  251. 不限制
  252. {/eyou:if}
  253. {/eyou:if}
  254. </td>
  255. <td>
  256. <?php
  257. //查询出毕业专业 $deta
  258. $zhengshu = json_decode($detail['zy'],true);
  259. $zhengshu_str = '0';
  260. foreach ($zhengshu as $k => $v){
  261. if ((int)$v > 0) {
  262. $zhengshu_str .= ',' . $v;
  263. }
  264. }
  265. $sql3 = "select id,title from ey_zczy_position where id IN(".$zhengshu_str.") and is_del=0 and status=1";
  266. ?>
  267. {eyou:if condition='($zhengshu_str != "0")'}
  268. {eyou:sql sql="$sql3" cachetime='3600' empty='' id="field3"}
  269. {$field3.title}<br/>
  270. {/eyou:sql}
  271. {eyou:else /}
  272. {/eyou:if}
  273. </td>
  274. <td>
  275. <?php
  276. if((int)$field2.byzy === 0 || empty($zhengshu2)){
  277. echo "<font style='color: blue;'>符合</font>";
  278. $num++;
  279. }else{
  280. if(empty($zhengshu)){
  281. echo "<font style='color: red;'>不符合</font>";
  282. }else{
  283. $run = "<font style='color: red;'>不符合</font>";
  284. $ik = 1;
  285. foreach ($zhengshu as $k => $v){
  286. if(in_array($v,$zhengshu2)){
  287. //$run = '<font style="color: blue;">符合</font><br/>'.$ik.'项';
  288. $run = '<font style="color: blue;">符合</font><br/>';
  289. $ik++;
  290. }
  291. }
  292. echo $run;
  293. if($ik>1){
  294. $num++; //符合+1
  295. }
  296. }
  297. }
  298. ?>
  299. </td>
  300. </tr>
  301. <tr>
  302. <th scope="row">4</th>
  303. <td>学校<br/>类型</td>
  304. <td>
  305. {eyou:if condition='((int)$field2.xxlx === 0)'}
  306. 不限制
  307. {eyou:else /}
  308. <?php
  309. if((int)$field2['xxlx'] === 1) echo "全日制";
  310. if((int)$field2['xxlx'] === 2) echo "非全日制";
  311. ?>
  312. {/eyou:if}
  313. </td>
  314. <td>
  315. {eyou:if condition='((int)$detail.xxlx === 1)'}
  316. 全日制
  317. {eyou:else /}
  318. 非全日制
  319. {/eyou:if}
  320. </td>
  321. <td>
  322. {eyou:if condition='((int)$field2.xxlx === 0)'}
  323. <font style='color: blue;'>符合</font>
  324. <?php
  325. $num++;
  326. ?>
  327. {eyou:else /}
  328. <?php
  329. if((int)$field2['xxlx'] === (int)$detail['xxlx']){
  330. echo "<font style='color: blue;'>符合</font>";
  331. $num++;
  332. }else{
  333. echo "<font style='color: red;'>不符合</font>";
  334. }
  335. ?>
  336. {/eyou:if}
  337. </td>
  338. </tr>
  339. <tr>
  340. <th scope="row">5</th>
  341. <td>毕业<br/>时间</td>
  342. <td>
  343. {eyou:if condition='((int)$field2.bysj === 0)'}
  344. <?php /*不要求**/ ?>不要求
  345. {eyou:else /}
  346. <?php /*要求>={$field2.bysj_time}年**/ ?>要求>={$field2.bysj_time}年
  347. {/eyou:if}
  348. </td>
  349. <td>
  350. <?php
  351. //$detail['bysj']
  352. //假设我们要计算的时间是2000年1月1日
  353. $startDate = new DateTime($detail['bysj']);
  354. // 获取现在的日期
  355. $now = new DateTime('now');
  356. // 计算差值
  357. $interval = date_diff($startDate, $now);
  358. // 输出年份
  359. //echo $interval->y . ' years';
  360. if($interval->y > 0){
  361. echo '已毕业'.$interval->y . '年';
  362. }else{
  363. echo '刚毕业不足1年';
  364. }
  365. ?>
  366. </td>
  367. <td>
  368. <?php
  369. if((int)$field2['bysj'] === 0){
  370. echo "<font style='color: blue;'>符合</font>";
  371. $num++;
  372. }else{
  373. if((int)$field2['bysj_time'] <= $interval->y){
  374. echo "<font style='color: blue;'>符合</font>";
  375. $num++;
  376. }else{
  377. echo "<font style='color: red;'>不符合</font>";
  378. }
  379. }
  380. ?>
  381. </td>
  382. </tr>
  383. <tr>
  384. <th scope="row">6</th>
  385. <td>前置<br/>证书</td>
  386. <td>
  387. <?php
  388. $zhengshu3 = '';
  389. $zs_all = [];
  390. //(且或) 列出证书要求
  391. //调用需要的记录 is_zs
  392. $sql5 = "select * from ey_zcwf_position where type_son=".$field2['id']." and is_del=0 and status=1 and is_zs=1";
  393. ?>
  394. {eyou:sql sql="$sql5" cachetime='3600' empty='不限制' id="field3"}
  395. <?php
  396. if($i > 1){
  397. echo "或<br/>";
  398. }
  399. ?>
  400. <?php
  401. //查询出证书 $deta
  402. $zhengshu3 = json_decode($field3['zhengshu'],true);
  403. $sjnx = json_decode($field3['sjnx'],true);
  404. //var_dump($field3);
  405. //var_dump($field3['zhengshu']);
  406. //var_dump($field3['sjnx']);
  407. $zs_all[] = [
  408. 'a' => $zhengshu3,
  409. 'b' => $sjnx
  410. ];
  411. //var_dump($sjnx);
  412. $zhengshu3_str = '0';
  413. foreach ($zhengshu3 as $k => $v){
  414. if((int)$v > 0) {
  415. $zhengshu3_str .= ',' . $v;
  416. }
  417. }
  418. $sql3 = "select id,title from ey_zczs_position where id IN(".$zhengshu3_str.") and is_del=0 and status=1";
  419. ?>
  420. {eyou:if condition='($zhengshu3_str != "0")'}
  421. {eyou:sql sql="$sql3" cachetime='3600' empty='' id="field4"}
  422. <?php
  423. $key_s = array_search($field4['id'], $zhengshu3);
  424. $year_s = $sjnx[$key_s];
  425. ?>
  426. <?php /**{$field4.title}(需要{$year_s}年)**/?>{$field4.title}(需要{$year_s}年)<br/>
  427. {/eyou:sql}
  428. {eyou:else /}
  429. <!--忽略-->
  430. {/eyou:if}
  431. {/eyou:sql}
  432. </td>
  433. <td>
  434. <?php
  435. //查询出拥有的证书 $deta
  436. $zhengshu = json_decode($detail['zs'],true);
  437. $zsnx = json_decode($detail['zsnx'],true);
  438. $zhengshu_str = '0';
  439. foreach ($zhengshu as $k => $v){
  440. if((int)$v > 0){
  441. $zhengshu_str .= ','.$v;
  442. }
  443. }
  444. $sql3 = "select id,title from ey_zczs_position where id IN(".$zhengshu_str.") and is_del=0 and status=1";
  445. ?>
  446. {eyou:if condition='($zhengshu_str != "0")'}
  447. {eyou:sql sql="$sql3" cachetime='3600' empty='' id="field3"}
  448. <?php
  449. $key_s = array_search($field3['id'], $zhengshu);
  450. $year_s = $zsnx[$key_s];
  451. ?>
  452. <?php /**{$field3.title}(拥有{$year_s}年)**/ ?>{$field3.title}(拥有{$year_s}年)<br/>
  453. {/eyou:sql}
  454. {eyou:else /}
  455. {/eyou:if}
  456. </td>
  457. <td>
  458. <?php
  459. //var_dump($field['id']);
  460. //var_dump($zs_all);
  461. //表示没查出限制要求
  462. if(empty($zhengshu3)){
  463. echo "<font style='color: blue;'>符合</font>";
  464. $num++;
  465. }else{
  466. if(empty($zhengshu)){
  467. //用户没有证书
  468. echo "<font style='color: red;'>不符合</font>";
  469. }else{
  470. //判断是否包含
  471. //第一轮 循环 或
  472. foreach ($zs_all as $k => $v){
  473. if($k > 0){
  474. //echo "或<br/>";
  475. }
  476. $ik = 1;
  477. $ik2 = 1;
  478. $ik3 = 1;
  479. //第二轮 循环 且
  480. //var_dump($v['a']);
  481. $ik4 = 0; //真实有效数量
  482. foreach ($v['a'] as $k2 => $v2){
  483. //var_dump($v2);
  484. //var_dump($zhengshu);
  485. //第三轮 循环 每一项要求是否在 用户拥有的证书 里面
  486. //必须完全满足
  487. if((int)$v2 > 0) {
  488. if (in_array($v2, $zhengshu)) {
  489. //判断年限是否符合要求
  490. $key_i = array_search($v2, $zhengshu);
  491. //var_dump($zsnx[$key_i]);
  492. if ((int)$zsnx[$key_i] >= (int)$v['b'][$k2]) {
  493. $run_1 = '<font style="color: blue;">符合</font><br/>' . $ik . '项';
  494. $ik++;
  495. } else {
  496. $run_2 = '<font style="color: blue;">年限不符合</font><br/>' . $ik2 . '项';
  497. $ik2++;
  498. }
  499. } else {
  500. $run_3 = '<font style="color: blue;">未拥有</font><br/>' . $ik3 . '项';
  501. $ik3++;
  502. }
  503. $ik4++;
  504. }
  505. }
  506. //具体情况 循环且
  507. //echo $run_1;
  508. //echo $run_2;
  509. //echo $run_3;
  510. //echo count($v['a']);
  511. //var_dump($ik);
  512. //var_dump(count($v['a']));
  513. if(($ik-1) === $ik4){
  514. //echo "<font style='color: blue;'>符合1</font>";
  515. $res = "<font style='color: blue;'>符合</font>";
  516. $num++;
  517. //跳出循环 已经符合其中 一个 且了
  518. break;
  519. }else{
  520. //echo "<font style='color: red;'>不符合2</font>";
  521. $res = "<font style='color: red;'>不符合</font>";
  522. }
  523. }
  524. echo $res;
  525. }
  526. }
  527. ?>
  528. </td>
  529. </tr>
  530. <tr>
  531. <th scope="row">7</th>
  532. <td>综合<br/>评估</td>
  533. <td colspan="3" style="vertical-align:middle;">
  534. <?php
  535. //echo $num;
  536. if($num >= 6){
  537. //多次循环可能大于6
  538. echo "<font style='color: blue;'>完全符合要求!</font>";
  539. if(!empty($bname)){
  540. $bname_str = '/'.$bname;
  541. }
  542. $result_map .= $aname.$bname_str.'地区<br/>';
  543. }else if($num === 0){
  544. echo "<font style='color: red;'>完全不符合要求!</font>";
  545. }else{
  546. echo "<font style='color: #ff4c08;'>未完全符合要求!</font>";
  547. }
  548. $num = 0;
  549. ?>
  550. </td>
  551. </tr>
  552. </tbody>
  553. </table>
  554. {/eyou:sql}
  555. </div>
  556. </div>
  557. {/eyou:sql}
  558. <?php
  559. //var_dump($is_list_empty);
  560. ?>
  561. {eyou:if condition='(empty($is_list_empty))'}
  562. <div class="alert alert-danger" role="alert" style="">
  563. <!--<span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span>
  564. <span class="sr-only">Error:</span>-->
  565. {$scen}
  566. </div>
  567. {eyou:else /}
  568. <?php
  569. if(empty($result_map)){
  570. $info = '';
  571. $result_map = "抱歉!未找到符合地区!";
  572. $class = 'alert-danger';
  573. }else{
  574. //$result_map;
  575. $info = "找到以下符合申请的地区:<br/><br/>";
  576. $class = 'alert-success';
  577. }
  578. ?>
  579. <div class="alert {$class}" role="alert" style="">
  580. <?php
  581. echo $info;
  582. echo $result_map;
  583. ?>
  584. </div>
  585. {/eyou:if}
  586. </div>
  587. </body>
  588. </html>