diff --git a/404.php b/404.php new file mode 100644 index 0000000..90ba0e4 --- /dev/null +++ b/404.php @@ -0,0 +1,53 @@ +need('includes/header.php'); +?> + +
+
+
+
+
+
+
options->title(); ?>
+
+
+
+ +
+
404 Not Found
+
或许你可以试着搜索一下?
+ + +
+ +
+
    +
  • + home +
    首页
    +
  • + +
  • + account_circle +
    登录
    +
  • + +
  • + lock +
    注册
    +
  • +
+
+
+
+ +need('includes/footer.php'); ?> \ No newline at end of file diff --git a/README.md b/README.md index d1712e0..a2ada6b 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,10 @@ # Castle-Typecho-Theme -一个不怎么样但是很用心写的Typecho主题
-主题因为个人原因 一气之下删除了。
-目前正在重构主题...
-实时(可能是吧)Demo https://demo.ohmyga.net/castle +Version 0.1.0 +## LICENSE +GPL V3 +## 链接 +Blog https://ohmyga.cn +## 提示 +目前版本为非稳定版本,如有发现BUG请发起issues
+此版本仅有基础的功能,但设置项并非完善,这些将在下个版本解决。(时间太赶了)
+~~ 懒得写ReadME,目前就保持这样子吧。~~ \ No newline at end of file diff --git a/functions.php b/functions.php new file mode 100644 index 0000000..328c3de --- /dev/null +++ b/functions.php @@ -0,0 +1,634 @@ + + +addItem($wzimg); + + $PostType = new Typecho_Widget_Helper_Form_Element_Select('PostType', + array( + 'post'=>'文章', + 'nopic'=>'无图', + 'dynamic'=>'日常' + ), + 'post','文章类型','设置发表的文章的类型(仅对文章有效)'); + $layout->addItem($PostType); + +/* $PageType = new Typecho_Widget_Helper_Form_Element_Select('PageType', + array( + 'page'=>'默认', + 'links'=>'友链', + 'bangumi'=>'追番' + ), + 'page','独立页面类型','请根据页面模板选择类型,普通页面保持默认即可(仅对页面有效)'); + $layout->addItem($PageType);*/ + +/* $PSetting = new Typecho_Widget_Helper_Form_Element_Textarea('PSetting', NULL, NULL, + '高级设置', '文章/独立页高级设置,如果不懂此有何用请勿填写。'); + $layout->addItem($PSetting);*/ +} + +function themeInit($comment) { + Helper::options()->commentsAntiSpam = false; //关闭评论反垃圾(否则与PJAX冲突) + Helper::options()->commentsHTMLTagAllowed = ' '; //评论允许使用的标签 + Helper::options()->commentsMarkdown = true; //启用评论可使用MarkDown语法 + Helper::options()->commentsCheckReferer = false; //关闭检查评论来源URL与文章链接是否一致判断(否则会无法评论) + Helper::options()->commentsPageBreak = true; //是否开启评论分页 + Helper::options()->commentsPageSize = 5; //评论每页显示条数 + Helper::options()->commentsPageDisplay = 'first'; //默认显示第一页 + Helper::options()->commentsOrder = 'DESC'; //将较新的评论展示在第一页 + + /* AJAX获取评论者Gravatar头像 */ + if(isset($_GET["action"]) == 'ajax_avatar_get' && 'GET' == $_SERVER['REQUEST_METHOD'] ) { + $host = 'https://cdn.v2ex.com/gravatar/'; + $email = strtolower($_GET['email']); + $hash = md5($email); + $qq = str_replace('@qq.com','',$email); + $sjtx = 'mm'; + if(strstr($email,"qq.com") && is_numeric($qq) && strlen($qq) < 11 && strlen($qq) > 4) { + $avatar = 'https://q.qlogo.cn/g?b=qq&nk='.$qq.'&s=640'; + }else{ + $avatar = $host.$hash.'?d='.$sjtx; + } + echo $avatar; + die(); + }else{ + return; + } +} + +/* 文章阅读次数(含Cookie) */ +function PostView($archive) { + $cid = $archive->cid; + $db = Typecho_Db::get(); + $prefix = $db->getPrefix(); + if (!array_key_exists('views', $db->fetchRow($db->select()->from('table.contents')))) { + $db->query('ALTER TABLE `' . $prefix . 'contents` ADD `views` INT(10) DEFAULT 0;'); + echo 0; + return; + } + + $row = $db->fetchRow($db->select('views')->from('table.contents')->where('cid = ?', $cid)); + if ($archive->is('single')) { + $views = Typecho_Cookie::get('extend_contents_views'); + if(empty($views)){ + $views = array(); + }else{ + $views = explode(',', $views); + } + if(!in_array($cid,$views)){ + $db->query($db->update('table.contents')->rows(array('views' => (int) $row['views'] + 1))->where('cid = ?', $cid)); + array_push($views, $cid); + $views = implode(',', $views); + Typecho_Cookie::set('extend_contents_views', $views); + } + } + return $row['views']; +} + +/* 文章or页面高级设置 */ +function PSetting($type) { + $setting = Typecho_Widget::widget("Widget_Archive")->fields->PSetting; + if (json_decode($setting) == null) { + $output = null; + } else { + $data = json_decode($setting, true); + $output = $data[''.$type.'']; + } + return $output; +} + +/* 随机封面图 */ +function randPic() { + $setting = Helper::options()->randimg; + $rand = rand(0,99); //防止只获取一张图 + if ($setting == 'api.ohmyga.cn') { + $output = 'https://api.ohmyga.cn/wallpaper/?source=sina&rand='.$rand; + }elseif ($setting == 'local') { + $openfile = glob(Helper::options()->themeFile(getTheme(), "random/*.jpg"), GLOB_BRACE); + $img = array_rand($openfile); + preg_match('/\/random\/(.*).jpg/', $openfile[$img], $out); + $output = Helper::options()->siteUrl.'usr/themes/'.getTheme().'/random/'.$out[1].'.jpg'; + } + return $output; +} + +/* 获取主题名称 */ +function getTheme() { + static $themeName = NULL; + if ($themeName === NULL) { + $db = Typecho_Db::get(); + $query = $db->select('value')->from('table.options')->where('name = ?', 'theme'); + $result = $db->fetchAll($query); + $themeName = $result[0]["value"]; + } + return $themeName; +} + +/* 主题检查更新链接 */ +function updateURL() { + if (extension_loaded('openssl')) { + $url = 'https://api.ohmyga.cc/'; + }else{ + $url = 'http://nossl.api.ohmyga.cc/'; + } + return $url; +} + +/* 主题检查更新&获取公告 */ +function themeUpdate($type) { + $get_new_ver = file_get_contents(updateURL().'themes/update/?site='.$_SERVER['HTTP_HOST'].'&v='.CASTLE_VERSION.'&n='.THEME_NAME); + $array = json_decode($get_new_ver, true); + + if ($type == 'GetNewVer') { + $output = $array['version']; + }elseif ($type == 'check') { + $output = $array['message']; + }elseif ($type == 'announcement') { + $output = $array['announcement']; + } + + return $output; +} + +/* 主题版本 */ +function themeVer($type) { + if ($type == 'current') { + $ver = CASTLE_VERSION; + }elseif ($type == 'new'){ + $ver = themeUpdate('GetNewVer'); + } + return $ver; +} + +/* 读取语言配置文件 */ +function lang($type, $name){ + $file = Helper::options()->lang; + $json_string = file_get_contents($file, true); + $data = json_decode($json_string, true); + $output = $data['0'][''.$type.''][''.$name.'']; + return $output; +} + +/* 获取主题静态文件引用源 */ +function themeResource($content) { + $setting = 'local'; + + if ($setting == 'local') { + $output = Helper::options()->themeUrl.'/'.$content; + }elseif ($setting == 'jsdelivr') { + $output = 'https://cdn.jsdelivr.net/gh/ohmyga233/'.THEME_NAME.'@'.themeVer('current').'/'.$content; + } + + return $output; +} + +/* 获取Gravatr头像 */ +function gravatar($email, $size){ + $urlSetting = 'https://'.Helper::options()->gravatar_url.'/'; + if (!empty($urlSetting)) { + $url = $urlSetting; + }else{ + $url = 'https://cdn.v2ex.com/gravatar/'; + } + + $host = $url; + $hash = md5(strtolower($email)); + $output = $host.$hash.'?s='.$size; + + return $output; +} + +/* 获取站点头像 */ +function siteHeadimg($type, $moe=NULL) { + $setting = Helper::options()->headimg; + + if ($type == 'ico') { + if (!empty($setting)) { + $headimg = $setting; + }else{ + $headimg = themeResource('others/img/headimg.png'); + } + }elseif ($type == 'pauthor') { + if (!empty($setting)) { + $headimg = $setting; + }else{ + $headimg = gravatar($moe->author->mail, '100'); + } + } + return $headimg; +} + +/* 获取评论者头像 */ +function userHeadimg($moe=NULL) { + $host = Helper::options()->gravatar_url; + $hash = md5(strtolower($moe->mail)); + $email = strtolower($moe->mail); + $qq = str_replace('@qq.com','',$email); + if(strstr($email,"qq.com") && is_numeric($qq) && strlen($qq) < 11 && strlen($qq) > 4) { + $avatar = 'https://q.qlogo.cn/g?b=qq&nk='.$qq.'&s=640'; + }else{ + $avatar = 'https://'.$host.'/'.$hash.'?s=640'; + } + + return $avatar; +} + +/* 显示上一篇 */ +function thePrev($widget, $default = NULL) { + $db = Typecho_Db::get(); + $sql = $db->select()->from('table.contents') + ->where('table.contents.created < ?', $widget->created) + ->where('table.contents.status = ?', 'publish') + ->where('table.contents.type = ?', $widget->type) + ->where('table.contents.password IS NULL') + ->order('table.contents.created', Typecho_Db::SORT_DESC) + ->limit(1); + $content = $db->fetchRow($sql); + if ($content) { + $content = $widget->filter($content); + $link = ' + +
+ arrow_back + '.lang('post', 'prev').' +
'.$content['title'].'
+
+
'; + echo $link; + } else { + echo $default; + } +} + +/* 显示下一篇 */ +function theNext($widget, $default = NULL) { + $db = Typecho_Db::get(); + $sql = $db->select()->from('table.contents') + ->where('table.contents.created > ?', $widget->created) + ->where('table.contents.status = ?', 'publish') + ->where('table.contents.type = ?', $widget->type) + ->where('table.contents.password IS NULL') + ->order('table.contents.created', Typecho_Db::SORT_ASC) + ->limit(1); + $content = $db->fetchRow($sql); + if ($content) { + $content = $widget->filter($content); + $link = ' + +
+ arrow_forward + '.lang('post', 'next').' +
'.$content['title'].'
+
+
'; + echo $link; + } else { + echo $default; + } +} + +function DrawerMenu() { + $data = Helper::options()->sidebar; + if (!empty($data)) { + $json = json_decode($data, true); + foreach($json as $i) { + if ($i['type'] == '0') { + echo ' + '.$i['icon'].' +
'.$i['name'].'
+
'; + }elseif ($i['type'] == '1') { + echo '
  • +
    + '.$i['icon'].' +
    '.$i['name'].'
    + keyboard_arrow_down +
    + +
  • '; + }elseif ($i['type'] == '2') { + echo '
  • +
    + '.$i['icon'].' +
    '.$i['name'].'
    + keyboard_arrow_down +
    + +
  • '; + }elseif ($i['type'] == '3') { + Typecho_Widget::widget('Widget_Contents_Page_List')->to($pages); + echo '
  • +
    + '.$i['icon'].' +
    '.$i['name'].'
    + keyboard_arrow_down +
    + +
  • '; + }elseif ($i['type'] == '4') { + echo '
  • +
    + '.$i['icon'].' +
    '.$i['name'].'
    + keyboard_arrow_down +
    + +
  • '; + }elseif ($i['type'] == '5') { + echo '
    '; + }elseif ($i['type'] == '6') { + echo ' + rss_feed +
    RSS订阅
    +
    '; + }elseif ($i['type'] == '7') { + Typecho_Widget::widget('Widget_Stat')->to($stat); + if ($i['tes'] == '1') { + echo '
  • +
    '.lang('sidebar', 'postAllNumber').'
    +
    + '.$stat->publishedPostsNum.' +
    +
  • '; + }elseif ($i['tes'] == '2') { + echo '
  • +
    '.lang('sidebar', 'pageAllNumber').'
    +
    + '.$stat->publishedPagesNum.' +
    +
  • '; + }elseif ($i['tes'] == '3') { + echo '
  • +
    '.lang('sidebar', 'categoriesAllNumber').'
    +
    + '.$stat->categoriesNum.' +
    +
  • '; + }elseif ($i['tes'] == '4') { + echo '
  • +
    '.lang('sidebar', 'commentAllNumber').'
    +
    + '.$stat->publishedCommentsNum.' +
    +
  • '; + } + } + } + } +} + +/* 解析底部社交信息 */ +function FooterSocial() { + $data = Helper::options()->social; + if (!empty($data)) { + $json = json_decode($data, true); + foreach($json as $i) { + echo ''; + } + } +} + +/* 文章or独立页分享*/ +function Pshare($t,$moe=NULL) { + $wzimg = ''; + if ($t == 'post'){ + $Pt = 'post'; + }elseif($t == 'page'){ + $Pt = 'page'; + } + $qq = '
  • + + '.lang($Pt,'shareQQ').' + +
  • '; + + $weibo = '
  • + + '.lang($Pt,'shareWB').' + +
  • '; + + $facebook = '
  • + + '.lang($Pt,'shareFB').' + +
  • '; + + $twitter = '
  • + + '.lang($Pt,'shareTW').' + +
  • '; + return $qq.$weibo.$twitter.$facebook; +} + +/* Original Author 熊猫小A (https://blog.imalan.cn/) */ +/* 解析表情、灯箱,获取第一管理员邮箱、名称 */ +class Castle { + public static function getAdminScreenName(){ + $db = Typecho_Db::get(); + $name = $db->fetchRow($db->select()->from('table.users')->where('uid = ?', 1))['screenName']; + return $name; + } + + public static function getAdminMail(){ + $db = Typecho_Db::get(); + $mail = $db->fetchRow($db->select()->from('table.users')->where('uid = ?', 1))['mail']; + return $mail; +} + + static public function parseAll($content,$parseBoard=false){ + $new = self::parseBiaoQing(self::parseFancyBox(self::parseRuby($content))); + if($parseBoard){ + return self::parseBoard($new); + }else{ + return $new; + } + } + + static public function parseBiaoQing($content){ + $content = preg_replace_callback('/\:\s*(a|bishi|bugaoxing|guai|haha|han|hehe|heixian|huaji|huanxin|jingku|jingya|landeli|lei|mianqiang|nidongde|pen|shuijiao|suanshuang|taikaixin|tushe|wabi|weiqu|what|what|wuzuixiao|xiaoguai|xiaohonglian|xiaoniao|xiaoyan|xili|yamaidei|yinxian|yiwen|zhenbang|aixin|xinsui|bianbian|caihong|damuzhi|dangao|dengpao|honglingjin|lazhu|liwu|meigui|OK|shafa|shouzhi|taiyang|xingxingyueliang|yaowan|yinyue)\s*\:/is', + array('Castle', 'parsePaopaoBiaoqingCallback'), $content); + $content = preg_replace_callback('/\:\s*(huaji1|huaji2|huaji3|huaji4|huaji5|huaji6|huaji7|huaji8|huaji9|huaji10|huaji11|huaji12|huaji13|huaji14|huaji15|huaji16|huaji17|huaji18|huaji19|huaji20|huaji21|huaji22)\s*\:/is', + array('Castle', 'parseHuajibiaoqingCallback'), $content); + return $content; + } + + private static function parsePaopaoBiaoqingCallback($match){ + return ''; + } + + private static function parseHuajibiaoqingCallback($match){ + return ''; + } + + static public function parseFancyBox($content){ + $reg = '//s'; + $rp = ''; + $new = preg_replace($reg,$rp,$content); + return $new; +} + + static public function parseRuby($string){ + $reg='/\{\{(.*?):(.*?)\}\}/s'; + $rp='${1}(${2})'; + $new=preg_replace($reg,$rp,$string); + return $new; + } +} + +/* 获取浏览器信息 */ +function getBrowser($agent) { + if (preg_match('/MSIE\s([^\s|;]+)/i', $agent, $regs)) { + $name = lang('ua', 'ie'); + $icon = 'icon-IE'; + }elseif (preg_match('/FireFox\/([^\s]+)/i', $agent, $regs)) { + $name = lang('ua', 'firefox'); + $icon = 'icon-firefox'; + }elseif (preg_match('/Maxthon([\d]*)\/([^\s]+)/i', $agent, $regs)) { + $name = lang('ua', 'aoyou'); + $icon = 'icon-Aoyou_Browser'; + }elseif (preg_match('#SE 2([a-zA-Z0-9.]+)#i', $agent, $regs)) { + $name = lang('ua', 'sougou'); + $icon = 'icon-Sougou_Browser'; + }elseif (preg_match('#360([a-zA-Z0-9.]+)#i', $agent, $regs)) { + $name = lang('ua', '360'); + $icon = 'icon-360_Browser'; + }elseif (preg_match('/Edge([\d]*)\/([^\s]+)/i', $agent, $regs)) { + $name = lang('ua', 'edge'); + $icon = 'icon-edge'; + }elseif (preg_match('/QQ/i', $agent, $regs)||preg_match('/QQBrowser\/([^\s]+)/i', $agent, $regs)) { + $name = lang('ua', 'qq'); + $icon = 'icon-QQBrowser'; + }elseif (preg_match('/UC/i', $agent)) { + $name = lang('ua', 'uc'); + $icon = 'icon-UC_Browser'; + }elseif (preg_match('/UBrowser/i', $agent, $regs)) { + $name = lang('ua', 'ub'); + $icon = 'icon-UC_Browser'; + }elseif (preg_match('/MicroMesseng/i', $agent, $regs)) { + $name = lang('ua', 'wechat'); + $icon = 'icon-wechat'; + }elseif (preg_match('/WeiBo/i', $agent, $regs)) { + $name = lang('ua', 'weibo'); + $icon = 'icon-weibo'; + }elseif (preg_match('/BIDU/i', $agent, $regs)) { + $name = lang('ua', 'baidu'); + $icon = 'icon-Baidu_Browser'; + }elseif (preg_match('/LBBROWSER/i', $agent, $regs)) { + $name = lang('ua', 'lb'); + $icon = 'icon-LBBROWSER'; + }elseif (preg_match('/TheWorld/i', $agent, $regs)) { + $name = lang('ua', 'tw'); + $icon = 'icon-TheWorld_Browser'; + }elseif (preg_match('/XiaoMi/i', $agent, $regs)) { + $name = lang('ua', 'xiaomi'); + $icon = 'icon-xiaomi'; + }elseif (preg_match('/2345Explorer/i', $agent, $regs)) { + $name = lang('ua', '2345'); + $icon = 'icon-2345_Browser'; + }elseif (preg_match('/YaBrowser/i', $agent, $regs)) { + $name = lang('ua', 'yandex'); + $icon = 'icon-Yandex_Browser'; + }elseif (preg_match('/Opera[\s|\/]([^\s]+)/i', $agent, $regs)) { + $name = lang('ua', 'opera'); + $icon = 'icon-Opera_Browser'; + }elseif (preg_match('/Thunder/i', $agent, $regs)) { + $name = lang('ua', 'xunlie'); + $icon = 'icon-xunlei'; + }elseif (preg_match('/Chrome([\d]*)\/([^\s]+)/i', $agent, $regs)) { + $name = lang('ua', 'chrome'); + $icon = 'icon-chrome'; + }elseif (preg_match('/safari\/([^\s]+)/i', $agent, $regs)) { + $name = lang('ua', 'safari'); + $icon = 'icon-safari'; + }else{ + $name = lang('ua', 'other'); + $icon = 'icon-Browser'; + } + echo ''; +} + +/* 获取操作系统 */ +function getOs($agent) { + if (preg_match('/win/i', $agent)) { + if (preg_match('/nt 5.1/i', $agent)) { + $name = lang('os', 'windows xp'); + $icon = 'icon-windows_old'; + }elseif (preg_match('/nt 6.0/i', $agent)) { + $name = lang('os', 'windows vista'); + $icon = 'icon-windows_old'; + }elseif (preg_match('/nt 6.1/i', $agent)) { + $name = lang('os', 'windows 7'); + $icon = 'icon-windows_old'; + }elseif (preg_match('/nt 6.2/i', $agent)) { + $name = lang('os', 'windows 8'); + $icon = 'icon-windows'; + }elseif (preg_match('/nt 6.3/i', $agent)) { + $name = lang('os', 'windows 8.1'); + $icon = 'icon-windows'; + }elseif (preg_match('/nt 10.0/i', $agent)) { + $name = lang('os', 'windows 10'); + $icon = 'icon-windows'; + }else{ + $name = lang('os', 'windows xp'); + $icon = 'icon-windows'; + } + }elseif (preg_match('/android/i', $agent)) { + if (preg_match('/android 5/i', $agent)) { + $name = lang('os', 'android l'); + $icon = 'icon-android'; + }elseif (preg_match('/android 6/i', $agent)) { + $name = lang('os', 'android m'); + $icon = 'icon-android'; + }elseif (preg_match('/android 7/i', $agent)) { + $name = lang('os', 'android n'); + $icon = 'icon-android'; + }elseif (preg_match('/android 8/i', $agent)) { + $name = lang('os', 'android o'); + $icon = 'icon-android'; + }elseif (preg_match('/android 9/i', $agent)) { + $name = lang('os', 'android p'); + $icon = 'icon-android'; + }else{ + $name = lang('os', 'android'); + $icon = 'icon-android'; + } + }elseif (preg_match('/linux/i', $agent)) { + $name = lang('os', 'linux'); + $icon = 'icon-linux'; + }elseif (preg_match('/iPhone/i', $agent)) { + $name = lang('os', 'iphone'); + $icon = 'icon-ios'; + }elseif (preg_match('/iPad/i', $agent)) { + $name = lang('os', 'ipad'); + $icon = 'icon-ios'; + }elseif (preg_match('/mac/i', $agent)) { + $name = lang('os', 'mac os'); + $icon = 'icon-osx'; + }else{ + $name = lang('os', 'other'); + $icon = 'icon-os'; + } + echo ''; +} \ No newline at end of file diff --git a/includes/comments.php b/includes/comments.php new file mode 100644 index 0000000..627d39b --- /dev/null +++ b/includes/comments.php @@ -0,0 +1,123 @@ +authorId) { + if ($comments->authorId == $comments->ownerId) { + $commentClass .= ''; + } else { + $commentClass .= ''; + } + } + $commentLevelClass = $comments->levels > 0 ? ' comment-child' : ' comment-parent'; + $commentLevelClass = $comments->levels > 0 ? ' comment-child' : ' comment-parent'; +?> +
  • +
    + +
    +
    +
    mail) { $commentsClassName = ''; }else{ $commentsClassName = ''; } + if (!empty($comments->url)) { + echo ''.$comments->author.''.$commentsClassName.$commentClass.''; + }else{ + echo ''.$comments->author.''.$commentsClassName.$commentClass.''; + } ?>agent); getOs($comments->agent); ?>
    +
    date(lang('comment', 'time')); ?>
    +
    reply(''); ?>
    +
    + content); ?> +
    +
    +
  • + children){ $comments->threadedComments($options); }?> +
    + + +comments()->to($comments); ?> + allow('comment')): ?> +
    +
    +

    + user->hasLogin()): ?> +
    + +
    user->screenName(); ?>
    +
    + +
    + +
    +
    + textsms + + +
    + + +
    + +
    +
    + textsms + + +
    + + + +
    + + + +
    + +
    + email + + +
    + +
    + link + + + +
    +
    + +
    + user->hasLogin()){}else{ echo ''; } ?> + cancelReply(''); ?> + +
    + + +
    +
    +
    + +
    + + speaker_notes_off + +
    + + +
    +
    +
    + mode_comment + commentsNum(_t(lang('comment', 'NoComment')), _t(lang('comment', 'OnlyOneComment')), _t(lang('comment', 'AllCommentNumber'))); ?> +
    +
    +have()){ $comments->listComments(); }?> +
    + pageNav('<<', '>>', 1, '···', array('wrapTag' => 'div', 'wrapClass' => 'moe-comments-nav mdui-card moe-card-t mdui-card-content', 'itemTag' => 'li', 'currentClass' => 'mdui-shadow-3 current',)); ?> +
    +allow('comment')){$this->need("includes/owo.php");}else{} ?> +
    \ No newline at end of file diff --git a/includes/footer.php b/includes/footer.php new file mode 100644 index 0000000..621663f --- /dev/null +++ b/includes/footer.php @@ -0,0 +1,79 @@ + + + +
    +
    +
    +
    +
    + +
    + +
    +
    + +
    + +
    +
    + Copyright © options->title() ?> All rights reserved. +
    +
    + +
    + +
    +
    + +
    + +
    +
    +
    + +options->tjcode): ?> +
    + options->tjcode(); ?> +
    + + + + + + + + + footer(''); ?> + + + \ No newline at end of file diff --git a/includes/header.php b/includes/header.php new file mode 100644 index 0000000..9d33322 --- /dev/null +++ b/includes/header.php @@ -0,0 +1,53 @@ + + + + + <?php $this->archiveTitle(array( + 'category' => _t('分类 %s 下的文章'), + 'search' => _t('包含关键字 %s 的文章'), + 'tag' => _t('标签 %s 下的文章'), + 'author' => _t('%s 发布的文章') + ), '', ' - '); ?><?php $this->options->title(); ?> + + + + + + + + + + + +need('includes/style.php')?> + header('generator=&pingback=&xmlrpc=&wlw=&commentReply='); ?> + + + +
    +
    + +
    + +
    +
    + close +
    +
    + +
    + +
    +
    + +need('includes/sidebar.php'); ?> + +
    \ No newline at end of file diff --git a/includes/owo.php b/includes/owo.php new file mode 100644 index 0000000..4862f7a --- /dev/null +++ b/includes/owo.php @@ -0,0 +1,211 @@ + + + + \ No newline at end of file diff --git a/includes/sidebar.php b/includes/sidebar.php new file mode 100644 index 0000000..1ff0735 --- /dev/null +++ b/includes/sidebar.php @@ -0,0 +1,18 @@ + + \ No newline at end of file diff --git a/includes/style.php b/includes/style.php new file mode 100644 index 0000000..4741cf5 --- /dev/null +++ b/includes/style.php @@ -0,0 +1,65 @@ +themecolor; + +if ($tc == "red") { + $color = "#F44336"; + $text = "#fff"; +}elseif ($tc == "pink") { + $color = "#E91E63"; + $text = "#fff"; +}elseif ($tc == "purple") { + $color = "#9C27B0"; + $text = "#fff"; +}elseif ($tc == "deep-purple") { + $color = "#673AB7"; + $text = "#fff"; +}elseif ($tc == "indigo") { + $color = "#3F51B5"; + $text = "#fff"; +}elseif ($tc == "blue") { + $color = "#2196F3"; + $text = "#000"; +}elseif ($tc == "light-blue") { + $color = "#03A9F4"; + $text = "#000"; +}elseif ($tc == "cyan") { + $color = "#00BCD4"; + $text = "#000"; +}elseif ($tc == "teal") { + $color = "#009688"; + $text = "#fff"; +}elseif ($tc == "green") { + $color = "#4CAF50"; + $text = "#000"; +}elseif ($tc == "light-green") { + $color = "#8BC34A"; + $text = "#000"; +}elseif ($tc == "lime") { + $color = "#CDDC39"; + $text = "#000"; +}elseif ($tc == "yellow") { + $color = "#FFEB3B"; + $text = "#000"; +}elseif ($tc == "amber") { + $color = "#FFC107"; + $text = "#000"; +}elseif ($tc == "orange") { + $color = "#FF9800"; + $text = "#000"; +}elseif ($tc == "deep-orange") { + $color = "#FF5722"; + $text = "#000"; +}elseif ($tc == "brown") { + $color = "#795548"; + $text = "#fff"; +}elseif ($tc == "grey") { + $color = "#9E9E9E"; + $text = "#000"; +}elseif ($tc == "blue-grey") { + $color = "#607D8B"; + $text = "#fff"; +} +?> + \ No newline at end of file diff --git a/index.php b/index.php new file mode 100644 index 0000000..8a83e6f --- /dev/null +++ b/index.php @@ -0,0 +1,83 @@ +作者:ohmyga + * + * @package Castle + * @author ohmyga + * @version 0.1 + * @link https://www.ohmyga.net/ + */ + if (!defined('__TYPECHO_ROOT_DIR__')) exit; + $this->need('includes/header.php'); +?> +
    +
    + next()): ?> + fields->PostType; + if($PostType == "nopic"){ ?> +
    +
    +

    title() ?>

    + excerpt(100); ?> +
    +
    + account_circle + author(); ?> + access_time + date(lang('index', 'time')); ?> + forum + commentsNum); ?> +
    +
    + +
    +
    + autorenew + + title(); } ?>( + date(lang('index', 'time')); ?> • commentsNum); ?> • + +
    +
    + +
    +
    +
    +
    +
    + title() ?> +
    | commentsNum); ?>
    +
    +
    +
    + +
    +
    + + excerpt(100); ?> + +
    +
    + +
    + +
    + +
    author(); ?>
    +
    date(lang('index', 'time')); ?>
    +
    + +
    +
    +
    + + +
    +
    + pageLink('','prev'); ?> + + pageLink('','next'); ?> +
    +
    + +need('includes/footer.php'); ?> \ No newline at end of file diff --git a/languages/en.json b/languages/en.json new file mode 100644 index 0000000..9838241 --- /dev/null +++ b/languages/en.json @@ -0,0 +1,3 @@ +[{ + "name": "English" +}] \ No newline at end of file diff --git a/languages/prprpr.json b/languages/prprpr.json new file mode 100644 index 0000000..1f4f161 --- /dev/null +++ b/languages/prprpr.json @@ -0,0 +1,126 @@ +[{ + "name": "瓜体中文", + "head": { + "searchInput": "想搜索点什么呢?" + }, + "index": { + "comment": "%s 条咸鱼", + "commentDynamic": "%s条咸鱼", + "commentNopic": "%s 条咸鱼", + "FloatingTitle": "点我深入了解《%s》~", + "LinkDynamic": "翻牌子...", + "time": "Y年m月d日", + "view": "%s 次调戏", + "viewDynamic": "%s次调戏", + "ViewLink": "翻牌子 (/≧▽≦)/" + }, + "sidebar": { + "categoriesAllNumber": "分类总数", + "commentAllNumber": "咸鱼总数", + "home": "首页", + "pageAllNumber": "页面总数", + "postAllNumber": "水文总数" + }, + "post": { + "categories": "水文分类", + "comment": "%s 条咸鱼", + "next": "下一篇", + "nextNo": "没有了(>人<;)", + "prev": "上一篇", + "prevNo": "没有了(>人<;)", + "share": "分享到哪里呢(/▽\)", + "shareFB": "分享至 Facebook", + "shareQQ": "分享至 QQ", + "shareTW": "分享至 Twitter", + "shareWB": "分享至 微博", + "tag": "水文标签", + "time": "Y年m月d日", + "view": "%s 次调戏" + }, + "page": { + "comment": "%s 条咸鱼", + "share": "分享到哪里呢(/▽\)", + "shareFB": "分享至 Facebook", + "shareQQ": "分享至 QQ", + "shareTW": "分享至 Twitter", + "shareWB": "分享至 微博", + "time": "Y年m月d日", + "view": "%s 次调戏" + }, + "comment": { + "author": "本文绒布球", + "AllCommentNumber": "已有 %d 条咸鱼 (o゜▽゜)o☆", + "bloger": "大绒布球", + "cancelReply": "不了", + "commentAllTitle": "咸鱼展示柜", + "commentTitle": "评论(*/ω\*)", + "commentTextsms": "留下你成为女装大佬的感想吧 (。・∀・)ノ", + "commentUserEmail": "邮箱 = ̄ω ̄=", + "commentUserName": "名字 = ̄ω ̄=", + "commentOff": "绒布球已经关掉评论了 (#`-_ゝ-)", + "commentUserURL": "小窝链接(选填) (~﹃~)~zZ", + "loginOut": "滚啊 (*  ̄︿ ̄)", + "loginUserCommentTitle": "现在以绒布球的身份发表评论", + "NoComment": "一条咸鱼都没有 (*  ̄︿ ̄)", + "OnlyOneComment": "只有 1 条咸鱼 _〆(´Д` )", + "reply": "正正丅", + "sendComment": "Biu~", + "smile": "OwO表情酱", + "time": "Y年m月d日 H:i", + "URLbutton": "我想填链接" + }, + "smile": { + "close": "不可以", + "emoji": "Emoji", + "huaji": "滑稽", + "OwO": "OωO", + "tieba": "泡泡" + }, + "ua": { + "2345": "2345浏览器", + "360": "360浏览器", + "aoyou": "遨游浏览器", + "baidu": "百度浏览器", + "chrome": "Chrome", + "edge": "Microsoft Edge", + "firefox": "FireFox", + "ie": "IE浏览器", + "lb": "猎豹浏览器", + "opera": "Opera浏览器", + "other": "未知浏览器", + "qq": "QQ浏览器", + "safari": "Safari", + "sougou": "搜狗浏览器", + "tw": "世界之窗浏览器", + "ub": "UC浏览器", + "uc": "UC浏览器", + "wechat": "微信内置浏览器", + "weibo": "微博内置浏览器", + "xiaomi": "小米浏览器", + "xunlie": "迅雷内置浏览器", + "yandex": "Yandex浏览器" + }, + "os": { + "android": "Android", + "android l": "Android L", + "android m": "Android M", + "android n": "Android N", + "android p": "Android P", + "android o": "Android O", + "ipad": "iPad", + "iphone": "iPhone", + "linux": "Linux", + "mac os": "Mac OS", + "other": "未知操作系统", + "windows": "Windows", + "windows vista": "Windows Vista", + "windows xp": "Windows XP", + "windows 7": "Windows 7", + "windows 8": "Windows 8", + "windows 8.1": "Windows 8.1", + "windows 10": "Windows 10" + }, + "404": { + "title": "页面走丢惹 ≧ ﹏ ≦" + } +}] \ No newline at end of file diff --git a/languages/zh-CN.json b/languages/zh-CN.json new file mode 100644 index 0000000..d050bb2 --- /dev/null +++ b/languages/zh-CN.json @@ -0,0 +1,126 @@ +[{ + "name": "简体中文", + "head": { + "searchInput": "输入你想搜索的内容并回车" + }, + "index": { + "comment": "评论 %s", + "commentDynamic": "%s条评论", + "commentNopic": "%s 条评论", + "FloatingTitle": "点击标题继续阅读《%s》", + "LinkDynamic": "more...", + "time": "Y年m月d日", + "view": "浏览 %s", + "viewDynamic": "%d次浏览", + "ViewLink": "继续阅读" + }, + "sidebar": { + "categoriesAllNumber": "分类总数", + "commentAllNumber": "评论总数", + "home": "首页", + "pageAllNumber": "页面总数", + "postAllNumber": "文章总数" + }, + "post": { + "categories": "文章分类", + "comment": "%s 评论", + "next": "下一篇", + "nextNo": "没有了", + "prev": "上一篇", + "prevNo": "没有了", + "share": "分享至...", + "shareFB": "分享至 Facebook", + "shareQQ": "分享至 QQ", + "shareTW": "分享至 Twitter", + "shareWB": "分享至 微博", + "tag": "文章标签", + "time": "Y年m月d日", + "view": "%s 浏览" + }, + "page": { + "comment": "%s 评论", + "share": "分享至...", + "shareFB": "分享至 Facebook", + "shareQQ": "分享至 QQ", + "shareTW": "分享至 Twitter", + "shareWB": "分享至 微博", + "time": "Y年m月d日", + "view": "%s 浏览" + }, + "comment": { + "author": "本文作者", + "AllCommentNumber": "已有 %d 条评论 (o゜▽゜)o☆", + "bloger": "博主", + "cancelReply": "取消回复", + "commentAllTitle": "全部评论", + "commentTitle": "评论", + "commentTextsms": "留下你成为大佬的想法吧~", + "commentUserEmail": "邮箱", + "commentUserName": "昵称", + "commentOff": "评论已经关闭", + "commentUserURL": "链接(选填)", + "loginOut": "退出登录", + "loginUserCommentTitle": "现在以登录者的身份评论", + "NoComment": "暂无评论(;´д`)ゞ", + "OnlyOneComment": "已有 1 条评论 (o゜▽゜)o☆", + "reply": "回复", + "sendComment": "发送评论", + "smile": "表情", + "time": "Y年m月d日 H:i", + "URLbutton": "链接" + }, + "smile": { + "close": "取消", + "emoji": "Emoji", + "huaji": "滑稽", + "OwO": "OωO", + "tieba": "贴吧" + }, + "ua": { + "2345": "2345浏览器", + "360": "360浏览器", + "aoyou": "遨游浏览器", + "baidu": "百度浏览器", + "chrome": "Chrome", + "edge": "Microsoft Edge", + "firefox": "FireFox", + "ie": "IE浏览器", + "lb": "猎豹浏览器", + "opera": "Opera浏览器", + "other": "未知浏览器", + "qq": "QQ浏览器", + "safari": "Safari", + "sougou": "搜狗浏览器", + "tw": "世界之窗浏览器", + "ub": "UC浏览器", + "uc": "UC浏览器", + "wechat": "微信内置浏览器", + "weibo": "微博内置浏览器", + "xiaomi": "小米浏览器", + "xunlie": "迅雷内置浏览器", + "yandex": "Yandex浏览器" + }, + "os": { + "android": "Android", + "android l": "Android L", + "android m": "Android M", + "android n": "Android N", + "android p": "Android P", + "android o": "Android O", + "ipad": "iPad", + "iphone": "iPhone", + "linux": "Linux", + "mac os": "Mac OS", + "other": "未知操作系统", + "windows": "Windows", + "windows vista": "Windows Vista", + "windows xp": "Windows XP", + "windows 7": "Windows 7", + "windows 8": "Windows 8", + "windows 8.1": "Windows 8.1", + "windows 10": "Windows 10" + }, + "404": { + "title": "页面走丢惹 ≧ ﹏ ≦" + } +}] \ No newline at end of file diff --git a/languages/zh-TW.json b/languages/zh-TW.json new file mode 100644 index 0000000..b30ae35 --- /dev/null +++ b/languages/zh-TW.json @@ -0,0 +1,3 @@ +[{ + "name": "繁體中文" +}] \ No newline at end of file diff --git a/libs/setting.php b/libs/setting.php new file mode 100644 index 0000000..375b3a8 --- /dev/null +++ b/libs/setting.php @@ -0,0 +1,187 @@ +textarea{ height: 180px; width: 100%;}'; + echo ''; + echo '
    + Castle 设置面板 + 本地版本: '.themeVer('current').' + 云端版本: '.themeUpdate('check').' + 公告: '.themeUpdate('announcement').' +
    '; + $filenum = 0; + $openfile = glob(Helper::options()->themeFile(getTheme(), "languages/*.json")); + foreach ($openfile as $v) { + if(is_file($v)) { + $filenum++; + } + } + for ($i=0; $i<=($filenum-1); $i++) { + $file = $openfile[$i]; + $file_get = file_get_contents($file, true); + $data = json_decode($file_get, true); + $name = $data['0']['name']; + $output[$file] = $name; + } + $lang = new Typecho_Widget_Helper_Form_Element_Select('lang', $output, Helper::options()->themeFile(getTheme(), "languages/zh-CN.json"), + _t('语言'), + _t('主题语言配置文件')); + $form->addInput($lang->multiMode()); + + $themecolor = new Typecho_Widget_Helper_Form_Element_Select('themecolor',array( + 'red' => 'Red', + 'pink' => 'Pink', + 'purple' => 'Purple', + 'deep-purple' => 'Deep Purple', + 'indigo' => 'Indigo', + 'blue' => 'Blue', + 'light-blue' => 'Light Blue', + 'cyan' => 'Cyan', + 'teal' => 'Teal', + 'green' => 'Green', + 'light-green' => 'Light Green', + 'lime' => 'Lime', + 'yellow' => 'Yellow', + 'amber' => 'Amber', + 'orange' => 'Orange', + 'deep-orange' => 'Deep Orange', + 'brown' => 'Brown', + 'grey' => 'Grey', + 'blue-grey' => 'Blue Grey' + ), + 'pink', + _t('主题色'), + _t('请选择主题的颜色')); + $form->addInput($themecolor->multiMode()); + + $accentcolor = new Typecho_Widget_Helper_Form_Element_Select('accentcolor',array( + 'red' => 'Red', + 'pink' => 'Pink', + 'purple' => 'Purple', + 'deep-purple' => 'Deep Purple', + 'indigo' => 'Indigo', + 'blue' => 'Blue', + 'light-blue' => 'Light Blue', + 'cyan' => 'Cyan', + 'teal' => 'Teal', + 'green' => 'Green', + 'light-green' => 'Light Green', + 'lime' => 'Lime', + 'yellow' => 'Yellow', + 'amber' => 'Amber', + 'orange' => 'Orange', + 'deep-orange' => 'Deep Orange' + ), + 'pink', + _t('主题强调色'), + _t('请选择主题的强调颜色')); + $form->addInput($accentcolor->multiMode()); + + $themeResource = new Typecho_Widget_Helper_Form_Element_Select('themeResource',array( + 'local' => '本地', + 'jsdelivr' => 'JSdelivr', + 'cdn' => '第三方CDN' + ), + 'local', + _t('静态资源'), + _t('主题静态资源引用')); + $form->addInput($themeResource->multiMode()); + + $randimg = new Typecho_Widget_Helper_Form_Element_Select('randimg',array( + 'local' => '本地', + 'api.ohmyga.cn' => 'api.ohmyga.cn', + 'others' => '第三方API' + ), + 'api.ohmyga.cn', + _t('封面图源'), + _t('文章随机封面图源')); + $form->addInput($randimg->multiMode()); + + $gravatar_url = new Typecho_Widget_Helper_Form_Element_Select('gravatar_url',array( + 'www.gravatar.com/avatar' => 'Gravatar www源', + 'secure.gravatar.com/avatar' => 'Gravatar secure源', + 'cn.gravatar.com/avatar' => 'Gravatar cn源', + 'cdn.v2ex.com/gravatar' => 'V2EX源' + ), + 'cdn.v2ex.com/gravatar', + _t('Gravatar源'), + _t('请选择Gravatar头像源')); + $form->addInput($gravatar_url->multiMode()); + + $headimg = new Typecho_Widget_Helper_Form_Element_Text('headimg', NULL, NULL, _t('站点图标'), _t('作者/博主全站头像')); + $form->addInput($headimg); + + $bgurl = new Typecho_Widget_Helper_Form_Element_Text('bgurl', NULL, NULL, _t('站点背景'), _t('如果不填将用浅灰色代替背景')); + $form->addInput($bgurl); + + $miibeian = new Typecho_Widget_Helper_Form_Element_Text('miibeian', NULL, '', _t('备案号'), _t('输入备案号,不填写将不显示')); + $form->addInput($miibeian); + + $sidebar = new Typecho_Widget_Helper_Form_Element_Textarea('sidebar', NULL, '[{ + "name":"归档", + "link":"#", + "icon":"access_time", + "type":"1" + },{ + "name":"分类", + "link":"#", + "icon":"view_list", + "type":"2" + },{ + "name":"页面", + "link":"#", + "icon":"view_carousel", + "type":"3" + },{ + "type":"5" + },{ + "type":"6" + },{ + "type":"5" + },{ + "type":"7", + "tes":"1" + },{ + "type":"7", + "tes":"2" + },{ + "type":"7", + "tes":"3" + },{ + "type":"7", + "tes":"4" +}]', _t('侧边抽屉'), _t('侧边抽屉设置,用法参考文档')); + $form->addInput($sidebar); + + $social = new Typecho_Widget_Helper_Form_Element_Textarea('social', NULL, '[{ + "name": "email", + "icon": "email", + "link": "#" +}]', _t('底部社交'), _t('底部社交设置,用法参考文档')); + $form->addInput($social); + + $statistics = new Typecho_Widget_Helper_Form_Element_Textarea('statistics', NULL, '', _t('统计代码'), _t('数据统计代码,将不会显示在页面中')); + $form->addInput($statistics); + + $pjaxRelaod = new Typecho_Widget_Helper_Form_Element_Textarea('pjaxRelaod', NULL, '', _t('PJAX重载函数'), _t('将需要重载的函数填在此,一行一条,注意符号')); + $form->addInput($pjaxRelaod); +} + +function foinfo() { + if (Helper::options()->miibeian){ + $ba = ''.Helper::options()->miibeian.'
    '; + }else{ + $ba = null; + } + $output = ' + This Theme By ohmyga😋
    + '.$ba.' + Powered By Typecho'; + return $output; +} \ No newline at end of file diff --git a/others/css/castle.min.css b/others/css/castle.min.css new file mode 100644 index 0000000..9da8e37 --- /dev/null +++ b/others/css/castle.min.css @@ -0,0 +1,8 @@ +@charset "UTF-8"; +/** + * Castle + * Author ohmyga ( https://ohmyga.cn ) + * Github https://github.com/ohmyga233/castle-Typecho-Theme + * Version 0.1.0 + **/ +#nprogress{z-index:99999999}*{box-sizing:border-box;-webkit-box-sizing:border-box}body{display:flex;flex-flow:column;min-height:100vh}#moe-body{flex:1}.moe-bg{top:0;left:0;right:0;bottom:0;z-index:-1;position:fixed;background-size:cover;background-repeat:no-repeat;background-attachment:fixed;background-position:50% 50%}.moe-head{color:#fff;box-shadow:none;text-shadow:1px 1px 1px #424242}.moe-headimg-xz{margin:0 auto;-o-transition:-o-transform .5s ease-out;-ms-transition:-ms-transform .5s ease-out;-moz-transition:-moz-transform .5s ease-out;-webkit-transition:-webkit-transform .5s ease-out}.moe-headimg-xz:hover{transform:rotateZ(360deg);-o-transform:rotateZ(360deg);-ms-transform:rotateZ(360deg);-moz-transform:rotateZ(360deg);-webkit-transform:rotateZ(360deg)}.moe-search-dialog{width:100%;height:100vh!important;max-width:100%!important;max-height:100vh!important}.moe-search-dialog .moe-bg{top:0;left:0;right:0;bottom:0;z-index:-1;position:fixed!important;background-size:cover!important;background-repeat:no-repeat!important;background-attachment:fixed!important;background-color:rgba(66,66,66,0.8)!important}.moe-search-dialog .moe-search-btn{top:20;right:20;position:fixed;width:60px!important;height:60px!important}.moe-search-dialog .moe-search-btn i{left:38%!important;font-size:40px!important}.moe-search-dialog .moe-body{margin:0;width:100%;height:100vh;display:flex;align-items:center;justify-content:center;flex-flow:column nowrap}.moe-search-dialog .moe-body .moe-c{width:600px;margin-left:auto;position:relative;margin-right:auto}.moe-search-dialog .moe-body .moe-bottom{margin-bottom:50px}.moe-search-dialog .moe-body .moe-search-input{outline:0;width:100%;border:0;font-size:22px;border-radius:50px;padding:13px 24px 13px 64px;box-shadow:0 0 4px 0 #939090;background:rgba(255,255,255,0.6)}.moe-search-dialog .moe-body .moe-search-input::-ms-input-placeholder{text-align:center}.moe-search-dialog .moe-body .moe-search-input::-webkit-input-placeholder{text-align:center}.moe-search-dialog .moe-body .moe-search-icon{top:10px;left:20px;font-size:30px;position:absolute;color:rgba(0,0,0,0.52)}@media(max-width:610px){.moe-search-dialog .moe-body .moe-c{width:90%}}@media(max-width:600px){.moe-search-dialog .moe-body .moe-search-input{font-size:18px}}.moe-sidebar{color:#000;background-color:#f5f5f5}.moe-sidebar-bg{width:100%;height:160px;position:relative!important;background-size:cover!important;background-position:50% 50%!important;background-repeat:no-repeat!important}.moe-sidebar-headimg{width:60px;height:60px;margin-top:20px;margin-left:20px;border-radius:50%;background-size:cover!important;background-position:center center!important}.moe-sidebar-author{left:0;bottom:0;color:#fff;padding:20px;font-size:20px;font-weight:600;position:absolute;box-sizing:border-box}.moe-sidebar-description{font-size:13px;font-weight:400}.moe-sidebar-search{width:90%;margin-left:auto;margin-right:auto}.moe-sidebar-count{color:#fff;font-size:15px;padding-top:3px;text-align:center;border-radius:4px;padding-left:10px;padding-right:10px;padding-bottom:3px;background:#424242}.moe-sidebar-text-shadow{text-shadow:1px 1px 0 #424242}.moe-text-ellipsis{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.moe-margin-card-top{margin-top:30px}@keyframes moeAnimation{0%{opacity:0}10%{opacity:.1}20%{opacity:.2}30%{opacity:.3}40%{opacity:.4}50%{opacity:.5}60%{opacity:.6}70%{opacity:.7}80%{opacity:.8}90%{opacity:.9}100%{opacity:1}}@-webkit-keyframes moeAnimation{0%{opacity:0}10%{opacity:.1}20%{opacity:.2}30%{opacity:.3}40%{opacity:.4}50%{opacity:.5}60%{opacity:.6}70%{opacity:.7}80%{opacity:.8}90%{opacity:.9}100%{opacity:1}}.moe-card-a:nth-child(1){animation:moeAnimation;animation-duration:.1s;-webkit-animation:moeAnimation .1s}.moe-card-a:nth-child(2){animation:moeAnimation;animation-duration:.2s;-webkit-animation:moeAnimation .2s}.moe-card-a:nth-child(3){animation:moeAnimation;animation-duration:.3s;-webkit-animation:moeAnimation .3s}.moe-card-a:nth-child(4){animation:moeAnimation;animation-duration:.4s;-webkit-animation:moeAnimation .4s}.moe-card-a:nth-child(5){animation:moeAnimation;animation-duration:.5s;-webkit-animation:moeAnimation .5s}.moe-card-a:nth-child(6){animation:moeAnimation;animation-duration:.6s;-webkit-animation:moeAnimation .6s}.moe-card{width:800px;margin-top:18px;margin-left:auto;margin-right:auto}.moe-card-media{overflow:hidden}.moe-card-media .moe-card-title{color:#fff;text-decoration:none}.moe-card-img{width:100%;height:300px;overflow:hidden;transition:all .6s;background-size:cover;background-repeat:no-repeat;background-position:50% 50%}.moe-card-img:hover{transform:scale(1.4)}.moe-card-day{padding:30px}.moe-card-day-icon{float:left;width:42px;height:42px;cursor:default;border-radius:50%;margin-right:25px;margin-bottom:10px;border:1px solid #eaeaea}.moe-card-day-icon i{height:42px;display:flex;color:#757575;align-items:center;justify-content:center;flex-flow:column nowrap}.moe-day-title{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;margin-top:0!important}.moe-day-title a{text-decoration:none;color:rgba(0,0,0,0.75);transition:all .29s ease}.moe-day-title a:hover{color:rgba(0,0,0,0.75);transition:all .29s ease;text-shadow:0 1px 1px rgba(0,0,0,0.65)}.moe-day-d{display:block;margin:0 0 10px;line-height:1.5em;margin-block-end:1em;margin-inline-end:0;margin-block-start:1em;margin-inline-start:0;color:rgba(0,0,0,0.65)}.moe-day-info{display:block;font-size:15px;margin-top:10px;overflow:hidden;white-space:nowrap;margin-bottom:-18px;text-overflow:ellipsis;color:rgba(0,0,0,0.68)}.moe-day-info .moe-author{font-size:14px;margin-right:10px}.moe-day-info .moe-time{font-size:14px;margin-right:10px}.moe-day-info .moe-comments{font-size:14px;margin-right:10px}.moe-day-info .mdui-icon{font-size:15px!important}.moe-day-info .moe-author-icon{font-weight:1000!important}.moe-day-info .moe-time-icon{font-weight:800!important}.moe-post-margin{margin-top:3px;margin-bottom:4px}.moe-post-text{font-size:16px;margin-left:5px;font-weight:400;margin-right:5px;color:rgba(0,0,0,0.6)}.moe-card-day2{width:800px;padding:10px;margin-top:18px;margin-left:auto;margin-right:auto}.moe-day2{padding:15px;position:relative;margin-left:15px;border-left:1px solid #e0e0e0}.moe-day2 .mdui-icon{top:50%;left:-9px;color:#bdbdbd;font-size:16px;position:absolute;transform:translateY(-50%)}.moe-day2 .moe-body .moe-t{font-size:18px;font-weight:550;color:rgba(0,0,0,0.8)}.moe-day2 .moe-body .moe-t a{color:#e91e63;text-decoration:none;transition:all .29s ease}.moe-day2 .moe-body .moe-t a:hover{color:#e91e63;transition:all .29s ease;text-shadow:0 0 1px #ec407a}.moe-day2 .moe-body .moe-info{display:block;font-size:13px;margin-top:8px;color:rgba(0,0,0,0.6)}.moe-page-div{margin-top:36px;max-width:600px;margin-left:auto;position:relative;margin-right:auto;margin-bottom:90px}.moe-page-div .moe-prev{left:0;position:absolute}.moe-page-div .moe-next{right:0;position:absolute}.moe-page-div .moe-number{left:40%;position:absolute}.moe-page-div .moe-number span{color:#fff;font-weight:550;text-shadow:1px 1px 1px #424242}@media(max-width:820px){.moe-card{max-width:96%}.moe-card-day2{width:96%}}@media(max-width:600px){.moe-card{width:96%}.moe-card-img{height:245px}.moe-card-day{padding:15px}.moe-day-title{font-size:17px;margin-top:8px!important}.moe-day-info{margin-bottom:-8px}.moe-day-info .moe-comments-t{display:none}.moe-card-day2{width:96%}.moe-page-div{width:90%}}.moe-card-post{width:800px;margin-top:30px;margin-left:auto;margin-right:auto}.moe-p-c{padding:15px;font-size:14px;line-height:20px}.moe-p-pic{width:100%;margin:10px auto;border-radius:5px;display:block!important}@media(max-width:810px){.moe-card-post{width:98%}}@media(max-width:600px){.moe-card-post{width:100%;box-shadow:none;margin-top:-65px;border-radius:0;-webkit-box-shadow:none}}@media(max-width:599px){.moe-card-post{width:100%;margin-top:-60px}}.moe-card-page{width:800px;margin-top:30px;margin-left:auto;margin-right:auto}.moe-margin-top-page{margin-top:18px}@media(max-width:810px){.moe-card-page{width:98%}}@media(max-width:600px){.moe-card-page{width:100%;box-shadow:none;margin-top:-65px;border-radius:0;-webkit-box-shadow:none}}@media(max-width:599px){.moe-card-page{width:100%;margin-top:-60px}}.moe-404-body{margin:0;width:100%;height:100vh;display:flex;align-items:center}.moe-card-404{width:800px;margin-left:auto;margin-right:auto}.moe-404-content{padding:15px}.moe-404-content .moe-title{font-size:25px;font-weight:500}.moe-404-content .moe-des{font-size:18px;font-weight:500}.moe-404-content .moe-search-p{width:calc(100% - 50px)}.moe-404-content .moe-btn{float:right;margin-top:-43px}.moe-404-btn{margin-top:-30px}@media(max-width:810px){.moe-card-404{width:98%}}@media(max-width:600px){.moe-card-404{width:95%}}.moe-comments-box{width:800px;padding:15px;margin-top:18px;margin-left:auto;margin-right:auto}.moe-comments-ban{width:800px;padding:30px;margin-top:18px;margin-left:auto;margin-right:auto}.moe-comments-ban .moe-text{display:block;text-align:center;margin-bottom:-5}.moe-comments-ban .moe-text i{font-size:22px;font-weight:500;margin-bottom:5px;text-shadow:0 0 2px #424242}.moe-comments-ban .moe-text span{font-size:18px;font-weight:500;text-shadow:0 0 2px #424242}.moe-comments-admin-header{margin-left:-15px;margin-right:-15px}.moe-c-d{display:none}.moe-comment-ajax-headimg{width:24px;height:24px;border-radius:50%}.moe-dialog-body{font-size:15px;line-height:1.5;padding:0!important;color:rgba(0,0,0,0.8)!important}.moe-owo-img-tieba{margin:0;height:2em;box-shadow:none;display:inline-block;vertical-align:bottom}.moe-owo-img-hj{height:80px;border-radius:5px}.moe-owo-btn-login{top:194px;right:20px;float:right!important;padding:3px!important;cursor:pointer!important;position:absolute!important;border-radius:3px!important;transition:all .2s!important;color:rgba(0,0,0,0.54)!important;-webkit-transition:all .2s!important}.moe-owo-btn-usr{top:125px;right:20px;padding:3px!important;float:right!important;position:absolute!important;border-radius:3px!important;transition:all .2s!important;color:rgba(0,0,0,0.54)!important;-webkit-transition:all .2s!important}.moe-owo-text{margin:3px!important;padding:3px!important;margin-top:5px!important;margin-bottom:5px!important;border-radius:5px!important}.moe-owo-emoji{margin:3px!important;width:40px!important;height:30px!important;padding:3px!important;margin-top:5px!important;min-width:20px!important;min-height:20px!important;line-height:28px!important;margin-bottom:5px!important;border-radius:5px!important}.moe-owo-tieba{margin:3px!important;width:40px!important;padding:3px!important;height:36px!important;margin-top:5px!important;min-width:20px!important;min-height:20px!important;line-height:0!important;margin-bottom:5px!important;border-radius:5px!important}.moe-owo-hj{margin:3px!important;padding:3px!important;height:auto!important;min-width:auto!important;border-radius:5px!important}.moe-owo-hj img{border-radius:3px}.moe-input-name{width:48%;float:left}.moe-input-email{width:48%;float:right}.moe-input-url{width:100%;float:left;display:none;animation:moeAnimation;animation-duration:.3s;-webkit-animation:moeAnimation .3s}.moe-comments-btn{float:right}.moe-comments-url-btn{float:left;margin-top:20px;margin-right:10px}.moe-comments-close-btn{float:left;margin-top:20px}.moe-comments-submit-btn{float:left;margin-top:20px}@keyframes commentsLoadAnimation{0%{transform:rotate(0deg);-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg)}100%{transform:rotate(-360deg);-ms-transform:rotate(-360deg);-webkit-transform:rotate(-360deg)}}@-webkit-keyframes commentsLoadAnimation{0%{transform:rotate(0deg);-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg)}100%{transform:rotate(-360deg);-ms-transform:rotate(-360deg);-webkit-transform:rotate(-360deg)}}.moe-comments-submit-loading{animation:commentsLoadAnimation 1s infinite linear;-webkit-animation:commentsLoadAnimation 1s infinite linear}.moe-comments-list-box{width:800px;margin-top:18px;overflow:visible;margin-left:auto;margin-right:auto}.moe-comments-list-headText-box{padding:15px}.moe-comments-list-headText-box .moe-title{display:block;font-size:18px;font-weight:500;text-align:center;text-shadow:0 0 1px #424242}.moe-comments-list-headText-box .moe-title i{font-size:22px;text-shadow:none;color:rgba(0,0,0,0.7)}.moe-comments-list-headText-box .moe-number{display:block;font-size:14px;margin-top:3px;font-weight:500;text-align:center;text-shadow:0 0 .5px #424242}.moe-comments-list-li{display:flex;padding:0 16px;list-style:none;position:relative;padding-top:14px;align-items:center;padding-bottom:14px}.moe-comments-headimg{width:45px;height:45px;border-radius:50%}.moe-comments-content{margin-left:10px}.moe-comments-content .moe-author-name{font-size:15px;font-weight:500}.moe-comments-content .moe-comments-time{font-size:14px;color:rgba(0,0,0,0.7)}.moe-comments-content .moe-reply{top:16px;right:16px;position:absolute}.moe-comments-content .moe-reply a{color:#ec407a;text-decoration:none}.moe-comments-content .moe-reply button{min-width:20px!important}.moe-comments-content .moe-comments-textBox{font-size:16px;font-weight:500;margin-top:10px;line-height:1.3;color:rgba(0,0,0,0.85)}.comment-list{margin:0;padding:0}.comment-list ol{margin-left:20px}.comment-list .moe-comments-box{left:0;top:100%;width:100%;z-index:10;position:absolute;border-radius:5px!important;box-shadow:0 6px 6px -3px rgba(0,0,0,.2),0 10px 14px 1px rgba(0,0,0,.14),0 4px 18px 3px rgba(0,0,0,.12)}.moe-comments-nav{margin:0;list-style:none;text-align:center;margin-bottom:18px}.moe-comments-nav li{width:30px;height:30px;margin:5px 8px;line-height:30px;border-radius:50%;display:inline-block;background:rgba(255,255,255,0)}.moe-comments-nav li a{text-decoration:none;color:rgba(0,0,0,0.8)}.moe-comments-nav .current{background:rgba(255,255,255,0.8)}.moe-comments-ua{color:#424242;cursor:pointer;margin-left:5px;font-size:15px!important}.moe-author-icon{color:#e91e63;margin-left:5px}.comment-list .comment-list .moe-dv-t{display:none}.moe-comments-list-li .moe-comments-content img{margin:auto;max-width:95%}.moe-nav{height:96px;color:#fff!important;margin-top:18px;background:rgba(0,0,0,0.3)}.moe-nav a{color:#fff!important}.moe-nav-left{text-align:left}.moe-nav-right{text-align:right}.moe-nav-direction{opacity:.55;font-size:15px;line-height:18px;margin-bottom:1px}.moe-nav-chapter{margin-left:34px}.moe-nav-left .mdui-icon{float:left;margin-right:10px}.moe-nav-right .mdui-icon{float:right;margin-left:10px}.moe-nav-text .mdui-icon{width:24px;padding-top:18px}.moe-nav-chapter a{color:#fff!important;text-decoration:none}.moe-nav-text{width:100%;height:100%;font-size:20px;font-weight:500;line-height:24px;padding-top:24px;display:inline-block;box-sizing:border-box;-webkit-font-smoothing:antialiased}@media(max-width:810px){.moe-comments-box{width:98%}.moe-comments-ban{width:98%}.moe-comments-list-box{width:98%}}@media(max-width:600px){.moe-comments-box{width:100%;margin-top:0;box-shadow:none;border-radius:0;-webkit-box-shadow:none}.moe-comments-ban{width:100%;margin-top:0;box-shadow:none;border-radius:0;-webkit-box-shadow:none}.moe-comments-list-box{width:100%;margin-top:0;box-shadow:none;border-radius:0;-webkit-box-shadow:none}.moe-input-email{float:none;width:100%}.moe-input-name{float:none;width:100%}.moe-c-d{display:block}.moe-comments-nav{margin-bottom:0}.moe-nav{margin-top:0;position:relative;box-sizing:border-box;color:#424242!important;-webkit-box-sizing:border-box;background:rgba(255,255,255,1);box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.moe-nav a{color:#424242!important}}.moe-footer{flex:0;width:100%;color:#fff;clear:both;background-color:#424242}.moe-footer a{color:#ec407a;text-decoration:none}.moe-footer-i{color:#fff!important;margin-right:8px!important}html::-webkit-scrollbar-track-piece{background:rgba(0,0,0,0)}html::-webkit-scrollbar{width:6px;height:6px}html::-webkit-scrollbar-thumb{height:40px;border-radius:4px;background-color:rgba(165,165,165,1)}html::-webkit-scrollbar-thumb:hover{background-color:#bbb} \ No newline at end of file diff --git a/others/css/fancybox.min.css b/others/css/fancybox.min.css new file mode 100644 index 0000000..5f943d6 --- /dev/null +++ b/others/css/fancybox.min.css @@ -0,0 +1 @@ +body.compensate-for-scrollbar{overflow:hidden}.fancybox-active{height:auto}.fancybox-is-hidden{left:-9999px;margin:0;position:absolute!important;top:-9999px;visibility:hidden}.fancybox-container{-webkit-backface-visibility:hidden;height:100%;left:0;outline:none;position:fixed;-webkit-tap-highlight-color:transparent;top:0;-ms-touch-action:manipulation;touch-action:manipulation;-webkit-transform:translateZ(0);transform:translateZ(0);width:100%;z-index:99992}.fancybox-container *{box-sizing:border-box}.fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-stage{bottom:0;left:0;position:absolute;right:0;top:0}.fancybox-outer{-webkit-overflow-scrolling:touch;overflow-y:auto}.fancybox-bg{background:#1e1e1e;opacity:0;transition-duration:inherit;transition-property:opacity;transition-timing-function:cubic-bezier(.47,0,.74,.71)}.fancybox-is-open .fancybox-bg{opacity:.9;transition-timing-function:cubic-bezier(.22,.61,.36,1)}.fancybox-caption,.fancybox-infobar,.fancybox-navigation .fancybox-button,.fancybox-toolbar{direction:ltr;opacity:0;position:absolute;transition:opacity .25s ease,visibility 0s ease .25s;visibility:hidden;z-index:99997}.fancybox-show-caption .fancybox-caption,.fancybox-show-infobar .fancybox-infobar,.fancybox-show-nav .fancybox-navigation .fancybox-button,.fancybox-show-toolbar .fancybox-toolbar{opacity:1;transition:opacity .25s ease 0s,visibility 0s ease 0s;visibility:visible}.fancybox-infobar{color:#ccc;font-size:13px;-webkit-font-smoothing:subpixel-antialiased;height:44px;left:0;line-height:44px;min-width:44px;mix-blend-mode:difference;padding:0 10px;pointer-events:none;top:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fancybox-toolbar{right:0;top:0}.fancybox-stage{direction:ltr;overflow:visible;-webkit-transform:translateZ(0);transform:translateZ(0);z-index:99994}.fancybox-is-open .fancybox-stage{overflow:hidden}.fancybox-slide{-webkit-backface-visibility:hidden;display:none;height:100%;left:0;outline:none;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:absolute;text-align:center;top:0;transition-property:opacity,-webkit-transform;transition-property:transform,opacity;transition-property:transform,opacity,-webkit-transform;white-space:normal;width:100%;z-index:99994}.fancybox-slide:before{content:"";display:inline-block;font-size:0;height:100%;vertical-align:middle;width:0}.fancybox-is-sliding .fancybox-slide,.fancybox-slide--current,.fancybox-slide--next,.fancybox-slide--previous{display:block}.fancybox-slide--image{overflow:hidden;padding:44px 0}.fancybox-slide--image:before{display:none}.fancybox-slide--html{padding:6px}.fancybox-content{background:#fff;display:inline-block;margin:0;max-width:100%;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:relative;text-align:left;vertical-align:middle}.fancybox-slide--image .fancybox-content{-webkit-animation-timing-function:cubic-bezier(.5,0,.14,1);animation-timing-function:cubic-bezier(.5,0,.14,1);-webkit-backface-visibility:hidden;background:transparent;background-repeat:no-repeat;background-size:100% 100%;left:0;max-width:none;overflow:visible;padding:0;position:absolute;top:0;-webkit-transform-origin:top left;transform-origin:top left;transition-property:opacity,-webkit-transform;transition-property:transform,opacity;transition-property:transform,opacity,-webkit-transform;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:99995}.fancybox-can-zoomOut .fancybox-content{cursor:zoom-out}.fancybox-can-zoomIn .fancybox-content{cursor:zoom-in}.fancybox-can-pan .fancybox-content,.fancybox-can-swipe .fancybox-content{cursor:-webkit-grab;cursor:grab}.fancybox-is-grabbing .fancybox-content{cursor:-webkit-grabbing;cursor:grabbing}.fancybox-container [data-selectable=true]{cursor:text}.fancybox-image,.fancybox-spaceball{background:transparent;border:0;height:100%;left:0;margin:0;max-height:none;max-width:none;padding:0;position:absolute;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}.fancybox-spaceball{z-index:1}.fancybox-slide--iframe .fancybox-content,.fancybox-slide--map .fancybox-content,.fancybox-slide--pdf .fancybox-content,.fancybox-slide--video .fancybox-content{height:100%;overflow:visible;padding:0;width:100%}.fancybox-slide--video .fancybox-content{background:#000}.fancybox-slide--map .fancybox-content{background:#e5e3df}.fancybox-slide--iframe .fancybox-content{background:#fff}.fancybox-iframe,.fancybox-video{background:transparent;border:0;display:block;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.fancybox-iframe{left:0;position:absolute;top:0}.fancybox-error{background:#fff;cursor:default;max-width:400px;padding:40px;width:100%}.fancybox-error p{color:#444;font-size:16px;line-height:20px;margin:0;padding:0}.fancybox-button{background:rgba(30,30,30,.6);border:0;border-radius:0;box-shadow:none;cursor:pointer;display:inline-block;height:44px;margin:0;padding:10px;position:relative;transition:color .2s;vertical-align:top;visibility:inherit;width:44px}.fancybox-button,.fancybox-button:link,.fancybox-button:visited{color:#ccc}.fancybox-button:hover{color:#fff}.fancybox-button:focus{outline:none}.fancybox-button.fancybox-focus{outline:1px dotted}.fancybox-button[disabled],.fancybox-button[disabled]:hover{color:#888;cursor:default;outline:none}.fancybox-button div{height:100%}.fancybox-button svg{display:block;height:100%;overflow:visible;position:relative;width:100%}.fancybox-button svg path{fill:currentColor;stroke-width:0}.fancybox-button--fsenter svg:nth-child(2),.fancybox-button--fsexit svg:nth-child(1),.fancybox-button--pause svg:nth-child(1),.fancybox-button--play svg:nth-child(2){display:none}.fancybox-progress{background:#ff5268;height:2px;left:0;position:absolute;right:0;top:0;-webkit-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:0;transform-origin:0;transition-property:-webkit-transform;transition-property:transform;transition-property:transform,-webkit-transform;transition-timing-function:linear;z-index:99998}.fancybox-close-small{background:transparent;border:0;border-radius:0;color:#ccc;cursor:pointer;opacity:.8;padding:8px;position:absolute;right:-12px;top:-44px;z-index:401}.fancybox-close-small:hover{color:#fff;opacity:1}.fancybox-slide--html .fancybox-close-small{color:currentColor;padding:10px;right:0;top:0}.fancybox-slide--image.fancybox-is-scaling .fancybox-content{overflow:hidden}.fancybox-is-scaling .fancybox-close-small,.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small{display:none}.fancybox-navigation .fancybox-button{background-clip:content-box;height:100px;opacity:0;position:absolute;top:calc(50% - 50px);width:70px}.fancybox-navigation .fancybox-button div{padding:7px}.fancybox-navigation .fancybox-button--arrow_left{left:0;padding:31px 26px 31px 6px}.fancybox-navigation .fancybox-button--arrow_right{padding:31px 6px 31px 26px;right:0}.fancybox-caption{bottom:0;color:#eee;font-size:14px;font-weight:400;left:0;line-height:1.5;padding:25px 44px;right:0;text-align:center;z-index:99996}.fancybox-caption:before{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAD6CAQAAADKSeXYAAAAYklEQVQoz42RwQ3AMAgDjfcfup8WoRykfBAK5mQHKSz5rbXJPis1hjiV3CIqgG0hLZPkVkA4p4x5oR1bVeDrdCLrW2Q0D5bcwY3TGMHbdw3mPRuOtaspYP1w//G1OIcW148H0DMCqI/3mMMAAAAASUVORK5CYII=);background-repeat:repeat-x;background-size:contain;bottom:0;content:"";display:block;left:0;pointer-events:none;position:absolute;right:0;top:-44px;z-index:-1}.fancybox-caption a,.fancybox-caption a:link,.fancybox-caption a:visited{color:#ccc;text-decoration:none}.fancybox-caption a:hover{color:#fff;text-decoration:underline}.fancybox-loading{-webkit-animation:a 1s linear infinite;animation:a 1s linear infinite;background:transparent;border:4px solid #888;border-bottom-color:#fff;border-radius:50%;height:50px;left:50%;margin:-25px 0 0 -25px;opacity:.7;padding:0;position:absolute;top:50%;width:50px;z-index:99999}@-webkit-keyframes a{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes a{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fancybox-animated{transition-timing-function:cubic-bezier(0,0,.25,1)}.fancybox-fx-slide.fancybox-slide--previous{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.fancybox-fx-slide.fancybox-slide--next{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.fancybox-fx-slide.fancybox-slide--current{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}.fancybox-fx-fade.fancybox-slide--next,.fancybox-fx-fade.fancybox-slide--previous{opacity:0;transition-timing-function:cubic-bezier(.19,1,.22,1)}.fancybox-fx-fade.fancybox-slide--current{opacity:1}.fancybox-fx-zoom-in-out.fancybox-slide--previous{opacity:0;-webkit-transform:scale3d(1.5,1.5,1.5);transform:scale3d(1.5,1.5,1.5)}.fancybox-fx-zoom-in-out.fancybox-slide--next{opacity:0;-webkit-transform:scale3d(.5,.5,.5);transform:scale3d(.5,.5,.5)}.fancybox-fx-zoom-in-out.fancybox-slide--current{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}.fancybox-fx-rotate.fancybox-slide--previous{opacity:0;-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}.fancybox-fx-rotate.fancybox-slide--next{opacity:0;-webkit-transform:rotate(1turn);transform:rotate(1turn)}.fancybox-fx-rotate.fancybox-slide--current{opacity:1;-webkit-transform:rotate(0deg);transform:rotate(0deg)}.fancybox-fx-circular.fancybox-slide--previous{opacity:0;-webkit-transform:scale3d(0,0,0) translate3d(-100%,0,0);transform:scale3d(0,0,0) translate3d(-100%,0,0)}.fancybox-fx-circular.fancybox-slide--next{opacity:0;-webkit-transform:scale3d(0,0,0) translate3d(100%,0,0);transform:scale3d(0,0,0) translate3d(100%,0,0)}.fancybox-fx-circular.fancybox-slide--current{opacity:1;-webkit-transform:scaleX(1) translateZ(0);transform:scaleX(1) translateZ(0)}.fancybox-fx-tube.fancybox-slide--previous{-webkit-transform:translate3d(-100%,0,0) scale(.1) skew(-10deg);transform:translate3d(-100%,0,0) scale(.1) skew(-10deg)}.fancybox-fx-tube.fancybox-slide--next{-webkit-transform:translate3d(100%,0,0) scale(.1) skew(10deg);transform:translate3d(100%,0,0) scale(.1) skew(10deg)}.fancybox-fx-tube.fancybox-slide--current{-webkit-transform:translateZ(0) scale(1);transform:translateZ(0) scale(1)}@media (max-height:576px){.fancybox-caption{padding:12px}.fancybox-slide{padding-left:6px;padding-right:6px}.fancybox-slide--image{padding:6px 0}.fancybox-close-small{right:-6px}.fancybox-slide--image .fancybox-close-small{background:#4e4e4e;color:#f2f4f6;height:36px;opacity:1;padding:6px;right:0;top:0;width:36px}}.fancybox-share{background:#f4f4f4;border-radius:3px;max-width:90%;padding:30px;text-align:center}.fancybox-share h1{color:#222;font-size:35px;font-weight:700;margin:0 0 20px}.fancybox-share p{margin:0;padding:0}.fancybox-share__button{border:0;border-radius:3px;display:inline-block;font-size:14px;font-weight:700;line-height:40px;margin:0 5px 10px;min-width:130px;padding:0 15px;text-decoration:none;transition:all .2s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap}.fancybox-share__button:link,.fancybox-share__button:visited{color:#fff}.fancybox-share__button:hover{text-decoration:none}.fancybox-share__button--fb{background:#3b5998}.fancybox-share__button--fb:hover{background:#344e86}.fancybox-share__button--pt{background:#bd081d}.fancybox-share__button--pt:hover{background:#aa0719}.fancybox-share__button--tw{background:#1da1f2}.fancybox-share__button--tw:hover{background:#0d95e8}.fancybox-share__button svg{height:25px;margin-right:7px;position:relative;top:-1px;vertical-align:middle;width:25px}.fancybox-share__button svg path{fill:#fff}.fancybox-share__input{background:transparent;border:0;border-bottom:1px solid #d7d7d7;border-radius:0;color:#5d5b5b;font-size:14px;margin:10px 0 0;outline:none;padding:10px 15px;width:100%}.fancybox-thumbs{background:#ddd;bottom:0;display:none;margin:0;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;padding:2px 2px 4px;position:absolute;right:0;-webkit-tap-highlight-color:transparent;top:0;width:212px;z-index:99995}.fancybox-thumbs-x{overflow-x:auto;overflow-y:hidden}.fancybox-show-thumbs .fancybox-thumbs{display:block}.fancybox-show-thumbs .fancybox-inner{right:212px}.fancybox-thumbs__list{font-size:0;height:100%;list-style:none;margin:0;overflow-x:hidden;overflow-y:auto;padding:0;position:absolute;position:relative;white-space:nowrap;width:100%}.fancybox-thumbs-x .fancybox-thumbs__list{overflow:hidden}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar{width:7px}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track{background:#fff;border-radius:10px;box-shadow:inset 0 0 6px rgba(0,0,0,.3)}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb{background:#2a2a2a;border-radius:10px}.fancybox-thumbs__list a{-webkit-backface-visibility:hidden;backface-visibility:hidden;background-color:rgba(0,0,0,.1);background-position:50%;background-repeat:no-repeat;background-size:cover;cursor:pointer;float:left;height:75px;margin:2px;max-height:calc(100% - 8px);max-width:calc(50% - 4px);outline:none;overflow:hidden;padding:0;position:relative;-webkit-tap-highlight-color:transparent;width:100px}.fancybox-thumbs__list a:before{border:6px solid #ff5268;bottom:0;content:"";left:0;opacity:0;position:absolute;right:0;top:0;transition:all .2s cubic-bezier(.25,.46,.45,.94);z-index:99991}.fancybox-thumbs__list a:focus:before{opacity:.5}.fancybox-thumbs__list a.fancybox-thumbs-active:before{opacity:1}@media (max-width:576px){.fancybox-thumbs{width:110px}.fancybox-show-thumbs .fancybox-inner{right:110px}.fancybox-thumbs__list a{max-width:calc(100% - 10px)}} \ No newline at end of file diff --git a/others/css/iconfont.css b/others/css/iconfont.css new file mode 100644 index 0000000..889124e --- /dev/null +++ b/others/css/iconfont.css @@ -0,0 +1 @@ +@font-face{font-family:"iconfont";src:url('../font/iconfont/iconfont.eot?t=1554539234601');src:url('../font/iconfont/iconfont.eot?t=1554539234601#iefix') format('embedded-opentype'),url('data:application/x-font-woff2;charset=utf-8;base64,d09GMgABAAAAACJgAAsAAAAAN8QAACIPAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHEIGVgCIdArYUMRVATYCJAOBIAtSAAQgBYRtB4NGG60sBdwYumHjAEHMeA3Z/7fjhgyBC+pWnRyk0U1jGgyZdrBomijvbrALC3PoGOf8YL5k4ZJ+nqBLrAKXv5a2tK/Fybhefpyax3+V97bojvpcr4dSQtTvt737JohpYugQIrlZLLTGOyIDAXDv/t7giBJYE8M5KdCxKLKIAiyfIPXH8Pzcej9WyYjcRowYnIQw6AULBgwYLT0iWzCQ1D5J5RSMxijUE/Mw6hTFzktcAPy0n/ur+22qeu8OcUlUSIkKzSxtiH4iZM5rB4xWo9Bq+fly6icli1LhMmDHLTt2GT7Cad+L4zT5vACQi3SVrgOyZShIxtRhO0BFHtjdE4U5QbvIhKXu11+hot1Me8CphRQ4vEZjI5MKoYgm9f9HUvDQIGd8tyEJ39RZGYbFw9Q+8AaAU8+J5UQfUF6WC/M/l1pgt6tQmOEfC9UqN+P+Twr5SQop/7sSpZxy7sYk+6bZ7c3i/d4KKf/i3fBuY3cds7ITxlVubsLNi+mcUhpPkxbBZYfH2MyDr8BVMYwdIWZ8Oj0EpMYkCXKFWh2ej/UnQBaL4y78WTbfxyLi9FAwYkyAemDE4bKwD+7bLy9PJ8EDVBABNqPbLz8gDPLZoqZ/J76yyxp1BHgYCTxwBD70JKyQI2SPj1s5FenRIJECXN1nBSMiaPRxOUKJQuMJRYsBuXUDg/chXzdzc67RgKlMY7P2vxd/9q/9IOjQfrg8YSFxF1LYc8CJK3GoLFyRUJm4Sg4tSjdNGs8WDVVddTX30nKzHZjHf+cVrtPRpOK8epwOw5aO2+W4W/f07RV11rELxR8aHoIsAW2CAsaCBcwED1gICdAgVAlGoQGgS+gSvMIEoTor+gC4ixGgJKaApZgBNmIO2IqzxITiDoC5eAGaRAYoiBxwlQDAVHIBI6kDTGQAUCGDEtPKfQCsBMFLIcuUVwAww+c1wASOC1CFywBI4BoBMhgAWMFUAAuYBmAKmwUYwb4C9PGVqRRbRQ4AJX7mwBjAdj3MDeAFig/1FsuRFHVARUK1zi9QbMrvFG3KE/McTh/4hzR/meEJ+HB4SuwD74cQzg2wbCqVTGZZsAgEepk4YiEmRIJ0IBxEgIhLxLtNMWKRw8I5TLINDemu19cxYtH9v3M8PXEIhHiSyT75EL3NIQvIAWJQoTZyItmYRkHNCXgSnsMxp5EJVIIlGbLiksmkcBbDgKPkGgtMdJgWWBxZApGVSSRSpaDgFSsTuQ2ZRKLWupycIQorCg7sIwIJCE71yS/oP/lqOJ+zyR9rIdeOp+DNFVNV5SfyygO+NJBvohkwfySItYg2EEDmqNg/yJXzUtlbROZQtOS2s/VmuZE284SxEPOYBsD8IefY1OR5xKG2Nh6l0BztCh4BFgkMp2ljTr2EacED5IzQeiokweYvlRuvyPpQ/oHvmObG8KEiiptOw2u57fyOtwFFTe+fzQ0/ktY31E+3aelYPXsPE4nH5USwryF890vCEeSZlR02vbpneFgFxu08p4aTk445hTk9YsqQ+6G643r2Q36BmHMHdc+Yo/XsWQ4LSTAMjf7YszxmjiJu+6epUTBuYzN+osJZH+be+6Fv+8bl3cYH5lcKr/OpkTNOXTHnRpA0Tg1/mcvlfzjy9a8uDTMx7/pf+txlKZOyG+wrf9UwnBVvzTTd9V/3rVzLOk3dopWx/4cPjNri6qr1Gsw92n6cgHxwCVPmr4478cTs6NsDvXu9e81y35k9we7r0nc377GW0k0d34g48vbBq7+xjUTe0kBxCSGP5I3vIW1CWFic9zE2HIIUWa5mzuTfcXTbUKuh+YNmfTLFGSCR1X0Y0MJZ7pECEgbG3GOfV0OMwML1QbN5lkTp6K7h1O3rkr4X+7T84o9J3jDmR/lx/H5POzn75QaQIS1dFNrXUQGsfrgk0mxpsKTYntgUKmmMaBFFvKwhAoXigyqrpn4HJkst1TDEQsqplhVIbzjU59hEy1aG6m2B8SEwEqsWPs6PcaahfpR/fXzIVYqZllEuW7wuzAeeBU1fmr3bPi6BdTJlISPFzBURcrVIsBFrq9lejsPW0qnofmSpY3LM6zgedE1eRCbnuJ7Nrr1kIsasM7UWuvYpt1wRuxtniHUGDJMJMEhgBEKGeSoC1aQs3dEbdv4s7p39/+OYVweKmVo6cp01Hpu6Z7qnovTt2hl84bXGxNTlRLC9vD3Z2DAFCaxFCrBp+9m60/bBg0355/fv9Xr3mlSqvdMKNvr939//QO2ppXOkfevH8YW1fTB+8ii+vj25yWtAGsPNVXVxoH3LGaYwD/4UpQkAg2W5mOMwpe4qpl8n6THhKpp5fv4w9rSfQuFW9HT7oEaVY6JCGp4EiYY1Ht7suD9kzNTB5YPzZ/PUuEQIsAxsfdvn9tYEOu+jwOrfNG6/L/2ilI/ktACNwCgJ0cShjfxzFwmdB4DloTO1TFdF1t5YO6ECS1VfutwMq6mqdt4aPRvV79GE/y2+o7+TutfsPbNyhBjjmIc4PMDYCUHESoRUy/6kc1uxetAP87WKs8t6HkNKi4mCzeLMARYBQjhYZQYEBIMRQUkp9RBvsQ7aPscqZH4zisbUs1nzExoAEoGIpcIUR8p5JOEQA2UIAhAniJWWhoHKpVEtw0hAamskCRyXE+AV7UNYSgBpOUlh0sdZY8c5hNT247UubsLm4mDR8AZQGBVQRC8g+Ekg5dNSz7B8ZHqpDOwopkJEGIsSlbV+6NUGitpZPcoS67OqjrazLRUQQAvbHEgmEiUhLtRTHE+/HoFGabApq9TmOF5DkOi3ZrGDuFm8oIgDhySCLh+VKt9dvY8fyMorB1hmfWeyEKfCqz+91T0UJDI/JyD/Dwq/GQx0bmnhEG8n6+4mOki4UhIOJX6Aq5NZbbLgvg7kZnW1t57SQXp5ndCjtHhh9Tis7agx9xSfo3rNPjyriz0ZftInDbCkAnehKklzUwZ7JYFazPN5eIkGUQ0NV2rK4uDMOxMitiJy3cwZXeXo6O7Bw5HREWts1M7l7ZFL47cRaxziuH26PhivJsvbphBEdXn3EKNblHk7020uZXsqOyvljdn6rMvxwWWtnDSrOyoH1tTkxK4gSD9ujCo4XYbZ3r/T5NxUhc7LQI2h4gyiAPxIPLh9rz5/XnoaZ+/k6vf0lMejyiyduduoZZ6y0D1lDt2GjVC8fLE+2JPmxcPXjbL4DKXzfp4XUSvDUAZ5LtahctMczoUkqmA6yeYMo7ymCpGVi5ulBogeSnK/+z29NU6b0HDOJD+mto8Pch++Th2wjwTwOG3atgdKu0zLS+0YKcD9YtevEQ8dYJYHPiINg9ayFjLdLPuEWRFK89AbzFXSJkQnWMuitbyNbZ/4pG34gBi/aUDar6v8U942PZTPW2ahF57auDX3XGYAxJasuXOvkQmjfBgCfvjyC78NwYSIv04X7d5FDB9W6L1Smhg6vDm50+0ghMFQeRmwEOaTYHiDLXkLACAwGem+VFRfBedfyEvP1/vN0Td5xrccaHPc7+LNn3LfCbEcYjVB/fxBR42+zQ44i/o2t2ljvmkcusqjyI4solfgEm26pq0C1AQHmxVy8lvHtNVHnhKNff3EyIhgY2xJFTxREuGvT/HIi+6HYWpJadAIczYnET8xz5/PAjpUX61eVYXWU0Otm+GY5jZkV2TeP7joX1y070nrYnf8Ggq6ea4s/fekyfs31htD3XPDMn9645PC4Lxm/v99H8fTU/enE06J9NbdNW/FWf1jyUaYXrRo+3tW/7ctZZiN2H/UEt6k7i50NVW4jZS4weCr9XTxzs4Qk/OWWEQNtbViTpgaQj6vneMSKjwRW0uTLAcWGYv86qmP6/8nHOMwVd1p8vH40Obum57yVNRaD9nVcsTyDbOIyCfoN3GHl2/tREPyx4bWZRf3EHbEAoScpbSj9gwQx/45CUB034Rg4/7L1YDJUHRXNzeXDk412wIMat2S1VBxJy+qIqzjbNttf/XkrHZOzu68miJZqNwGiPaRZF22WJABrv6CwmJotznlBMSwF2W9awuGOLdYFfsFwHHYsSIBdLAumFE7Xu61wyKq1VBrrlHa1c+GaxzfbWcTsqA6hQIwgwAWZPhBEbGoyTDE1Z1hOxv2HpwDO1zLtAWMNy0MNqWLgYqSdJQiSBOQjrya6210WdimdnX0ZQiCKfEXpk/MzQSJrELyiaaLVxGrAbKQqXUGQHR5W5AgUylZWOwtH1zXUl78BW3Gfh1zZmUEtP5q5NmoMebR8a6qDObs/LCrxc0mLMQTekg7fnA7newrXN4wLVhbosxgT9nRX0xd00W7dWAYmFB7JGokCOxzrg9Se6u/nAoH+ksttkYZxi0sV9/fTBqOZSbdFiqmzHA9+3V9NWmoRTqTucrxUEtHdh6v6+pzoAmhkkYWJa1FLEG8+ZpamZZlwWGNj+aOqUfrj2h/dXtwOdFRw6SwjQjbhDTHmk9h+XW6sG9CgpaA2hj6+OPFvJZlxDmNydkUl0ausToLwgoq1lAjqHbITzd14MeDxWdxkKg7+P/036+R56fI2X8m/3oSTaxaf2WmeQp1zWHW6r48eRW0a5Bx/Id9m/q+7t/04yVTf9/m/nEO58+3MirqoYfMCecK3wZaXTle2H9177eftYLiRpDYpVoJ0nOnoobiTHg4qZnoaxtYLQO6vfngLhOssbTYvyrzdyTPk3iYARH1lGNtz9bqgAozKsLAggiBO+beFKZ07TJvP/voGTmUflq6xPqfn4ls1Ut1FT12NtTR+dNPab+ZekPvkbW04fMfGUvP57mUbpdp/StpaESqqR8roxug5A3yBVL29YxqJIN4AoUanKOBZ9+bHsciSqBJIDtqMaOlhTHwh4+zIopjzyR5nE2oxRkScv7dqdi/TiAq0dz/XygAP9wO+quZ0meslbz0HONVNp6yTLN8+3XDNl4R9AKu3or3eY3Ydjwj3SOPn52WkgbS0puQiSw4HI6YKG7CNaETcbD6cYFrbMIDrk+FnkVXFvM0GmjVwS6p8llbjwF2d4sxNo9Kd7/CLrQAjbr88yqn9DXwKlE7GPzU858hgjT1mIxTHulpSVEkSoqcvDAEmN73gnHTHACd+UZhpjNO79n3o9XMJSAT62/l5cVWM2e9XYH1cNdIFB2AgZsd0L4eJI/sm67hpGb7DYgA3gHO/a2nASbvMQ8aTHiTRe+wZEAleQnoFBEfdlzLzoN6qqBYaElPZR7MXxKz2FDl4LUEB8f2VJ3OYnZYdlpWWVYeZ1Zu0M4/wFns7p7mAnqWzaxJ27Kdo3+LbeKFVQpCADo/j8NBHC9lbq7Z38yVxHBWKKQLr3LfoqY1Qo1AhIgxIbhQBEr8IXS0v/1WbL9Vd/MbOm3CMpY9KQrT6VlKwOYxFhgXSJXYZIkGXFbe3Ne32yjIR2eKWhVBUJTtarC1hl1gTg7uCYWX3ERk6IA9QArJyJX78fJAml9JcjvTq4WlRyKTKQRxV+VKspQkC9dgMAi5ipjpvEJXt5lIIQe0ErpB7e5lrFXLbg1VXH60tXGN59oE27T4oxl3N8t6jf5t4IcjYGku8TLzis5x5rH/CMeYx3WuMC+fyzJgGPwwZDgxDH8YMMqJ9UYuRvyW81KuYYvqi+Q6umFn7GJU3/HiqqJIzBAHFF21Vgpuu9koo2uiu9nttuBlMhaOPwPPx03d489b+Z8fkKrc7yLeBfF6SifpKcngt4N5waoSVft1oQHaLTklddILCC7wRlJl+7fwFL8P6w3vIbdZZzo7n21MiE/z7OCdPh1GevC5lT/+vLuqfOZC+YfyVvkF4F9kGjCV4TrYGfYYGKbqUqdday/RhxcJzIX570028te+q6uDDDOTv/bxi9K35kJoa3IL/VKt6zRVN9UQzIeu63bNmArYv0mwQmVvznl3+PDuMBDpvMgx3CkMzG678I5DD+ZvFGwCUUN9zl1QuAHhnVCfQL5JHS/IZM8Fio+K09BrFLpZewu9x+HcQ+FEsEMk9Z3LZAviN6mLskBJ7HSIPI0/aIzX6NddhroNZ2IaffygcRo/LCDmHOBIomZQIhEzgzIiaQY9BpPgHXpfqzP+KPMowWkL5eET0lY7wusiO+J41FYq3xHPn8C/ekaccBb+LXMmTbx8yqxf2M7dAblSj9LC/5vcA9yo2+fV+QkrLgOfvVZEKVan+W2kDLnFg1CveH/jIH01JEboAJdt6A+1xrZuUVo1w+W8g0j+GDQZV8Gqt8Wywm5nrJz5pftWKLkJFKFjIx5P9atu/Y7Syfo8T9uUcA88AQ32AcifS/lEb3GdMRGBT+s0Je/wnIwHECaW6Va3oaf3wX1jCHL8RQlHYU8eRPp1hA1JqgPLCBE+JBMLnknCX745+wtycGJN8sg2Q03kCeDVjyap6QLfhBFHvcolxwe/Hj7gJbHg7j6gJNQl7SSiO53PGS+iWw6oC3cuejMxx6ZUr3c2YbIyAiZWPT7z/bTQQEp2NPstxX2+3fuO2ZD00brga3KdQFhBYf+sztmjF/fSJqaqvf9QWcnC8ps/6f1OhjQrU2Oz3UkIRdpo0rCZ/nrC2mPHuwPxuX997x8OwyJYjL3XxD9sn+AXr2cSRs5lZoalZiBBLJnD144FByVZ8/lLXFB8fEWAwuDX29+6u2xtzp0pKRI6YjD8wMnXZj7T1/f0ALDFfnSQCtf7j5O+k3NtNgHgMICO4+OOw2O4exsIj4mrs8DSNjhrDLK5dfZfoHSJ1PvepqOJMnIR2SqNIuwJLAJHYMhlCh/EbwE/vigM/hNRPmNCi4ww3FslkRdVVl7f+PEVJiKSgqRPpiEslOUp6bIMO3BVtOg/he6G9aZ0Dv6pYrJrZPGPCizlt/GKWIFVNJ5lN2AUy/PfaVsoMLRAkgJfXrtksQYduRorsLT4Odm/mkzw92CuF54e8PzR2vTlj0vmQpGHW9rIGWT7V38mQz0kCLCu10cwuCYht+TPsj8/HXd4Og/BNNKxvmQWUgLBkN7R4HE6oJdeIXj17sMkBFtMrRWMVL6Xd7jbDohpMgy90tXOh+dYxJ0TfZuqs/MxIYiel+mXfzAXOi1G96yWb2/5Mn8RkHBYjKKI5tut02lXgvGEld1r1J4B/SikBR6ufLLlRyme6llgAcHciE28wZl+QlqVU9l3PwJqQK6cZWzRwvUNlOJX1T7qwMA7eYZnnSRVu8YsXSFz6/9gV4wubIcxQUBuNaGxfQc2mHTjrA/p77QEGxU1fefHUIv5GLi2jLiED9NXHT+07iVWsrQseTR2EOZFTTmyaAMd2BW7yXk/02JjM20EB0HHwLFVNBqREFGWr4bCodJ8QgSRRmuYHFh7K7FcEzp8V8uKXMvhUksbsQFDBnuU92Vv/cngHIpifXjVG6opVwHl1WKXzedK1obwNSk7NcgoL1zyqzTH+DInyq2OFbsI6xY71Tl2qdza816FrKCnKXUiK17v72LeWh1/qqs0Nog0YiR3DwlU9/n++Fs3OiQsSqKTeolRUa0foQYyvYo/nOJnvC87zc7Es87suovhcDAt3l0Q+N7Rgt5Fu1NGn1zFMJnoVUNmXsVA1qEw/RQ03tTE+C9Zo2ZKZhmXb7w1DXa8cz5FOaE2EK19HUzN3i5x7yt3l5UcFw0elwd6hPSsfTxy4CYBz3tj89YjwchPI526Pny4QeSupwSJgIMkXUIpFLTFS0CQeizV/3EQNdPiP+z+4Lkc0u6e+xWrW3xAK63ZMBX545vTK039p1coXhfeceTwxqsnZDlX6+qOilO5F1ONHQ2s4t43zpzqZXJ3jdv7v4npd5rqFbhK/rZbpP/tzrurVVYzZ+f0oOH8tPM2vH/VldQsn+3GuTy1AQPIvIVDPuhSfP65FqZl9i+mXy7f4hU5TxjLnB0CClacoo9vSjs4KuJl/mKRstQ1xoxeYLmP5wLJpTiVoDaBu42UfPSGpZixfyIxnM83DZsrsk2HW1soUHFW25uwXslnDFbFCmWGliVOvSo1P29YluUfgqOtbfs/lBrCdpQYOQTG3oaZgmi8Ger71wrzqcnJO74rIWCu4zzLpdpQ9W9mDJB0Ll9ab7z+w3L2Rzf4xGUGF1Nt5hlUMZUxb0MtDs6M89lw1I/+QIfUVnFTn2ZN5c6KA5yPNU3/ZkUbiXMJTZgUMWwXIi5djhjIQGYh6Jz0ICgtHQqEgtLSgjaW9DToV0xPz+n1nX9oRhqr1BbpzdK2a3H65E+VStLj91Rf6vvHJGXlZ0CgCW3TPUWrHCOZPZwPuuEnih5O60qLc8BpWytyKNLeux8ccOoymXLp1OxRCvkYmE5fDUkTEmTQTSzWFRtaH4o5OrWUZBdsBvW1oZgFxALhHSPQ0HrEAo745mt1xWDPSoHzIUhviEcPW2xU/dK34HJp8zXMa63ubr/Eud4N+FuHhWBN8hpzRX3x4sbDy+H8luO5/GZ7um2Qw+yKmEZL1tFykN++UjBuejxJeWwrt8s9UT7qfGyY07Mozq9LMM4+7j0aEMXr4cXprk0M+MwaFWzEYzS/MsHu9ADFV/PvLbELgyB1fnsADQf2oJyN7/kmp6MtQ0A8MvHs+WT4MfL8GTIJspN2hAoUbJWkUx0wbBr0n56UroTyYmjyvI9EjFweyvs2oDko489GqPJwGBLwEjWhU9+/H0bXwo932K4Y918ucpsVyhTYgWxZUjwkg6Tx8dIQISzYQApnrW62fp3MmPg0vws5jH7/HrohSrvwJMZmclOp1IScPiFOY+l+mJ2jUOdm5+eolLnXnA+y97KH0g/ACbezo/HkqD8nZCkohoe2DdVtAQWdxl7+UEYWXA9Va1ICIC/wYx2aFB/f+yHPaveedP6N61E86HO+yNCnyt3UX6MNUjmdEXI1miefmQrFQzeOGlNUGrf02S6TcG9NiM0fK9lh3sMq6yHgY06EK9ZvLoHdU+1jYk6Bewn8+ANcgcOiFDtEtXExftcM+0I880VCj1whaFJ/J2AwQOg8SQgK6qWvMJzotB9o42+zrWP3BAUbYFWPXdKL4Wm9Z9dgu6f/Ej2Z55wJJcBOjdD0r2gzdtOFocrqmSHMJrR5/6sDznfCdLEoDMCwEzf5C6OIxXUKEwEE2Z1Penwwd0W0RKIw0dk6A3h6n6pDoQucj+5tyx9aWV15MTqtXDL22lpXgJvx7uO1RlZ974ywchelX0vxZlbrzHQTS3B2e7BBJJ5kV41zoMlNbMg9YZlzZ4c8TYbsLN57y/wN6dqwxtLFTXwibrU2GWqP8Rw3h49ZTxN+o7SPmJbRp4lKROK7eSu0P5U8pE8qrdh7FmvV/nh4JHP/BV8cT+ZVOoydne5cd+tZy6sAAUugzwdpBm434uBnhvFEDcdPybUR1hMpxc7eeqo162N88bHN60tb1nQ5Fs058ZP09vbUmYh7Gfy8kzdep5QRA+0dLs0cClhcq1xh9oCZcCPF+ewCQ8b0r6K7xCVqPPRJT260VdNc4qeLr6wLO3XlgAuLg9K95kyhiMPhFqFj5qN3Bf7hHBl26otBpOOExf93Uv89IitydfmzLPzg/5yaRZEMHhYH6Gc83z3w1Hb99JW1NM9vT/YQ2cRvH/5ftyZmVr6t3HQN9bh4SGa/7NO3FyxiGqnP1GQsSBIRL3Q6soNhAvAuf4abmKoMV2c+o/vpWfW3GwjodGEVRpbM+6Qp2C0so8kNbxx7z51edcBQJqCXFEOnDjjI8Ac2f7T4uPl3I7kNowS4qunHmDIaFD5m3S+qxfy+kd1smxzFu53eaq1YYV2JojnDhAxXxyCsTQHYWcLLOCBNuuVCLH2fzCzofuYRlKTK8SgP+DvQNyZ4fjY22NfcoK7V2PISgjtf/igyBJx4bu2BeLop/ahA3brBOszZyHOhQSfTnu6qDIdzYKUDXIQODcFNCa+VSAXVUEw+ep9+StMQbq+u2cqQ02Usf4yRMcrKsEKQ7h0nW5FWZMdJpJvwFGgb/8PcNjW9jbmNMTXF3MYcW367cQdls9EW7ywEqbQbpfXTLdTEBIV4iwhSKSt0pke/neDNww+MJvzK7NDGJGpWzchKeZoXjzAwkrCJ2amNdpxcABxEcRoFAE3LaQBSSbcEd0gUHS0ChuMFIIJEUdFiIISiowyyfhb5JfsVa1NCaGw/4He2wCm1MJa/p4mFa1Nfisdfrcl+NQmc+t6cGvp60+yn0FhO7FeUskbzsQnuBwssrpNkBCk1wz0qixQpulrbXPJre75RQ2t9JzQF5cXuvdOnsWhxjcdpR8sTChb8inkDyzvUevXosXXsKkYQMdhovUDlp1iP65Pn9d8fK1aI6Q7Z/K5UwTIpzkImzUhctKSmBCnkRAvNYrvEqZEKv5RFYWbP9GJ8YDM0hK0IlaruD7RHyhcZlp8P88ts3nrTVRmHL45YHd2z8VtzaW24Qxcf1BH1w4HH3kSE4hqKknNwgwKRczBu3EEcAGLlNTES/chMKOzvWnDAYdxaJo+YqesnGm5nVOVkdu741HmTzRU2NnuBpEYgWbJEEiLAUUBynA+xGUSKqwgZcZDfVkrgdtOnGxILRTeS9ibG8lpl8IFH0A6T6g/hlO6g672drPsJac8aq9mnck4ukUb0zZuolkeCRi0LMtO22YY0ahfWlzF8Gjg+QSbg2wBoD/mC+AOgbaoVaQJA24j0I54AaB/YiQjCumoqEWkFQFuLAr+YUQ+RaO2Ot4gN1F/yO9KgynIbvl6/3U0k6tzVWfij9u1yUAjpdEgfnES0IfNIskrrKp9FSVSg5Cg8AlqzK0gRxUdtkqWqySbEG2Iu248stjWd/22on1aP7LKRXEcswXYwlOKGJPI05lgcRB7zv3aErm1zCIkDa4ufti6jnTKDKDJPsSxMkuUKoop54ysS2DjsHyR+1lyv4MXIi8Qkmvd3PAn9bAJ3r7Y+2QrJk1rtqEtATLFCwYw4tdrqE/Ay9T2F4u2HzLIk1C4c01ZbHvZuiHZIeia0b8kuhEuB0OgQpyBYG7eVWIqhKUjdo2B2XEmdW5LSWqGT5hamtY6ciow4T2wZ6IceuUDmzIViFy51oDh6psESQmICgD0bhxNVzpwqvTlPlUugH3rlAm3eXKgqCJd6/TiYTpBmKLI75wxawKhgozCk3FaedHad3yDyqebTlG30F7DDarU927psuoYcWIWJW0Y7IlZZpkxdOTODNCVVMP1BKLNYpDiZz63IdBZSVurIYkCT9bKGEtisj0IkZ48tOtznfwMiXkpjn+2+rf8FMAfPXdk2sxUi8FrOQ23XFqOzFNkhhFhquSkjGeWKEJC69UQpxK7+gJCYiRFa4cSc7M+GlWfm07I6JSt9O2TDPQtYVlSh6XOvbvMwLdtxMTDpYNGlR58BQ0aMmTBlho2DawaWG5as8FizYZsar5Qi4PoKMKDG2Iexln6AKS7v80JgLY21z1PAps4NE5pGhBL7oLfz9vYXZ0wrB9x/LoD12ZgNp61mbFpksLRuBlh8Shvym48+YvgmTs3nzTdfX6+ZfNF+ODt7e/5+v3xrhkSpLpIquXXn8zwQU4VcY42aMqyBiaC7wtxc7big1LRfX6mh7gR0NviNcB6sUeNUkVwtxQT6ZxpNNDrXU8z9uhXjj6ncXlb+/wfv5KOoRje0lzitqammu/u3Iq3JCkW87cKYKYNSCQAAAA==') format('woff2'),url('../font/iconfont/iconfont.woff?t=1554539234601') format('woff'),url('../font/iconfont/iconfont.ttf?t=1554539234601') format('truetype'),url('../font/iconfont/iconfont.svg?t=1554539234601#iconfont') format('svg')}.iconfont{font-family:"iconfont"!important;font-size:16px;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-bloger:before{content:"\e646"}.icon-weibo:before{content:"\e61a"}.icon-wechat:before{content:"\e694"}.icon-bilibili_text:before{content:"\e60e"}.icon-xunlei:before{content:"\e612"}.icon-android:before{content:"\e610"}.icon-github:before{content:"\e60b"}.icon-2345_Browser:before{content:"\e63b"}.icon-Opera_Browser:before{content:"\e766"}.icon-safari:before{content:"\e603"}.icon-firefox:before{content:"\e77f"}.icon-Browser:before{content:"\e60f"}.icon-Aoyou_Browser:before{content:"\e946"}.icon-TheWorld_Browser:before{content:"\e947"}.icon-QQGroup:before{content:"\e632"}.icon-LBBROWSER:before{content:"\e721"}.icon-coolapk:before{content:"\e66b"}.icon-osx:before{content:"\e604"}.icon-UC_Browser:before{content:"\e67c"}.icon-os:before{content:"\e649"}.icon-xiaomi:before{content:"\e606"}.icon-edge:before{content:"\e638"}.icon-windows_old:before{content:"\e608"}.icon-QQBrowser:before{content:"\e61d"}.icon-steam:before{content:"\e6db"}.icon-Yandex_Browser:before{content:"\e8f3"}.icon-ios:before{content:"\e61e"}.icon-like:before{content:"\e622"}.icon-Baidu_Browser:before{content:"\e8d0"}.icon-linux:before{content:"\f1e8"}.icon-bilibili:before{content:"\e6e9"}.icon-IE:before{content:"\e862"}.icon-qq:before{content:"\e6e8"}.icon-Sougou_Browser:before{content:"\e69f"}.icon-author:before{content:"\e84e"}.icon-windows:before{content:"\e647"}.icon-360_Browser:before{content:"\e800"}.icon-twitter:before{content:"\e617"}.icon-chrome:before{content:"\e6e7"} \ No newline at end of file diff --git a/others/css/mdui.min.css b/others/css/mdui.min.css new file mode 100644 index 0000000..5387624 --- /dev/null +++ b/others/css/mdui.min.css @@ -0,0 +1,6 @@ +/*! + * mdui v0.4.2 (https://mdui.org) + * Copyright 2016-2018 zdhxiong + * Licensed under MIT + */.mdui-theme-primary-amber .mdui-color-theme{color:rgba(0,0,0,.87)!important;background-color:#ffc107!important}.mdui-theme-primary-amber .mdui-color-theme-50{color:rgba(0,0,0,.87)!important;background-color:#fff8e1!important}.mdui-theme-primary-amber .mdui-color-theme-100{color:rgba(0,0,0,.87)!important;background-color:#ffecb3!important}.mdui-theme-primary-amber .mdui-color-theme-200{color:rgba(0,0,0,.87)!important;background-color:#ffe082!important}.mdui-theme-primary-amber .mdui-color-theme-300{color:rgba(0,0,0,.87)!important;background-color:#ffd54f!important}.mdui-theme-primary-amber .mdui-color-theme-400{color:rgba(0,0,0,.87)!important;background-color:#ffca28!important}.mdui-theme-primary-amber .mdui-color-theme-500{color:rgba(0,0,0,.87)!important;background-color:#ffc107!important}.mdui-theme-primary-amber .mdui-color-theme-600{color:rgba(0,0,0,.87)!important;background-color:#ffb300!important}.mdui-theme-primary-amber .mdui-color-theme-700{color:rgba(0,0,0,.87)!important;background-color:#ffa000!important}.mdui-theme-primary-amber .mdui-color-theme-800{color:rgba(0,0,0,.87)!important;background-color:#ff8f00!important}.mdui-theme-primary-amber .mdui-color-theme-900{color:rgba(0,0,0,.87)!important;background-color:#ff6f00!important}.mdui-theme-primary-blue .mdui-color-theme{color:rgba(0,0,0,.87)!important;background-color:#2196f3!important}.mdui-theme-primary-blue .mdui-color-theme-50{color:rgba(0,0,0,.87)!important;background-color:#e3f2fd!important}.mdui-theme-primary-blue .mdui-color-theme-100{color:rgba(0,0,0,.87)!important;background-color:#bbdefb!important}.mdui-theme-primary-blue .mdui-color-theme-200{color:rgba(0,0,0,.87)!important;background-color:#90caf9!important}.mdui-theme-primary-blue .mdui-color-theme-300{color:rgba(0,0,0,.87)!important;background-color:#64b5f6!important}.mdui-theme-primary-blue .mdui-color-theme-400{color:rgba(0,0,0,.87)!important;background-color:#42a5f5!important}.mdui-theme-primary-blue .mdui-color-theme-500{color:rgba(0,0,0,.87)!important;background-color:#2196f3!important}.mdui-theme-primary-blue .mdui-color-theme-600{color:#fff!important;background-color:#1e88e5!important}.mdui-theme-primary-blue .mdui-color-theme-700{color:#fff!important;background-color:#1976d2!important}.mdui-theme-primary-blue .mdui-color-theme-800{color:#fff!important;background-color:#1565c0!important}.mdui-theme-primary-blue .mdui-color-theme-900{color:#fff!important;background-color:#0d47a1!important}.mdui-theme-primary-blue-grey .mdui-color-theme{color:#fff!important;background-color:#607d8b!important}.mdui-theme-primary-blue-grey .mdui-color-theme-50{color:rgba(0,0,0,.87)!important;background-color:#eceff1!important}.mdui-theme-primary-blue-grey .mdui-color-theme-100{color:rgba(0,0,0,.87)!important;background-color:#cfd8dc!important}.mdui-theme-primary-blue-grey .mdui-color-theme-200{color:rgba(0,0,0,.87)!important;background-color:#b0bec5!important}.mdui-theme-primary-blue-grey .mdui-color-theme-300{color:rgba(0,0,0,.87)!important;background-color:#90a4ae!important}.mdui-theme-primary-blue-grey .mdui-color-theme-400{color:#fff!important;background-color:#78909c!important}.mdui-theme-primary-blue-grey .mdui-color-theme-500{color:#fff!important;background-color:#607d8b!important}.mdui-theme-primary-blue-grey .mdui-color-theme-600{color:#fff!important;background-color:#546e7a!important}.mdui-theme-primary-blue-grey .mdui-color-theme-700{color:#fff!important;background-color:#455a64!important}.mdui-theme-primary-blue-grey .mdui-color-theme-800{color:#fff!important;background-color:#37474f!important}.mdui-theme-primary-blue-grey .mdui-color-theme-900{color:#fff!important;background-color:#263238!important}.mdui-theme-primary-brown .mdui-color-theme{color:#fff!important;background-color:#795548!important}.mdui-theme-primary-brown .mdui-color-theme-50{color:rgba(0,0,0,.87)!important;background-color:#efebe9!important}.mdui-theme-primary-brown .mdui-color-theme-100{color:rgba(0,0,0,.87)!important;background-color:#d7ccc8!important}.mdui-theme-primary-brown .mdui-color-theme-200{color:rgba(0,0,0,.87)!important;background-color:#bcaaa4!important}.mdui-theme-primary-brown .mdui-color-theme-300{color:#fff!important;background-color:#a1887f!important}.mdui-theme-primary-brown .mdui-color-theme-400{color:#fff!important;background-color:#8d6e63!important}.mdui-theme-primary-brown .mdui-color-theme-500{color:#fff!important;background-color:#795548!important}.mdui-theme-primary-brown .mdui-color-theme-600{color:#fff!important;background-color:#6d4c41!important}.mdui-theme-primary-brown .mdui-color-theme-700{color:#fff!important;background-color:#5d4037!important}.mdui-theme-primary-brown .mdui-color-theme-800{color:#fff!important;background-color:#4e342e!important}.mdui-theme-primary-brown .mdui-color-theme-900{color:#fff!important;background-color:#3e2723!important}.mdui-theme-primary-cyan .mdui-color-theme{color:rgba(0,0,0,.87)!important;background-color:#00bcd4!important}.mdui-theme-primary-cyan .mdui-color-theme-50{color:rgba(0,0,0,.87)!important;background-color:#e0f7fa!important}.mdui-theme-primary-cyan .mdui-color-theme-100{color:rgba(0,0,0,.87)!important;background-color:#b2ebf2!important}.mdui-theme-primary-cyan .mdui-color-theme-200{color:rgba(0,0,0,.87)!important;background-color:#80deea!important}.mdui-theme-primary-cyan .mdui-color-theme-300{color:rgba(0,0,0,.87)!important;background-color:#4dd0e1!important}.mdui-theme-primary-cyan .mdui-color-theme-400{color:rgba(0,0,0,.87)!important;background-color:#26c6da!important}.mdui-theme-primary-cyan .mdui-color-theme-500{color:rgba(0,0,0,.87)!important;background-color:#00bcd4!important}.mdui-theme-primary-cyan .mdui-color-theme-600{color:rgba(0,0,0,.87)!important;background-color:#00acc1!important}.mdui-theme-primary-cyan .mdui-color-theme-700{color:#fff!important;background-color:#0097a7!important}.mdui-theme-primary-cyan .mdui-color-theme-800{color:#fff!important;background-color:#00838f!important}.mdui-theme-primary-cyan .mdui-color-theme-900{color:#fff!important;background-color:#006064!important}.mdui-theme-primary-deep-orange .mdui-color-theme{color:rgba(0,0,0,.87)!important;background-color:#ff5722!important}.mdui-theme-primary-deep-orange .mdui-color-theme-50{color:rgba(0,0,0,.87)!important;background-color:#fbe9e7!important}.mdui-theme-primary-deep-orange .mdui-color-theme-100{color:rgba(0,0,0,.87)!important;background-color:#ffccbc!important}.mdui-theme-primary-deep-orange .mdui-color-theme-200{color:rgba(0,0,0,.87)!important;background-color:#ffab91!important}.mdui-theme-primary-deep-orange .mdui-color-theme-300{color:rgba(0,0,0,.87)!important;background-color:#ff8a65!important}.mdui-theme-primary-deep-orange .mdui-color-theme-400{color:rgba(0,0,0,.87)!important;background-color:#ff7043!important}.mdui-theme-primary-deep-orange .mdui-color-theme-500{color:rgba(0,0,0,.87)!important;background-color:#ff5722!important}.mdui-theme-primary-deep-orange .mdui-color-theme-600{color:#fff!important;background-color:#f4511e!important}.mdui-theme-primary-deep-orange .mdui-color-theme-700{color:#fff!important;background-color:#e64a19!important}.mdui-theme-primary-deep-orange .mdui-color-theme-800{color:#fff!important;background-color:#d84315!important}.mdui-theme-primary-deep-orange .mdui-color-theme-900{color:#fff!important;background-color:#bf360c!important}.mdui-theme-primary-deep-purple .mdui-color-theme{color:#fff!important;background-color:#673ab7!important}.mdui-theme-primary-deep-purple .mdui-color-theme-50{color:rgba(0,0,0,.87)!important;background-color:#ede7f6!important}.mdui-theme-primary-deep-purple .mdui-color-theme-100{color:rgba(0,0,0,.87)!important;background-color:#d1c4e9!important}.mdui-theme-primary-deep-purple .mdui-color-theme-200{color:rgba(0,0,0,.87)!important;background-color:#b39ddb!important}.mdui-theme-primary-deep-purple .mdui-color-theme-300{color:#fff!important;background-color:#9575cd!important}.mdui-theme-primary-deep-purple .mdui-color-theme-400{color:#fff!important;background-color:#7e57c2!important}.mdui-theme-primary-deep-purple .mdui-color-theme-500{color:#fff!important;background-color:#673ab7!important}.mdui-theme-primary-deep-purple .mdui-color-theme-600{color:#fff!important;background-color:#5e35b1!important}.mdui-theme-primary-deep-purple .mdui-color-theme-700{color:#fff!important;background-color:#512da8!important}.mdui-theme-primary-deep-purple .mdui-color-theme-800{color:#fff!important;background-color:#4527a0!important}.mdui-theme-primary-deep-purple .mdui-color-theme-900{color:#fff!important;background-color:#311b92!important}.mdui-theme-primary-green .mdui-color-theme{color:rgba(0,0,0,.87)!important;background-color:#4caf50!important}.mdui-theme-primary-green .mdui-color-theme-50{color:rgba(0,0,0,.87)!important;background-color:#e8f5e9!important}.mdui-theme-primary-green .mdui-color-theme-100{color:rgba(0,0,0,.87)!important;background-color:#c8e6c9!important}.mdui-theme-primary-green .mdui-color-theme-200{color:rgba(0,0,0,.87)!important;background-color:#a5d6a7!important}.mdui-theme-primary-green .mdui-color-theme-300{color:rgba(0,0,0,.87)!important;background-color:#81c784!important}.mdui-theme-primary-green .mdui-color-theme-400{color:rgba(0,0,0,.87)!important;background-color:#66bb6a!important}.mdui-theme-primary-green .mdui-color-theme-500{color:rgba(0,0,0,.87)!important;background-color:#4caf50!important}.mdui-theme-primary-green .mdui-color-theme-600{color:#fff!important;background-color:#43a047!important}.mdui-theme-primary-green .mdui-color-theme-700{color:#fff!important;background-color:#388e3c!important}.mdui-theme-primary-green .mdui-color-theme-800{color:#fff!important;background-color:#2e7d32!important}.mdui-theme-primary-green .mdui-color-theme-900{color:#fff!important;background-color:#1b5e20!important}.mdui-theme-primary-grey .mdui-color-theme{color:rgba(0,0,0,.87)!important;background-color:#9e9e9e!important}.mdui-theme-primary-grey .mdui-color-theme-50{color:rgba(0,0,0,.87)!important;background-color:#fafafa!important}.mdui-theme-primary-grey .mdui-color-theme-100{color:rgba(0,0,0,.87)!important;background-color:#f5f5f5!important}.mdui-theme-primary-grey .mdui-color-theme-200{color:rgba(0,0,0,.87)!important;background-color:#eee!important}.mdui-theme-primary-grey .mdui-color-theme-300{color:rgba(0,0,0,.87)!important;background-color:#e0e0e0!important}.mdui-theme-primary-grey .mdui-color-theme-400{color:rgba(0,0,0,.87)!important;background-color:#bdbdbd!important}.mdui-theme-primary-grey .mdui-color-theme-500{color:rgba(0,0,0,.87)!important;background-color:#9e9e9e!important}.mdui-theme-primary-grey .mdui-color-theme-600{color:#fff!important;background-color:#757575!important}.mdui-theme-primary-grey .mdui-color-theme-700{color:#fff!important;background-color:#616161!important}.mdui-theme-primary-grey .mdui-color-theme-800{color:#fff!important;background-color:#424242!important}.mdui-theme-primary-grey .mdui-color-theme-900{color:#fff!important;background-color:#212121!important}.mdui-theme-primary-indigo .mdui-color-theme{color:#fff!important;background-color:#3f51b5!important}.mdui-theme-primary-indigo .mdui-color-theme-50{color:rgba(0,0,0,.87)!important;background-color:#e8eaf6!important}.mdui-theme-primary-indigo .mdui-color-theme-100{color:rgba(0,0,0,.87)!important;background-color:#c5cae9!important}.mdui-theme-primary-indigo .mdui-color-theme-200{color:rgba(0,0,0,.87)!important;background-color:#9fa8da!important}.mdui-theme-primary-indigo .mdui-color-theme-300{color:#fff!important;background-color:#7986cb!important}.mdui-theme-primary-indigo .mdui-color-theme-400{color:#fff!important;background-color:#5c6bc0!important}.mdui-theme-primary-indigo .mdui-color-theme-500{color:#fff!important;background-color:#3f51b5!important}.mdui-theme-primary-indigo .mdui-color-theme-600{color:#fff!important;background-color:#3949ab!important}.mdui-theme-primary-indigo .mdui-color-theme-700{color:#fff!important;background-color:#303f9f!important}.mdui-theme-primary-indigo .mdui-color-theme-800{color:#fff!important;background-color:#283593!important}.mdui-theme-primary-indigo .mdui-color-theme-900{color:#fff!important;background-color:#1a237e!important}.mdui-theme-primary-light-blue .mdui-color-theme{color:rgba(0,0,0,.87)!important;background-color:#03a9f4!important}.mdui-theme-primary-light-blue .mdui-color-theme-50{color:rgba(0,0,0,.87)!important;background-color:#e1f5fe!important}.mdui-theme-primary-light-blue .mdui-color-theme-100{color:rgba(0,0,0,.87)!important;background-color:#b3e5fc!important}.mdui-theme-primary-light-blue .mdui-color-theme-200{color:rgba(0,0,0,.87)!important;background-color:#81d4fa!important}.mdui-theme-primary-light-blue .mdui-color-theme-300{color:rgba(0,0,0,.87)!important;background-color:#4fc3f7!important}.mdui-theme-primary-light-blue .mdui-color-theme-400{color:rgba(0,0,0,.87)!important;background-color:#29b6f6!important}.mdui-theme-primary-light-blue .mdui-color-theme-500{color:rgba(0,0,0,.87)!important;background-color:#03a9f4!important}.mdui-theme-primary-light-blue .mdui-color-theme-600{color:rgba(0,0,0,.87)!important;background-color:#039be5!important}.mdui-theme-primary-light-blue .mdui-color-theme-700{color:#fff!important;background-color:#0288d1!important}.mdui-theme-primary-light-blue .mdui-color-theme-800{color:#fff!important;background-color:#0277bd!important}.mdui-theme-primary-light-blue .mdui-color-theme-900{color:#fff!important;background-color:#01579b!important}.mdui-theme-primary-light-green .mdui-color-theme{color:rgba(0,0,0,.87)!important;background-color:#8bc34a!important}.mdui-theme-primary-light-green .mdui-color-theme-50{color:rgba(0,0,0,.87)!important;background-color:#f1f8e9!important}.mdui-theme-primary-light-green .mdui-color-theme-100{color:rgba(0,0,0,.87)!important;background-color:#dcedc8!important}.mdui-theme-primary-light-green .mdui-color-theme-200{color:rgba(0,0,0,.87)!important;background-color:#c5e1a5!important}.mdui-theme-primary-light-green .mdui-color-theme-300{color:rgba(0,0,0,.87)!important;background-color:#aed581!important}.mdui-theme-primary-light-green .mdui-color-theme-400{color:rgba(0,0,0,.87)!important;background-color:#9ccc65!important}.mdui-theme-primary-light-green .mdui-color-theme-500{color:rgba(0,0,0,.87)!important;background-color:#8bc34a!important}.mdui-theme-primary-light-green .mdui-color-theme-600{color:rgba(0,0,0,.87)!important;background-color:#7cb342!important}.mdui-theme-primary-light-green .mdui-color-theme-700{color:rgba(0,0,0,.87)!important;background-color:#689f38!important}.mdui-theme-primary-light-green .mdui-color-theme-800{color:#fff!important;background-color:#558b2f!important}.mdui-theme-primary-light-green .mdui-color-theme-900{color:#fff!important;background-color:#33691e!important}.mdui-theme-primary-lime .mdui-color-theme{color:rgba(0,0,0,.87)!important;background-color:#cddc39!important}.mdui-theme-primary-lime .mdui-color-theme-50{color:rgba(0,0,0,.87)!important;background-color:#f9fbe7!important}.mdui-theme-primary-lime .mdui-color-theme-100{color:rgba(0,0,0,.87)!important;background-color:#f0f4c3!important}.mdui-theme-primary-lime .mdui-color-theme-200{color:rgba(0,0,0,.87)!important;background-color:#e6ee9c!important}.mdui-theme-primary-lime .mdui-color-theme-300{color:rgba(0,0,0,.87)!important;background-color:#dce775!important}.mdui-theme-primary-lime .mdui-color-theme-400{color:rgba(0,0,0,.87)!important;background-color:#d4e157!important}.mdui-theme-primary-lime .mdui-color-theme-500{color:rgba(0,0,0,.87)!important;background-color:#cddc39!important}.mdui-theme-primary-lime .mdui-color-theme-600{color:rgba(0,0,0,.87)!important;background-color:#c0ca33!important}.mdui-theme-primary-lime .mdui-color-theme-700{color:rgba(0,0,0,.87)!important;background-color:#afb42b!important}.mdui-theme-primary-lime .mdui-color-theme-800{color:rgba(0,0,0,.87)!important;background-color:#9e9d24!important}.mdui-theme-primary-lime .mdui-color-theme-900{color:#fff!important;background-color:#827717!important}.mdui-theme-primary-orange .mdui-color-theme{color:rgba(0,0,0,.87)!important;background-color:#ff9800!important}.mdui-theme-primary-orange .mdui-color-theme-50{color:rgba(0,0,0,.87)!important;background-color:#fff3e0!important}.mdui-theme-primary-orange .mdui-color-theme-100{color:rgba(0,0,0,.87)!important;background-color:#ffe0b2!important}.mdui-theme-primary-orange .mdui-color-theme-200{color:rgba(0,0,0,.87)!important;background-color:#ffcc80!important}.mdui-theme-primary-orange .mdui-color-theme-300{color:rgba(0,0,0,.87)!important;background-color:#ffb74d!important}.mdui-theme-primary-orange .mdui-color-theme-400{color:rgba(0,0,0,.87)!important;background-color:#ffa726!important}.mdui-theme-primary-orange .mdui-color-theme-500{color:rgba(0,0,0,.87)!important;background-color:#ff9800!important}.mdui-theme-primary-orange .mdui-color-theme-600{color:rgba(0,0,0,.87)!important;background-color:#fb8c00!important}.mdui-theme-primary-orange .mdui-color-theme-700{color:rgba(0,0,0,.87)!important;background-color:#f57c00!important}.mdui-theme-primary-orange .mdui-color-theme-800{color:rgba(0,0,0,.87)!important;background-color:#ef6c00!important}.mdui-theme-primary-orange .mdui-color-theme-900{color:#fff!important;background-color:#e65100!important}.mdui-theme-primary-pink .mdui-color-theme{color:#fff!important;background-color:#e91e63!important}.mdui-theme-primary-pink .mdui-color-theme-50{color:rgba(0,0,0,.87)!important;background-color:#fce4ec!important}.mdui-theme-primary-pink .mdui-color-theme-100{color:rgba(0,0,0,.87)!important;background-color:#f8bbd0!important}.mdui-theme-primary-pink .mdui-color-theme-200{color:rgba(0,0,0,.87)!important;background-color:#f48fb1!important}.mdui-theme-primary-pink .mdui-color-theme-300{color:rgba(0,0,0,.87)!important;background-color:#f06292!important}.mdui-theme-primary-pink .mdui-color-theme-400{color:#fff!important;background-color:#ec407a!important}.mdui-theme-primary-pink .mdui-color-theme-500{color:#fff!important;background-color:#e91e63!important}.mdui-theme-primary-pink .mdui-color-theme-600{color:#fff!important;background-color:#d81b60!important}.mdui-theme-primary-pink .mdui-color-theme-700{color:#fff!important;background-color:#c2185b!important}.mdui-theme-primary-pink .mdui-color-theme-800{color:#fff!important;background-color:#ad1457!important}.mdui-theme-primary-pink .mdui-color-theme-900{color:#fff!important;background-color:#880e4f!important}.mdui-theme-primary-purple .mdui-color-theme{color:#fff!important;background-color:#9c27b0!important}.mdui-theme-primary-purple .mdui-color-theme-50{color:rgba(0,0,0,.87)!important;background-color:#f3e5f5!important}.mdui-theme-primary-purple .mdui-color-theme-100{color:rgba(0,0,0,.87)!important;background-color:#e1bee7!important}.mdui-theme-primary-purple .mdui-color-theme-200{color:rgba(0,0,0,.87)!important;background-color:#ce93d8!important}.mdui-theme-primary-purple .mdui-color-theme-300{color:#fff!important;background-color:#ba68c8!important}.mdui-theme-primary-purple .mdui-color-theme-400{color:#fff!important;background-color:#ab47bc!important}.mdui-theme-primary-purple .mdui-color-theme-500{color:#fff!important;background-color:#9c27b0!important}.mdui-theme-primary-purple .mdui-color-theme-600{color:#fff!important;background-color:#8e24aa!important}.mdui-theme-primary-purple .mdui-color-theme-700{color:#fff!important;background-color:#7b1fa2!important}.mdui-theme-primary-purple .mdui-color-theme-800{color:#fff!important;background-color:#6a1b9a!important}.mdui-theme-primary-purple .mdui-color-theme-900{color:#fff!important;background-color:#4a148c!important}.mdui-theme-primary-red .mdui-color-theme{color:#fff!important;background-color:#f44336!important}.mdui-theme-primary-red .mdui-color-theme-50{color:rgba(0,0,0,.87)!important;background-color:#ffebee!important}.mdui-theme-primary-red .mdui-color-theme-100{color:rgba(0,0,0,.87)!important;background-color:#ffcdd2!important}.mdui-theme-primary-red .mdui-color-theme-200{color:rgba(0,0,0,.87)!important;background-color:#ef9a9a!important}.mdui-theme-primary-red .mdui-color-theme-300{color:rgba(0,0,0,.87)!important;background-color:#e57373!important}.mdui-theme-primary-red .mdui-color-theme-400{color:#fff!important;background-color:#ef5350!important}.mdui-theme-primary-red .mdui-color-theme-500{color:#fff!important;background-color:#f44336!important}.mdui-theme-primary-red .mdui-color-theme-600{color:#fff!important;background-color:#e53935!important}.mdui-theme-primary-red .mdui-color-theme-700{color:#fff!important;background-color:#d32f2f!important}.mdui-theme-primary-red .mdui-color-theme-800{color:#fff!important;background-color:#c62828!important}.mdui-theme-primary-red .mdui-color-theme-900{color:#fff!important;background-color:#b71c1c!important}.mdui-theme-primary-teal .mdui-color-theme{color:#fff!important;background-color:#009688!important}.mdui-theme-primary-teal .mdui-color-theme-50{color:rgba(0,0,0,.87)!important;background-color:#e0f2f1!important}.mdui-theme-primary-teal .mdui-color-theme-100{color:rgba(0,0,0,.87)!important;background-color:#b2dfdb!important}.mdui-theme-primary-teal .mdui-color-theme-200{color:rgba(0,0,0,.87)!important;background-color:#80cbc4!important}.mdui-theme-primary-teal .mdui-color-theme-300{color:rgba(0,0,0,.87)!important;background-color:#4db6ac!important}.mdui-theme-primary-teal .mdui-color-theme-400{color:rgba(0,0,0,.87)!important;background-color:#26a69a!important}.mdui-theme-primary-teal .mdui-color-theme-500{color:#fff!important;background-color:#009688!important}.mdui-theme-primary-teal .mdui-color-theme-600{color:#fff!important;background-color:#00897b!important}.mdui-theme-primary-teal .mdui-color-theme-700{color:#fff!important;background-color:#00796b!important}.mdui-theme-primary-teal .mdui-color-theme-800{color:#fff!important;background-color:#00695c!important}.mdui-theme-primary-teal .mdui-color-theme-900{color:#fff!important;background-color:#004d40!important}.mdui-theme-primary-yellow .mdui-color-theme{color:rgba(0,0,0,.87)!important;background-color:#ffeb3b!important}.mdui-theme-primary-yellow .mdui-color-theme-50{color:rgba(0,0,0,.87)!important;background-color:#fffde7!important}.mdui-theme-primary-yellow .mdui-color-theme-100{color:rgba(0,0,0,.87)!important;background-color:#fff9c4!important}.mdui-theme-primary-yellow .mdui-color-theme-200{color:rgba(0,0,0,.87)!important;background-color:#fff59d!important}.mdui-theme-primary-yellow .mdui-color-theme-300{color:rgba(0,0,0,.87)!important;background-color:#fff176!important}.mdui-theme-primary-yellow .mdui-color-theme-400{color:rgba(0,0,0,.87)!important;background-color:#ffee58!important}.mdui-theme-primary-yellow .mdui-color-theme-500{color:rgba(0,0,0,.87)!important;background-color:#ffeb3b!important}.mdui-theme-primary-yellow .mdui-color-theme-600{color:rgba(0,0,0,.87)!important;background-color:#fdd835!important}.mdui-theme-primary-yellow .mdui-color-theme-700{color:rgba(0,0,0,.87)!important;background-color:#fbc02d!important}.mdui-theme-primary-yellow .mdui-color-theme-800{color:rgba(0,0,0,.87)!important;background-color:#f9a825!important}.mdui-theme-primary-yellow .mdui-color-theme-900{color:rgba(0,0,0,.87)!important;background-color:#f57f17!important}.mdui-theme-accent-amber .mdui-color-theme-accent{color:rgba(0,0,0,.87)!important;background-color:#ffd740!important}.mdui-theme-accent-amber .mdui-color-theme-a100{color:rgba(0,0,0,.87)!important;background-color:#ffe57f!important}.mdui-theme-accent-amber .mdui-color-theme-a200{color:rgba(0,0,0,.87)!important;background-color:#ffd740!important}.mdui-theme-accent-amber .mdui-color-theme-a400{color:rgba(0,0,0,.87)!important;background-color:#ffc400!important}.mdui-theme-accent-amber .mdui-color-theme-a700{color:rgba(0,0,0,.87)!important;background-color:#ffab00!important}.mdui-theme-accent-blue .mdui-color-theme-accent{color:#fff!important;background-color:#448aff!important}.mdui-theme-accent-blue .mdui-color-theme-a100{color:rgba(0,0,0,.87)!important;background-color:#82b1ff!important}.mdui-theme-accent-blue .mdui-color-theme-a200{color:#fff!important;background-color:#448aff!important}.mdui-theme-accent-blue .mdui-color-theme-a400{color:#fff!important;background-color:#2979ff!important}.mdui-theme-accent-blue .mdui-color-theme-a700{color:#fff!important;background-color:#2962ff!important}.mdui-theme-accent-cyan .mdui-color-theme-accent{color:rgba(0,0,0,.87)!important;background-color:#18ffff!important}.mdui-theme-accent-cyan .mdui-color-theme-a100{color:rgba(0,0,0,.87)!important;background-color:#84ffff!important}.mdui-theme-accent-cyan .mdui-color-theme-a200{color:rgba(0,0,0,.87)!important;background-color:#18ffff!important}.mdui-theme-accent-cyan .mdui-color-theme-a400{color:rgba(0,0,0,.87)!important;background-color:#00e5ff!important}.mdui-theme-accent-cyan .mdui-color-theme-a700{color:rgba(0,0,0,.87)!important;background-color:#00b8d4!important}.mdui-theme-accent-deep-orange .mdui-color-theme-accent{color:rgba(0,0,0,.87)!important;background-color:#ff6e40!important}.mdui-theme-accent-deep-orange .mdui-color-theme-a100{color:rgba(0,0,0,.87)!important;background-color:#ff9e80!important}.mdui-theme-accent-deep-orange .mdui-color-theme-a200{color:rgba(0,0,0,.87)!important;background-color:#ff6e40!important}.mdui-theme-accent-deep-orange .mdui-color-theme-a400{color:#fff!important;background-color:#ff3d00!important}.mdui-theme-accent-deep-orange .mdui-color-theme-a700{color:#fff!important;background-color:#dd2c00!important}.mdui-theme-accent-deep-purple .mdui-color-theme-accent{color:#fff!important;background-color:#7c4dff!important}.mdui-theme-accent-deep-purple .mdui-color-theme-a100{color:rgba(0,0,0,.87)!important;background-color:#b388ff!important}.mdui-theme-accent-deep-purple .mdui-color-theme-a200{color:#fff!important;background-color:#7c4dff!important}.mdui-theme-accent-deep-purple .mdui-color-theme-a400{color:#fff!important;background-color:#651fff!important}.mdui-theme-accent-deep-purple .mdui-color-theme-a700{color:#fff!important;background-color:#6200ea!important}.mdui-theme-accent-green .mdui-color-theme-accent{color:rgba(0,0,0,.87)!important;background-color:#69f0ae!important}.mdui-theme-accent-green .mdui-color-theme-a100{color:rgba(0,0,0,.87)!important;background-color:#b9f6ca!important}.mdui-theme-accent-green .mdui-color-theme-a200{color:rgba(0,0,0,.87)!important;background-color:#69f0ae!important}.mdui-theme-accent-green .mdui-color-theme-a400{color:rgba(0,0,0,.87)!important;background-color:#00e676!important}.mdui-theme-accent-green .mdui-color-theme-a700{color:rgba(0,0,0,.87)!important;background-color:#00c853!important}.mdui-theme-accent-indigo .mdui-color-theme-accent{color:#fff!important;background-color:#536dfe!important}.mdui-theme-accent-indigo .mdui-color-theme-a100{color:rgba(0,0,0,.87)!important;background-color:#8c9eff!important}.mdui-theme-accent-indigo .mdui-color-theme-a200{color:#fff!important;background-color:#536dfe!important}.mdui-theme-accent-indigo .mdui-color-theme-a400{color:#fff!important;background-color:#3d5afe!important}.mdui-theme-accent-indigo .mdui-color-theme-a700{color:#fff!important;background-color:#304ffe!important}.mdui-theme-accent-light-blue .mdui-color-theme-accent{color:rgba(0,0,0,.87)!important;background-color:#40c4ff!important}.mdui-theme-accent-light-blue .mdui-color-theme-a100{color:rgba(0,0,0,.87)!important;background-color:#80d8ff!important}.mdui-theme-accent-light-blue .mdui-color-theme-a200{color:rgba(0,0,0,.87)!important;background-color:#40c4ff!important}.mdui-theme-accent-light-blue .mdui-color-theme-a400{color:rgba(0,0,0,.87)!important;background-color:#00b0ff!important}.mdui-theme-accent-light-blue .mdui-color-theme-a700{color:#fff!important;background-color:#0091ea!important}.mdui-theme-accent-light-green .mdui-color-theme-accent{color:rgba(0,0,0,.87)!important;background-color:#b2ff59!important}.mdui-theme-accent-light-green .mdui-color-theme-a100{color:rgba(0,0,0,.87)!important;background-color:#ccff90!important}.mdui-theme-accent-light-green .mdui-color-theme-a200{color:rgba(0,0,0,.87)!important;background-color:#b2ff59!important}.mdui-theme-accent-light-green .mdui-color-theme-a400{color:rgba(0,0,0,.87)!important;background-color:#76ff03!important}.mdui-theme-accent-light-green .mdui-color-theme-a700{color:rgba(0,0,0,.87)!important;background-color:#64dd17!important}.mdui-theme-accent-lime .mdui-color-theme-accent{color:rgba(0,0,0,.87)!important;background-color:#eeff41!important}.mdui-theme-accent-lime .mdui-color-theme-a100{color:rgba(0,0,0,.87)!important;background-color:#f4ff81!important}.mdui-theme-accent-lime .mdui-color-theme-a200{color:rgba(0,0,0,.87)!important;background-color:#eeff41!important}.mdui-theme-accent-lime .mdui-color-theme-a400{color:rgba(0,0,0,.87)!important;background-color:#c6ff00!important}.mdui-theme-accent-lime .mdui-color-theme-a700{color:rgba(0,0,0,.87)!important;background-color:#aeea00!important}.mdui-theme-accent-orange .mdui-color-theme-accent{color:rgba(0,0,0,.87)!important;background-color:#ffab40!important}.mdui-theme-accent-orange .mdui-color-theme-a100{color:rgba(0,0,0,.87)!important;background-color:#ffd180!important}.mdui-theme-accent-orange .mdui-color-theme-a200{color:rgba(0,0,0,.87)!important;background-color:#ffab40!important}.mdui-theme-accent-orange .mdui-color-theme-a400{color:rgba(0,0,0,.87)!important;background-color:#ff9100!important}.mdui-theme-accent-orange .mdui-color-theme-a700{color:rgba(0,0,0,.87)!important;background-color:#ff6d00!important}.mdui-theme-accent-pink .mdui-color-theme-accent{color:#fff!important;background-color:#ff4081!important}.mdui-theme-accent-pink .mdui-color-theme-a100{color:rgba(0,0,0,.87)!important;background-color:#ff80ab!important}.mdui-theme-accent-pink .mdui-color-theme-a200{color:#fff!important;background-color:#ff4081!important}.mdui-theme-accent-pink .mdui-color-theme-a400{color:#fff!important;background-color:#f50057!important}.mdui-theme-accent-pink .mdui-color-theme-a700{color:#fff!important;background-color:#c51162!important}.mdui-theme-accent-purple .mdui-color-theme-accent{color:#fff!important;background-color:#e040fb!important}.mdui-theme-accent-purple .mdui-color-theme-a100{color:rgba(0,0,0,.87)!important;background-color:#ea80fc!important}.mdui-theme-accent-purple .mdui-color-theme-a200{color:#fff!important;background-color:#e040fb!important}.mdui-theme-accent-purple .mdui-color-theme-a400{color:#fff!important;background-color:#d500f9!important}.mdui-theme-accent-purple .mdui-color-theme-a700{color:#fff!important;background-color:#a0f!important}.mdui-theme-accent-red .mdui-color-theme-accent{color:#fff!important;background-color:#ff5252!important}.mdui-theme-accent-red .mdui-color-theme-a100{color:rgba(0,0,0,.87)!important;background-color:#ff8a80!important}.mdui-theme-accent-red .mdui-color-theme-a200{color:#fff!important;background-color:#ff5252!important}.mdui-theme-accent-red .mdui-color-theme-a400{color:#fff!important;background-color:#ff1744!important}.mdui-theme-accent-red .mdui-color-theme-a700{color:#fff!important;background-color:#d50000!important}.mdui-theme-accent-teal .mdui-color-theme-accent{color:rgba(0,0,0,.87)!important;background-color:#64ffda!important}.mdui-theme-accent-teal .mdui-color-theme-a100{color:rgba(0,0,0,.87)!important;background-color:#a7ffeb!important}.mdui-theme-accent-teal .mdui-color-theme-a200{color:rgba(0,0,0,.87)!important;background-color:#64ffda!important}.mdui-theme-accent-teal .mdui-color-theme-a400{color:rgba(0,0,0,.87)!important;background-color:#1de9b6!important}.mdui-theme-accent-teal .mdui-color-theme-a700{color:rgba(0,0,0,.87)!important;background-color:#00bfa5!important}.mdui-theme-accent-yellow .mdui-color-theme-accent{color:rgba(0,0,0,.87)!important;background-color:#ff0!important}.mdui-theme-accent-yellow .mdui-color-theme-a100{color:rgba(0,0,0,.87)!important;background-color:#ffff8d!important}.mdui-theme-accent-yellow .mdui-color-theme-a200{color:rgba(0,0,0,.87)!important;background-color:#ff0!important}.mdui-theme-accent-yellow .mdui-color-theme-a400{color:rgba(0,0,0,.87)!important;background-color:#ffea00!important}.mdui-theme-accent-yellow .mdui-color-theme-a700{color:rgba(0,0,0,.87)!important;background-color:#ffd600!important}.mdui-color-amber{color:rgba(0,0,0,.87)!important;background-color:#ffc107!important}.mdui-color-amber-50{color:rgba(0,0,0,.87)!important;background-color:#fff8e1!important}.mdui-color-amber-100{color:rgba(0,0,0,.87)!important;background-color:#ffecb3!important}.mdui-color-amber-200{color:rgba(0,0,0,.87)!important;background-color:#ffe082!important}.mdui-color-amber-300{color:rgba(0,0,0,.87)!important;background-color:#ffd54f!important}.mdui-color-amber-400{color:rgba(0,0,0,.87)!important;background-color:#ffca28!important}.mdui-color-amber-500{color:rgba(0,0,0,.87)!important;background-color:#ffc107!important}.mdui-color-amber-600{color:rgba(0,0,0,.87)!important;background-color:#ffb300!important}.mdui-color-amber-700{color:rgba(0,0,0,.87)!important;background-color:#ffa000!important}.mdui-color-amber-800{color:rgba(0,0,0,.87)!important;background-color:#ff8f00!important}.mdui-color-amber-900{color:rgba(0,0,0,.87)!important;background-color:#ff6f00!important}.mdui-color-blue{color:rgba(0,0,0,.87)!important;background-color:#2196f3!important}.mdui-color-blue-50{color:rgba(0,0,0,.87)!important;background-color:#e3f2fd!important}.mdui-color-blue-100{color:rgba(0,0,0,.87)!important;background-color:#bbdefb!important}.mdui-color-blue-200{color:rgba(0,0,0,.87)!important;background-color:#90caf9!important}.mdui-color-blue-300{color:rgba(0,0,0,.87)!important;background-color:#64b5f6!important}.mdui-color-blue-400{color:rgba(0,0,0,.87)!important;background-color:#42a5f5!important}.mdui-color-blue-500{color:rgba(0,0,0,.87)!important;background-color:#2196f3!important}.mdui-color-blue-600{color:#fff!important;background-color:#1e88e5!important}.mdui-color-blue-700{color:#fff!important;background-color:#1976d2!important}.mdui-color-blue-800{color:#fff!important;background-color:#1565c0!important}.mdui-color-blue-900{color:#fff!important;background-color:#0d47a1!important}.mdui-color-blue-grey{color:#fff!important;background-color:#607d8b!important}.mdui-color-blue-grey-50{color:rgba(0,0,0,.87)!important;background-color:#eceff1!important}.mdui-color-blue-grey-100{color:rgba(0,0,0,.87)!important;background-color:#cfd8dc!important}.mdui-color-blue-grey-200{color:rgba(0,0,0,.87)!important;background-color:#b0bec5!important}.mdui-color-blue-grey-300{color:rgba(0,0,0,.87)!important;background-color:#90a4ae!important}.mdui-color-blue-grey-400{color:#fff!important;background-color:#78909c!important}.mdui-color-blue-grey-500{color:#fff!important;background-color:#607d8b!important}.mdui-color-blue-grey-600{color:#fff!important;background-color:#546e7a!important}.mdui-color-blue-grey-700{color:#fff!important;background-color:#455a64!important}.mdui-color-blue-grey-800{color:#fff!important;background-color:#37474f!important}.mdui-color-blue-grey-900{color:#fff!important;background-color:#263238!important}.mdui-color-brown{color:#fff!important;background-color:#795548!important}.mdui-color-brown-50{color:rgba(0,0,0,.87)!important;background-color:#efebe9!important}.mdui-color-brown-100{color:rgba(0,0,0,.87)!important;background-color:#d7ccc8!important}.mdui-color-brown-200{color:rgba(0,0,0,.87)!important;background-color:#bcaaa4!important}.mdui-color-brown-300{color:#fff!important;background-color:#a1887f!important}.mdui-color-brown-400{color:#fff!important;background-color:#8d6e63!important}.mdui-color-brown-500{color:#fff!important;background-color:#795548!important}.mdui-color-brown-600{color:#fff!important;background-color:#6d4c41!important}.mdui-color-brown-700{color:#fff!important;background-color:#5d4037!important}.mdui-color-brown-800{color:#fff!important;background-color:#4e342e!important}.mdui-color-brown-900{color:#fff!important;background-color:#3e2723!important}.mdui-color-cyan{color:rgba(0,0,0,.87)!important;background-color:#00bcd4!important}.mdui-color-cyan-50{color:rgba(0,0,0,.87)!important;background-color:#e0f7fa!important}.mdui-color-cyan-100{color:rgba(0,0,0,.87)!important;background-color:#b2ebf2!important}.mdui-color-cyan-200{color:rgba(0,0,0,.87)!important;background-color:#80deea!important}.mdui-color-cyan-300{color:rgba(0,0,0,.87)!important;background-color:#4dd0e1!important}.mdui-color-cyan-400{color:rgba(0,0,0,.87)!important;background-color:#26c6da!important}.mdui-color-cyan-500{color:rgba(0,0,0,.87)!important;background-color:#00bcd4!important}.mdui-color-cyan-600{color:rgba(0,0,0,.87)!important;background-color:#00acc1!important}.mdui-color-cyan-700{color:#fff!important;background-color:#0097a7!important}.mdui-color-cyan-800{color:#fff!important;background-color:#00838f!important}.mdui-color-cyan-900{color:#fff!important;background-color:#006064!important}.mdui-color-deep-orange{color:rgba(0,0,0,.87)!important;background-color:#ff5722!important}.mdui-color-deep-orange-50{color:rgba(0,0,0,.87)!important;background-color:#fbe9e7!important}.mdui-color-deep-orange-100{color:rgba(0,0,0,.87)!important;background-color:#ffccbc!important}.mdui-color-deep-orange-200{color:rgba(0,0,0,.87)!important;background-color:#ffab91!important}.mdui-color-deep-orange-300{color:rgba(0,0,0,.87)!important;background-color:#ff8a65!important}.mdui-color-deep-orange-400{color:rgba(0,0,0,.87)!important;background-color:#ff7043!important}.mdui-color-deep-orange-500{color:rgba(0,0,0,.87)!important;background-color:#ff5722!important}.mdui-color-deep-orange-600{color:#fff!important;background-color:#f4511e!important}.mdui-color-deep-orange-700{color:#fff!important;background-color:#e64a19!important}.mdui-color-deep-orange-800{color:#fff!important;background-color:#d84315!important}.mdui-color-deep-orange-900{color:#fff!important;background-color:#bf360c!important}.mdui-color-deep-purple{color:#fff!important;background-color:#673ab7!important}.mdui-color-deep-purple-50{color:rgba(0,0,0,.87)!important;background-color:#ede7f6!important}.mdui-color-deep-purple-100{color:rgba(0,0,0,.87)!important;background-color:#d1c4e9!important}.mdui-color-deep-purple-200{color:rgba(0,0,0,.87)!important;background-color:#b39ddb!important}.mdui-color-deep-purple-300{color:#fff!important;background-color:#9575cd!important}.mdui-color-deep-purple-400{color:#fff!important;background-color:#7e57c2!important}.mdui-color-deep-purple-500{color:#fff!important;background-color:#673ab7!important}.mdui-color-deep-purple-600{color:#fff!important;background-color:#5e35b1!important}.mdui-color-deep-purple-700{color:#fff!important;background-color:#512da8!important}.mdui-color-deep-purple-800{color:#fff!important;background-color:#4527a0!important}.mdui-color-deep-purple-900{color:#fff!important;background-color:#311b92!important}.mdui-color-green{color:rgba(0,0,0,.87)!important;background-color:#4caf50!important}.mdui-color-green-50{color:rgba(0,0,0,.87)!important;background-color:#e8f5e9!important}.mdui-color-green-100{color:rgba(0,0,0,.87)!important;background-color:#c8e6c9!important}.mdui-color-green-200{color:rgba(0,0,0,.87)!important;background-color:#a5d6a7!important}.mdui-color-green-300{color:rgba(0,0,0,.87)!important;background-color:#81c784!important}.mdui-color-green-400{color:rgba(0,0,0,.87)!important;background-color:#66bb6a!important}.mdui-color-green-500{color:rgba(0,0,0,.87)!important;background-color:#4caf50!important}.mdui-color-green-600{color:#fff!important;background-color:#43a047!important}.mdui-color-green-700{color:#fff!important;background-color:#388e3c!important}.mdui-color-green-800{color:#fff!important;background-color:#2e7d32!important}.mdui-color-green-900{color:#fff!important;background-color:#1b5e20!important}.mdui-color-grey{color:rgba(0,0,0,.87)!important;background-color:#9e9e9e!important}.mdui-color-grey-50{color:rgba(0,0,0,.87)!important;background-color:#fafafa!important}.mdui-color-grey-100{color:rgba(0,0,0,.87)!important;background-color:#f5f5f5!important}.mdui-color-grey-200{color:rgba(0,0,0,.87)!important;background-color:#eee!important}.mdui-color-grey-300{color:rgba(0,0,0,.87)!important;background-color:#e0e0e0!important}.mdui-color-grey-400{color:rgba(0,0,0,.87)!important;background-color:#bdbdbd!important}.mdui-color-grey-500{color:rgba(0,0,0,.87)!important;background-color:#9e9e9e!important}.mdui-color-grey-600{color:#fff!important;background-color:#757575!important}.mdui-color-grey-700{color:#fff!important;background-color:#616161!important}.mdui-color-grey-800{color:#fff!important;background-color:#424242!important}.mdui-color-grey-900{color:#fff!important;background-color:#212121!important}.mdui-color-indigo{color:#fff!important;background-color:#3f51b5!important}.mdui-color-indigo-50{color:rgba(0,0,0,.87)!important;background-color:#e8eaf6!important}.mdui-color-indigo-100{color:rgba(0,0,0,.87)!important;background-color:#c5cae9!important}.mdui-color-indigo-200{color:rgba(0,0,0,.87)!important;background-color:#9fa8da!important}.mdui-color-indigo-300{color:#fff!important;background-color:#7986cb!important}.mdui-color-indigo-400{color:#fff!important;background-color:#5c6bc0!important}.mdui-color-indigo-500{color:#fff!important;background-color:#3f51b5!important}.mdui-color-indigo-600{color:#fff!important;background-color:#3949ab!important}.mdui-color-indigo-700{color:#fff!important;background-color:#303f9f!important}.mdui-color-indigo-800{color:#fff!important;background-color:#283593!important}.mdui-color-indigo-900{color:#fff!important;background-color:#1a237e!important}.mdui-color-light-blue{color:rgba(0,0,0,.87)!important;background-color:#03a9f4!important}.mdui-color-light-blue-50{color:rgba(0,0,0,.87)!important;background-color:#e1f5fe!important}.mdui-color-light-blue-100{color:rgba(0,0,0,.87)!important;background-color:#b3e5fc!important}.mdui-color-light-blue-200{color:rgba(0,0,0,.87)!important;background-color:#81d4fa!important}.mdui-color-light-blue-300{color:rgba(0,0,0,.87)!important;background-color:#4fc3f7!important}.mdui-color-light-blue-400{color:rgba(0,0,0,.87)!important;background-color:#29b6f6!important}.mdui-color-light-blue-500{color:rgba(0,0,0,.87)!important;background-color:#03a9f4!important}.mdui-color-light-blue-600{color:rgba(0,0,0,.87)!important;background-color:#039be5!important}.mdui-color-light-blue-700{color:#fff!important;background-color:#0288d1!important}.mdui-color-light-blue-800{color:#fff!important;background-color:#0277bd!important}.mdui-color-light-blue-900{color:#fff!important;background-color:#01579b!important}.mdui-color-light-green{color:rgba(0,0,0,.87)!important;background-color:#8bc34a!important}.mdui-color-light-green-50{color:rgba(0,0,0,.87)!important;background-color:#f1f8e9!important}.mdui-color-light-green-100{color:rgba(0,0,0,.87)!important;background-color:#dcedc8!important}.mdui-color-light-green-200{color:rgba(0,0,0,.87)!important;background-color:#c5e1a5!important}.mdui-color-light-green-300{color:rgba(0,0,0,.87)!important;background-color:#aed581!important}.mdui-color-light-green-400{color:rgba(0,0,0,.87)!important;background-color:#9ccc65!important}.mdui-color-light-green-500{color:rgba(0,0,0,.87)!important;background-color:#8bc34a!important}.mdui-color-light-green-600{color:rgba(0,0,0,.87)!important;background-color:#7cb342!important}.mdui-color-light-green-700{color:rgba(0,0,0,.87)!important;background-color:#689f38!important}.mdui-color-light-green-800{color:#fff!important;background-color:#558b2f!important}.mdui-color-light-green-900{color:#fff!important;background-color:#33691e!important}.mdui-color-lime{color:rgba(0,0,0,.87)!important;background-color:#cddc39!important}.mdui-color-lime-50{color:rgba(0,0,0,.87)!important;background-color:#f9fbe7!important}.mdui-color-lime-100{color:rgba(0,0,0,.87)!important;background-color:#f0f4c3!important}.mdui-color-lime-200{color:rgba(0,0,0,.87)!important;background-color:#e6ee9c!important}.mdui-color-lime-300{color:rgba(0,0,0,.87)!important;background-color:#dce775!important}.mdui-color-lime-400{color:rgba(0,0,0,.87)!important;background-color:#d4e157!important}.mdui-color-lime-500{color:rgba(0,0,0,.87)!important;background-color:#cddc39!important}.mdui-color-lime-600{color:rgba(0,0,0,.87)!important;background-color:#c0ca33!important}.mdui-color-lime-700{color:rgba(0,0,0,.87)!important;background-color:#afb42b!important}.mdui-color-lime-800{color:rgba(0,0,0,.87)!important;background-color:#9e9d24!important}.mdui-color-lime-900{color:#fff!important;background-color:#827717!important}.mdui-color-orange{color:rgba(0,0,0,.87)!important;background-color:#ff9800!important}.mdui-color-orange-50{color:rgba(0,0,0,.87)!important;background-color:#fff3e0!important}.mdui-color-orange-100{color:rgba(0,0,0,.87)!important;background-color:#ffe0b2!important}.mdui-color-orange-200{color:rgba(0,0,0,.87)!important;background-color:#ffcc80!important}.mdui-color-orange-300{color:rgba(0,0,0,.87)!important;background-color:#ffb74d!important}.mdui-color-orange-400{color:rgba(0,0,0,.87)!important;background-color:#ffa726!important}.mdui-color-orange-500{color:rgba(0,0,0,.87)!important;background-color:#ff9800!important}.mdui-color-orange-600{color:rgba(0,0,0,.87)!important;background-color:#fb8c00!important}.mdui-color-orange-700{color:rgba(0,0,0,.87)!important;background-color:#f57c00!important}.mdui-color-orange-800{color:rgba(0,0,0,.87)!important;background-color:#ef6c00!important}.mdui-color-orange-900{color:#fff!important;background-color:#e65100!important}.mdui-color-pink{color:#fff!important;background-color:#e91e63!important}.mdui-color-pink-50{color:rgba(0,0,0,.87)!important;background-color:#fce4ec!important}.mdui-color-pink-100{color:rgba(0,0,0,.87)!important;background-color:#f8bbd0!important}.mdui-color-pink-200{color:rgba(0,0,0,.87)!important;background-color:#f48fb1!important}.mdui-color-pink-300{color:rgba(0,0,0,.87)!important;background-color:#f06292!important}.mdui-color-pink-400{color:#fff!important;background-color:#ec407a!important}.mdui-color-pink-500{color:#fff!important;background-color:#e91e63!important}.mdui-color-pink-600{color:#fff!important;background-color:#d81b60!important}.mdui-color-pink-700{color:#fff!important;background-color:#c2185b!important}.mdui-color-pink-800{color:#fff!important;background-color:#ad1457!important}.mdui-color-pink-900{color:#fff!important;background-color:#880e4f!important}.mdui-color-purple{color:#fff!important;background-color:#9c27b0!important}.mdui-color-purple-50{color:rgba(0,0,0,.87)!important;background-color:#f3e5f5!important}.mdui-color-purple-100{color:rgba(0,0,0,.87)!important;background-color:#e1bee7!important}.mdui-color-purple-200{color:rgba(0,0,0,.87)!important;background-color:#ce93d8!important}.mdui-color-purple-300{color:#fff!important;background-color:#ba68c8!important}.mdui-color-purple-400{color:#fff!important;background-color:#ab47bc!important}.mdui-color-purple-500{color:#fff!important;background-color:#9c27b0!important}.mdui-color-purple-600{color:#fff!important;background-color:#8e24aa!important}.mdui-color-purple-700{color:#fff!important;background-color:#7b1fa2!important}.mdui-color-purple-800{color:#fff!important;background-color:#6a1b9a!important}.mdui-color-purple-900{color:#fff!important;background-color:#4a148c!important}.mdui-color-red{color:#fff!important;background-color:#f44336!important}.mdui-color-red-50{color:rgba(0,0,0,.87)!important;background-color:#ffebee!important}.mdui-color-red-100{color:rgba(0,0,0,.87)!important;background-color:#ffcdd2!important}.mdui-color-red-200{color:rgba(0,0,0,.87)!important;background-color:#ef9a9a!important}.mdui-color-red-300{color:rgba(0,0,0,.87)!important;background-color:#e57373!important}.mdui-color-red-400{color:#fff!important;background-color:#ef5350!important}.mdui-color-red-500{color:#fff!important;background-color:#f44336!important}.mdui-color-red-600{color:#fff!important;background-color:#e53935!important}.mdui-color-red-700{color:#fff!important;background-color:#d32f2f!important}.mdui-color-red-800{color:#fff!important;background-color:#c62828!important}.mdui-color-red-900{color:#fff!important;background-color:#b71c1c!important}.mdui-color-teal{color:#fff!important;background-color:#009688!important}.mdui-color-teal-50{color:rgba(0,0,0,.87)!important;background-color:#e0f2f1!important}.mdui-color-teal-100{color:rgba(0,0,0,.87)!important;background-color:#b2dfdb!important}.mdui-color-teal-200{color:rgba(0,0,0,.87)!important;background-color:#80cbc4!important}.mdui-color-teal-300{color:rgba(0,0,0,.87)!important;background-color:#4db6ac!important}.mdui-color-teal-400{color:rgba(0,0,0,.87)!important;background-color:#26a69a!important}.mdui-color-teal-500{color:#fff!important;background-color:#009688!important}.mdui-color-teal-600{color:#fff!important;background-color:#00897b!important}.mdui-color-teal-700{color:#fff!important;background-color:#00796b!important}.mdui-color-teal-800{color:#fff!important;background-color:#00695c!important}.mdui-color-teal-900{color:#fff!important;background-color:#004d40!important}.mdui-color-yellow{color:rgba(0,0,0,.87)!important;background-color:#ffeb3b!important}.mdui-color-yellow-50{color:rgba(0,0,0,.87)!important;background-color:#fffde7!important}.mdui-color-yellow-100{color:rgba(0,0,0,.87)!important;background-color:#fff9c4!important}.mdui-color-yellow-200{color:rgba(0,0,0,.87)!important;background-color:#fff59d!important}.mdui-color-yellow-300{color:rgba(0,0,0,.87)!important;background-color:#fff176!important}.mdui-color-yellow-400{color:rgba(0,0,0,.87)!important;background-color:#ffee58!important}.mdui-color-yellow-500{color:rgba(0,0,0,.87)!important;background-color:#ffeb3b!important}.mdui-color-yellow-600{color:rgba(0,0,0,.87)!important;background-color:#fdd835!important}.mdui-color-yellow-700{color:rgba(0,0,0,.87)!important;background-color:#fbc02d!important}.mdui-color-yellow-800{color:rgba(0,0,0,.87)!important;background-color:#f9a825!important}.mdui-color-yellow-900{color:rgba(0,0,0,.87)!important;background-color:#f57f17!important}.mdui-color-amber-accent{color:rgba(0,0,0,.87)!important;background-color:#ffd740!important}.mdui-color-amber-a100{color:rgba(0,0,0,.87)!important;background-color:#ffe57f!important}.mdui-color-amber-a200{color:rgba(0,0,0,.87)!important;background-color:#ffd740!important}.mdui-color-amber-a400{color:rgba(0,0,0,.87)!important;background-color:#ffc400!important}.mdui-color-amber-a700{color:rgba(0,0,0,.87)!important;background-color:#ffab00!important}.mdui-color-blue-accent{color:#fff!important;background-color:#448aff!important}.mdui-color-blue-a100{color:rgba(0,0,0,.87)!important;background-color:#82b1ff!important}.mdui-color-blue-a200{color:#fff!important;background-color:#448aff!important}.mdui-color-blue-a400{color:#fff!important;background-color:#2979ff!important}.mdui-color-blue-a700{color:#fff!important;background-color:#2962ff!important}.mdui-color-cyan-accent{color:rgba(0,0,0,.87)!important;background-color:#18ffff!important}.mdui-color-cyan-a100{color:rgba(0,0,0,.87)!important;background-color:#84ffff!important}.mdui-color-cyan-a200{color:rgba(0,0,0,.87)!important;background-color:#18ffff!important}.mdui-color-cyan-a400{color:rgba(0,0,0,.87)!important;background-color:#00e5ff!important}.mdui-color-cyan-a700{color:rgba(0,0,0,.87)!important;background-color:#00b8d4!important}.mdui-color-deep-orange-accent{color:rgba(0,0,0,.87)!important;background-color:#ff6e40!important}.mdui-color-deep-orange-a100{color:rgba(0,0,0,.87)!important;background-color:#ff9e80!important}.mdui-color-deep-orange-a200{color:rgba(0,0,0,.87)!important;background-color:#ff6e40!important}.mdui-color-deep-orange-a400{color:#fff!important;background-color:#ff3d00!important}.mdui-color-deep-orange-a700{color:#fff!important;background-color:#dd2c00!important}.mdui-color-deep-purple-accent{color:#fff!important;background-color:#7c4dff!important}.mdui-color-deep-purple-a100{color:rgba(0,0,0,.87)!important;background-color:#b388ff!important}.mdui-color-deep-purple-a200{color:#fff!important;background-color:#7c4dff!important}.mdui-color-deep-purple-a400{color:#fff!important;background-color:#651fff!important}.mdui-color-deep-purple-a700{color:#fff!important;background-color:#6200ea!important}.mdui-color-green-accent{color:rgba(0,0,0,.87)!important;background-color:#69f0ae!important}.mdui-color-green-a100{color:rgba(0,0,0,.87)!important;background-color:#b9f6ca!important}.mdui-color-green-a200{color:rgba(0,0,0,.87)!important;background-color:#69f0ae!important}.mdui-color-green-a400{color:rgba(0,0,0,.87)!important;background-color:#00e676!important}.mdui-color-green-a700{color:rgba(0,0,0,.87)!important;background-color:#00c853!important}.mdui-color-indigo-accent{color:#fff!important;background-color:#536dfe!important}.mdui-color-indigo-a100{color:rgba(0,0,0,.87)!important;background-color:#8c9eff!important}.mdui-color-indigo-a200{color:#fff!important;background-color:#536dfe!important}.mdui-color-indigo-a400{color:#fff!important;background-color:#3d5afe!important}.mdui-color-indigo-a700{color:#fff!important;background-color:#304ffe!important}.mdui-color-light-blue-accent{color:rgba(0,0,0,.87)!important;background-color:#40c4ff!important}.mdui-color-light-blue-a100{color:rgba(0,0,0,.87)!important;background-color:#80d8ff!important}.mdui-color-light-blue-a200{color:rgba(0,0,0,.87)!important;background-color:#40c4ff!important}.mdui-color-light-blue-a400{color:rgba(0,0,0,.87)!important;background-color:#00b0ff!important}.mdui-color-light-blue-a700{color:#fff!important;background-color:#0091ea!important}.mdui-color-light-green-accent{color:rgba(0,0,0,.87)!important;background-color:#b2ff59!important}.mdui-color-light-green-a100{color:rgba(0,0,0,.87)!important;background-color:#ccff90!important}.mdui-color-light-green-a200{color:rgba(0,0,0,.87)!important;background-color:#b2ff59!important}.mdui-color-light-green-a400{color:rgba(0,0,0,.87)!important;background-color:#76ff03!important}.mdui-color-light-green-a700{color:rgba(0,0,0,.87)!important;background-color:#64dd17!important}.mdui-color-lime-accent{color:rgba(0,0,0,.87)!important;background-color:#eeff41!important}.mdui-color-lime-a100{color:rgba(0,0,0,.87)!important;background-color:#f4ff81!important}.mdui-color-lime-a200{color:rgba(0,0,0,.87)!important;background-color:#eeff41!important}.mdui-color-lime-a400{color:rgba(0,0,0,.87)!important;background-color:#c6ff00!important}.mdui-color-lime-a700{color:rgba(0,0,0,.87)!important;background-color:#aeea00!important}.mdui-color-orange-accent{color:rgba(0,0,0,.87)!important;background-color:#ffab40!important}.mdui-color-orange-a100{color:rgba(0,0,0,.87)!important;background-color:#ffd180!important}.mdui-color-orange-a200{color:rgba(0,0,0,.87)!important;background-color:#ffab40!important}.mdui-color-orange-a400{color:rgba(0,0,0,.87)!important;background-color:#ff9100!important}.mdui-color-orange-a700{color:rgba(0,0,0,.87)!important;background-color:#ff6d00!important}.mdui-color-pink-accent{color:#fff!important;background-color:#ff4081!important}.mdui-color-pink-a100{color:rgba(0,0,0,.87)!important;background-color:#ff80ab!important}.mdui-color-pink-a200{color:#fff!important;background-color:#ff4081!important}.mdui-color-pink-a400{color:#fff!important;background-color:#f50057!important}.mdui-color-pink-a700{color:#fff!important;background-color:#c51162!important}.mdui-color-purple-accent{color:#fff!important;background-color:#e040fb!important}.mdui-color-purple-a100{color:rgba(0,0,0,.87)!important;background-color:#ea80fc!important}.mdui-color-purple-a200{color:#fff!important;background-color:#e040fb!important}.mdui-color-purple-a400{color:#fff!important;background-color:#d500f9!important}.mdui-color-purple-a700{color:#fff!important;background-color:#a0f!important}.mdui-color-red-accent{color:#fff!important;background-color:#ff5252!important}.mdui-color-red-a100{color:rgba(0,0,0,.87)!important;background-color:#ff8a80!important}.mdui-color-red-a200{color:#fff!important;background-color:#ff5252!important}.mdui-color-red-a400{color:#fff!important;background-color:#ff1744!important}.mdui-color-red-a700{color:#fff!important;background-color:#d50000!important}.mdui-color-teal-accent{color:rgba(0,0,0,.87)!important;background-color:#64ffda!important}.mdui-color-teal-a100{color:rgba(0,0,0,.87)!important;background-color:#a7ffeb!important}.mdui-color-teal-a200{color:rgba(0,0,0,.87)!important;background-color:#64ffda!important}.mdui-color-teal-a400{color:rgba(0,0,0,.87)!important;background-color:#1de9b6!important}.mdui-color-teal-a700{color:rgba(0,0,0,.87)!important;background-color:#00bfa5!important}.mdui-color-yellow-accent{color:rgba(0,0,0,.87)!important;background-color:#ff0!important}.mdui-color-yellow-a100{color:rgba(0,0,0,.87)!important;background-color:#ffff8d!important}.mdui-color-yellow-a200{color:rgba(0,0,0,.87)!important;background-color:#ff0!important}.mdui-color-yellow-a400{color:rgba(0,0,0,.87)!important;background-color:#ffea00!important}.mdui-color-yellow-a700{color:rgba(0,0,0,.87)!important;background-color:#ffd600!important}.mdui-color-black{color:#fff!important;background-color:#000!important}.mdui-color-white{color:rgba(0,0,0,.87)!important;background-color:#fff!important}.mdui-color-transparent{background-color:transparent!important}.mdui-theme-primary-amber .mdui-text-color-theme{color:#ffc107!important}.mdui-theme-primary-amber .mdui-text-color-theme-50{color:#fff8e1!important}.mdui-theme-primary-amber .mdui-text-color-theme-100{color:#ffecb3!important}.mdui-theme-primary-amber .mdui-text-color-theme-200{color:#ffe082!important}.mdui-theme-primary-amber .mdui-text-color-theme-300{color:#ffd54f!important}.mdui-theme-primary-amber .mdui-text-color-theme-400{color:#ffca28!important}.mdui-theme-primary-amber .mdui-text-color-theme-500{color:#ffc107!important}.mdui-theme-primary-amber .mdui-text-color-theme-600{color:#ffb300!important}.mdui-theme-primary-amber .mdui-text-color-theme-700{color:#ffa000!important}.mdui-theme-primary-amber .mdui-text-color-theme-800{color:#ff8f00!important}.mdui-theme-primary-amber .mdui-text-color-theme-900{color:#ff6f00!important}.mdui-theme-primary-blue .mdui-text-color-theme{color:#2196f3!important}.mdui-theme-primary-blue .mdui-text-color-theme-50{color:#e3f2fd!important}.mdui-theme-primary-blue .mdui-text-color-theme-100{color:#bbdefb!important}.mdui-theme-primary-blue .mdui-text-color-theme-200{color:#90caf9!important}.mdui-theme-primary-blue .mdui-text-color-theme-300{color:#64b5f6!important}.mdui-theme-primary-blue .mdui-text-color-theme-400{color:#42a5f5!important}.mdui-theme-primary-blue .mdui-text-color-theme-500{color:#2196f3!important}.mdui-theme-primary-blue .mdui-text-color-theme-600{color:#1e88e5!important}.mdui-theme-primary-blue .mdui-text-color-theme-700{color:#1976d2!important}.mdui-theme-primary-blue .mdui-text-color-theme-800{color:#1565c0!important}.mdui-theme-primary-blue .mdui-text-color-theme-900{color:#0d47a1!important}.mdui-theme-primary-blue-grey .mdui-text-color-theme{color:#607d8b!important}.mdui-theme-primary-blue-grey .mdui-text-color-theme-50{color:#eceff1!important}.mdui-theme-primary-blue-grey .mdui-text-color-theme-100{color:#cfd8dc!important}.mdui-theme-primary-blue-grey .mdui-text-color-theme-200{color:#b0bec5!important}.mdui-theme-primary-blue-grey .mdui-text-color-theme-300{color:#90a4ae!important}.mdui-theme-primary-blue-grey .mdui-text-color-theme-400{color:#78909c!important}.mdui-theme-primary-blue-grey .mdui-text-color-theme-500{color:#607d8b!important}.mdui-theme-primary-blue-grey .mdui-text-color-theme-600{color:#546e7a!important}.mdui-theme-primary-blue-grey .mdui-text-color-theme-700{color:#455a64!important}.mdui-theme-primary-blue-grey .mdui-text-color-theme-800{color:#37474f!important}.mdui-theme-primary-blue-grey .mdui-text-color-theme-900{color:#263238!important}.mdui-theme-primary-brown .mdui-text-color-theme{color:#795548!important}.mdui-theme-primary-brown .mdui-text-color-theme-50{color:#efebe9!important}.mdui-theme-primary-brown .mdui-text-color-theme-100{color:#d7ccc8!important}.mdui-theme-primary-brown .mdui-text-color-theme-200{color:#bcaaa4!important}.mdui-theme-primary-brown .mdui-text-color-theme-300{color:#a1887f!important}.mdui-theme-primary-brown .mdui-text-color-theme-400{color:#8d6e63!important}.mdui-theme-primary-brown .mdui-text-color-theme-500{color:#795548!important}.mdui-theme-primary-brown .mdui-text-color-theme-600{color:#6d4c41!important}.mdui-theme-primary-brown .mdui-text-color-theme-700{color:#5d4037!important}.mdui-theme-primary-brown .mdui-text-color-theme-800{color:#4e342e!important}.mdui-theme-primary-brown .mdui-text-color-theme-900{color:#3e2723!important}.mdui-theme-primary-cyan .mdui-text-color-theme{color:#00bcd4!important}.mdui-theme-primary-cyan .mdui-text-color-theme-50{color:#e0f7fa!important}.mdui-theme-primary-cyan .mdui-text-color-theme-100{color:#b2ebf2!important}.mdui-theme-primary-cyan .mdui-text-color-theme-200{color:#80deea!important}.mdui-theme-primary-cyan .mdui-text-color-theme-300{color:#4dd0e1!important}.mdui-theme-primary-cyan .mdui-text-color-theme-400{color:#26c6da!important}.mdui-theme-primary-cyan .mdui-text-color-theme-500{color:#00bcd4!important}.mdui-theme-primary-cyan .mdui-text-color-theme-600{color:#00acc1!important}.mdui-theme-primary-cyan .mdui-text-color-theme-700{color:#0097a7!important}.mdui-theme-primary-cyan .mdui-text-color-theme-800{color:#00838f!important}.mdui-theme-primary-cyan .mdui-text-color-theme-900{color:#006064!important}.mdui-theme-primary-deep-orange .mdui-text-color-theme{color:#ff5722!important}.mdui-theme-primary-deep-orange .mdui-text-color-theme-50{color:#fbe9e7!important}.mdui-theme-primary-deep-orange .mdui-text-color-theme-100{color:#ffccbc!important}.mdui-theme-primary-deep-orange .mdui-text-color-theme-200{color:#ffab91!important}.mdui-theme-primary-deep-orange .mdui-text-color-theme-300{color:#ff8a65!important}.mdui-theme-primary-deep-orange .mdui-text-color-theme-400{color:#ff7043!important}.mdui-theme-primary-deep-orange .mdui-text-color-theme-500{color:#ff5722!important}.mdui-theme-primary-deep-orange .mdui-text-color-theme-600{color:#f4511e!important}.mdui-theme-primary-deep-orange .mdui-text-color-theme-700{color:#e64a19!important}.mdui-theme-primary-deep-orange .mdui-text-color-theme-800{color:#d84315!important}.mdui-theme-primary-deep-orange .mdui-text-color-theme-900{color:#bf360c!important}.mdui-theme-primary-deep-purple .mdui-text-color-theme{color:#673ab7!important}.mdui-theme-primary-deep-purple .mdui-text-color-theme-50{color:#ede7f6!important}.mdui-theme-primary-deep-purple .mdui-text-color-theme-100{color:#d1c4e9!important}.mdui-theme-primary-deep-purple .mdui-text-color-theme-200{color:#b39ddb!important}.mdui-theme-primary-deep-purple .mdui-text-color-theme-300{color:#9575cd!important}.mdui-theme-primary-deep-purple .mdui-text-color-theme-400{color:#7e57c2!important}.mdui-theme-primary-deep-purple .mdui-text-color-theme-500{color:#673ab7!important}.mdui-theme-primary-deep-purple .mdui-text-color-theme-600{color:#5e35b1!important}.mdui-theme-primary-deep-purple .mdui-text-color-theme-700{color:#512da8!important}.mdui-theme-primary-deep-purple .mdui-text-color-theme-800{color:#4527a0!important}.mdui-theme-primary-deep-purple .mdui-text-color-theme-900{color:#311b92!important}.mdui-theme-primary-green .mdui-text-color-theme{color:#4caf50!important}.mdui-theme-primary-green .mdui-text-color-theme-50{color:#e8f5e9!important}.mdui-theme-primary-green .mdui-text-color-theme-100{color:#c8e6c9!important}.mdui-theme-primary-green .mdui-text-color-theme-200{color:#a5d6a7!important}.mdui-theme-primary-green .mdui-text-color-theme-300{color:#81c784!important}.mdui-theme-primary-green .mdui-text-color-theme-400{color:#66bb6a!important}.mdui-theme-primary-green .mdui-text-color-theme-500{color:#4caf50!important}.mdui-theme-primary-green .mdui-text-color-theme-600{color:#43a047!important}.mdui-theme-primary-green .mdui-text-color-theme-700{color:#388e3c!important}.mdui-theme-primary-green .mdui-text-color-theme-800{color:#2e7d32!important}.mdui-theme-primary-green .mdui-text-color-theme-900{color:#1b5e20!important}.mdui-theme-primary-grey .mdui-text-color-theme{color:#9e9e9e!important}.mdui-theme-primary-grey .mdui-text-color-theme-50{color:#fafafa!important}.mdui-theme-primary-grey .mdui-text-color-theme-100{color:#f5f5f5!important}.mdui-theme-primary-grey .mdui-text-color-theme-200{color:#eee!important}.mdui-theme-primary-grey .mdui-text-color-theme-300{color:#e0e0e0!important}.mdui-theme-primary-grey .mdui-text-color-theme-400{color:#bdbdbd!important}.mdui-theme-primary-grey .mdui-text-color-theme-500{color:#9e9e9e!important}.mdui-theme-primary-grey .mdui-text-color-theme-600{color:#757575!important}.mdui-theme-primary-grey .mdui-text-color-theme-700{color:#616161!important}.mdui-theme-primary-grey .mdui-text-color-theme-800{color:#424242!important}.mdui-theme-primary-grey .mdui-text-color-theme-900{color:#212121!important}.mdui-theme-primary-indigo .mdui-text-color-theme{color:#3f51b5!important}.mdui-theme-primary-indigo .mdui-text-color-theme-50{color:#e8eaf6!important}.mdui-theme-primary-indigo .mdui-text-color-theme-100{color:#c5cae9!important}.mdui-theme-primary-indigo .mdui-text-color-theme-200{color:#9fa8da!important}.mdui-theme-primary-indigo .mdui-text-color-theme-300{color:#7986cb!important}.mdui-theme-primary-indigo .mdui-text-color-theme-400{color:#5c6bc0!important}.mdui-theme-primary-indigo .mdui-text-color-theme-500{color:#3f51b5!important}.mdui-theme-primary-indigo .mdui-text-color-theme-600{color:#3949ab!important}.mdui-theme-primary-indigo .mdui-text-color-theme-700{color:#303f9f!important}.mdui-theme-primary-indigo .mdui-text-color-theme-800{color:#283593!important}.mdui-theme-primary-indigo .mdui-text-color-theme-900{color:#1a237e!important}.mdui-theme-primary-light-blue .mdui-text-color-theme{color:#03a9f4!important}.mdui-theme-primary-light-blue .mdui-text-color-theme-50{color:#e1f5fe!important}.mdui-theme-primary-light-blue .mdui-text-color-theme-100{color:#b3e5fc!important}.mdui-theme-primary-light-blue .mdui-text-color-theme-200{color:#81d4fa!important}.mdui-theme-primary-light-blue .mdui-text-color-theme-300{color:#4fc3f7!important}.mdui-theme-primary-light-blue .mdui-text-color-theme-400{color:#29b6f6!important}.mdui-theme-primary-light-blue .mdui-text-color-theme-500{color:#03a9f4!important}.mdui-theme-primary-light-blue .mdui-text-color-theme-600{color:#039be5!important}.mdui-theme-primary-light-blue .mdui-text-color-theme-700{color:#0288d1!important}.mdui-theme-primary-light-blue .mdui-text-color-theme-800{color:#0277bd!important}.mdui-theme-primary-light-blue .mdui-text-color-theme-900{color:#01579b!important}.mdui-theme-primary-light-green .mdui-text-color-theme{color:#8bc34a!important}.mdui-theme-primary-light-green .mdui-text-color-theme-50{color:#f1f8e9!important}.mdui-theme-primary-light-green .mdui-text-color-theme-100{color:#dcedc8!important}.mdui-theme-primary-light-green .mdui-text-color-theme-200{color:#c5e1a5!important}.mdui-theme-primary-light-green .mdui-text-color-theme-300{color:#aed581!important}.mdui-theme-primary-light-green .mdui-text-color-theme-400{color:#9ccc65!important}.mdui-theme-primary-light-green .mdui-text-color-theme-500{color:#8bc34a!important}.mdui-theme-primary-light-green .mdui-text-color-theme-600{color:#7cb342!important}.mdui-theme-primary-light-green .mdui-text-color-theme-700{color:#689f38!important}.mdui-theme-primary-light-green .mdui-text-color-theme-800{color:#558b2f!important}.mdui-theme-primary-light-green .mdui-text-color-theme-900{color:#33691e!important}.mdui-theme-primary-lime .mdui-text-color-theme{color:#cddc39!important}.mdui-theme-primary-lime .mdui-text-color-theme-50{color:#f9fbe7!important}.mdui-theme-primary-lime .mdui-text-color-theme-100{color:#f0f4c3!important}.mdui-theme-primary-lime .mdui-text-color-theme-200{color:#e6ee9c!important}.mdui-theme-primary-lime .mdui-text-color-theme-300{color:#dce775!important}.mdui-theme-primary-lime .mdui-text-color-theme-400{color:#d4e157!important}.mdui-theme-primary-lime .mdui-text-color-theme-500{color:#cddc39!important}.mdui-theme-primary-lime .mdui-text-color-theme-600{color:#c0ca33!important}.mdui-theme-primary-lime .mdui-text-color-theme-700{color:#afb42b!important}.mdui-theme-primary-lime .mdui-text-color-theme-800{color:#9e9d24!important}.mdui-theme-primary-lime .mdui-text-color-theme-900{color:#827717!important}.mdui-theme-primary-orange .mdui-text-color-theme{color:#ff9800!important}.mdui-theme-primary-orange .mdui-text-color-theme-50{color:#fff3e0!important}.mdui-theme-primary-orange .mdui-text-color-theme-100{color:#ffe0b2!important}.mdui-theme-primary-orange .mdui-text-color-theme-200{color:#ffcc80!important}.mdui-theme-primary-orange .mdui-text-color-theme-300{color:#ffb74d!important}.mdui-theme-primary-orange .mdui-text-color-theme-400{color:#ffa726!important}.mdui-theme-primary-orange .mdui-text-color-theme-500{color:#ff9800!important}.mdui-theme-primary-orange .mdui-text-color-theme-600{color:#fb8c00!important}.mdui-theme-primary-orange .mdui-text-color-theme-700{color:#f57c00!important}.mdui-theme-primary-orange .mdui-text-color-theme-800{color:#ef6c00!important}.mdui-theme-primary-orange .mdui-text-color-theme-900{color:#e65100!important}.mdui-theme-primary-pink .mdui-text-color-theme{color:#e91e63!important}.mdui-theme-primary-pink .mdui-text-color-theme-50{color:#fce4ec!important}.mdui-theme-primary-pink .mdui-text-color-theme-100{color:#f8bbd0!important}.mdui-theme-primary-pink .mdui-text-color-theme-200{color:#f48fb1!important}.mdui-theme-primary-pink .mdui-text-color-theme-300{color:#f06292!important}.mdui-theme-primary-pink .mdui-text-color-theme-400{color:#ec407a!important}.mdui-theme-primary-pink .mdui-text-color-theme-500{color:#e91e63!important}.mdui-theme-primary-pink .mdui-text-color-theme-600{color:#d81b60!important}.mdui-theme-primary-pink .mdui-text-color-theme-700{color:#c2185b!important}.mdui-theme-primary-pink .mdui-text-color-theme-800{color:#ad1457!important}.mdui-theme-primary-pink .mdui-text-color-theme-900{color:#880e4f!important}.mdui-theme-primary-purple .mdui-text-color-theme{color:#9c27b0!important}.mdui-theme-primary-purple .mdui-text-color-theme-50{color:#f3e5f5!important}.mdui-theme-primary-purple .mdui-text-color-theme-100{color:#e1bee7!important}.mdui-theme-primary-purple .mdui-text-color-theme-200{color:#ce93d8!important}.mdui-theme-primary-purple .mdui-text-color-theme-300{color:#ba68c8!important}.mdui-theme-primary-purple .mdui-text-color-theme-400{color:#ab47bc!important}.mdui-theme-primary-purple .mdui-text-color-theme-500{color:#9c27b0!important}.mdui-theme-primary-purple .mdui-text-color-theme-600{color:#8e24aa!important}.mdui-theme-primary-purple .mdui-text-color-theme-700{color:#7b1fa2!important}.mdui-theme-primary-purple .mdui-text-color-theme-800{color:#6a1b9a!important}.mdui-theme-primary-purple .mdui-text-color-theme-900{color:#4a148c!important}.mdui-theme-primary-red .mdui-text-color-theme{color:#f44336!important}.mdui-theme-primary-red .mdui-text-color-theme-50{color:#ffebee!important}.mdui-theme-primary-red .mdui-text-color-theme-100{color:#ffcdd2!important}.mdui-theme-primary-red .mdui-text-color-theme-200{color:#ef9a9a!important}.mdui-theme-primary-red .mdui-text-color-theme-300{color:#e57373!important}.mdui-theme-primary-red .mdui-text-color-theme-400{color:#ef5350!important}.mdui-theme-primary-red .mdui-text-color-theme-500{color:#f44336!important}.mdui-theme-primary-red .mdui-text-color-theme-600{color:#e53935!important}.mdui-theme-primary-red .mdui-text-color-theme-700{color:#d32f2f!important}.mdui-theme-primary-red .mdui-text-color-theme-800{color:#c62828!important}.mdui-theme-primary-red .mdui-text-color-theme-900{color:#b71c1c!important}.mdui-theme-primary-teal .mdui-text-color-theme{color:#009688!important}.mdui-theme-primary-teal .mdui-text-color-theme-50{color:#e0f2f1!important}.mdui-theme-primary-teal .mdui-text-color-theme-100{color:#b2dfdb!important}.mdui-theme-primary-teal .mdui-text-color-theme-200{color:#80cbc4!important}.mdui-theme-primary-teal .mdui-text-color-theme-300{color:#4db6ac!important}.mdui-theme-primary-teal .mdui-text-color-theme-400{color:#26a69a!important}.mdui-theme-primary-teal .mdui-text-color-theme-500{color:#009688!important}.mdui-theme-primary-teal .mdui-text-color-theme-600{color:#00897b!important}.mdui-theme-primary-teal .mdui-text-color-theme-700{color:#00796b!important}.mdui-theme-primary-teal .mdui-text-color-theme-800{color:#00695c!important}.mdui-theme-primary-teal .mdui-text-color-theme-900{color:#004d40!important}.mdui-theme-primary-yellow .mdui-text-color-theme{color:#ffeb3b!important}.mdui-theme-primary-yellow .mdui-text-color-theme-50{color:#fffde7!important}.mdui-theme-primary-yellow .mdui-text-color-theme-100{color:#fff9c4!important}.mdui-theme-primary-yellow .mdui-text-color-theme-200{color:#fff59d!important}.mdui-theme-primary-yellow .mdui-text-color-theme-300{color:#fff176!important}.mdui-theme-primary-yellow .mdui-text-color-theme-400{color:#ffee58!important}.mdui-theme-primary-yellow .mdui-text-color-theme-500{color:#ffeb3b!important}.mdui-theme-primary-yellow .mdui-text-color-theme-600{color:#fdd835!important}.mdui-theme-primary-yellow .mdui-text-color-theme-700{color:#fbc02d!important}.mdui-theme-primary-yellow .mdui-text-color-theme-800{color:#f9a825!important}.mdui-theme-primary-yellow .mdui-text-color-theme-900{color:#f57f17!important}.mdui-theme-accent-amber .mdui-text-color-theme-accent{color:#ffd740!important}.mdui-theme-accent-amber .mdui-text-color-theme-a100{color:#ffe57f!important}.mdui-theme-accent-amber .mdui-text-color-theme-a200{color:#ffd740!important}.mdui-theme-accent-amber .mdui-text-color-theme-a400{color:#ffc400!important}.mdui-theme-accent-amber .mdui-text-color-theme-a700{color:#ffab00!important}.mdui-theme-accent-blue .mdui-text-color-theme-accent{color:#448aff!important}.mdui-theme-accent-blue .mdui-text-color-theme-a100{color:#82b1ff!important}.mdui-theme-accent-blue .mdui-text-color-theme-a200{color:#448aff!important}.mdui-theme-accent-blue .mdui-text-color-theme-a400{color:#2979ff!important}.mdui-theme-accent-blue .mdui-text-color-theme-a700{color:#2962ff!important}.mdui-theme-accent-cyan .mdui-text-color-theme-accent{color:#18ffff!important}.mdui-theme-accent-cyan .mdui-text-color-theme-a100{color:#84ffff!important}.mdui-theme-accent-cyan .mdui-text-color-theme-a200{color:#18ffff!important}.mdui-theme-accent-cyan .mdui-text-color-theme-a400{color:#00e5ff!important}.mdui-theme-accent-cyan .mdui-text-color-theme-a700{color:#00b8d4!important}.mdui-theme-accent-deep-orange .mdui-text-color-theme-accent{color:#ff6e40!important}.mdui-theme-accent-deep-orange .mdui-text-color-theme-a100{color:#ff9e80!important}.mdui-theme-accent-deep-orange .mdui-text-color-theme-a200{color:#ff6e40!important}.mdui-theme-accent-deep-orange .mdui-text-color-theme-a400{color:#ff3d00!important}.mdui-theme-accent-deep-orange .mdui-text-color-theme-a700{color:#dd2c00!important}.mdui-theme-accent-deep-purple .mdui-text-color-theme-accent{color:#7c4dff!important}.mdui-theme-accent-deep-purple .mdui-text-color-theme-a100{color:#b388ff!important}.mdui-theme-accent-deep-purple .mdui-text-color-theme-a200{color:#7c4dff!important}.mdui-theme-accent-deep-purple .mdui-text-color-theme-a400{color:#651fff!important}.mdui-theme-accent-deep-purple .mdui-text-color-theme-a700{color:#6200ea!important}.mdui-theme-accent-green .mdui-text-color-theme-accent{color:#69f0ae!important}.mdui-theme-accent-green .mdui-text-color-theme-a100{color:#b9f6ca!important}.mdui-theme-accent-green .mdui-text-color-theme-a200{color:#69f0ae!important}.mdui-theme-accent-green .mdui-text-color-theme-a400{color:#00e676!important}.mdui-theme-accent-green .mdui-text-color-theme-a700{color:#00c853!important}.mdui-theme-accent-indigo .mdui-text-color-theme-accent{color:#536dfe!important}.mdui-theme-accent-indigo .mdui-text-color-theme-a100{color:#8c9eff!important}.mdui-theme-accent-indigo .mdui-text-color-theme-a200{color:#536dfe!important}.mdui-theme-accent-indigo .mdui-text-color-theme-a400{color:#3d5afe!important}.mdui-theme-accent-indigo .mdui-text-color-theme-a700{color:#304ffe!important}.mdui-theme-accent-light-blue .mdui-text-color-theme-accent{color:#40c4ff!important}.mdui-theme-accent-light-blue .mdui-text-color-theme-a100{color:#80d8ff!important}.mdui-theme-accent-light-blue .mdui-text-color-theme-a200{color:#40c4ff!important}.mdui-theme-accent-light-blue .mdui-text-color-theme-a400{color:#00b0ff!important}.mdui-theme-accent-light-blue .mdui-text-color-theme-a700{color:#0091ea!important}.mdui-theme-accent-light-green .mdui-text-color-theme-accent{color:#b2ff59!important}.mdui-theme-accent-light-green .mdui-text-color-theme-a100{color:#ccff90!important}.mdui-theme-accent-light-green .mdui-text-color-theme-a200{color:#b2ff59!important}.mdui-theme-accent-light-green .mdui-text-color-theme-a400{color:#76ff03!important}.mdui-theme-accent-light-green .mdui-text-color-theme-a700{color:#64dd17!important}.mdui-theme-accent-lime .mdui-text-color-theme-accent{color:#eeff41!important}.mdui-theme-accent-lime .mdui-text-color-theme-a100{color:#f4ff81!important}.mdui-theme-accent-lime .mdui-text-color-theme-a200{color:#eeff41!important}.mdui-theme-accent-lime .mdui-text-color-theme-a400{color:#c6ff00!important}.mdui-theme-accent-lime .mdui-text-color-theme-a700{color:#aeea00!important}.mdui-theme-accent-orange .mdui-text-color-theme-accent{color:#ffab40!important}.mdui-theme-accent-orange .mdui-text-color-theme-a100{color:#ffd180!important}.mdui-theme-accent-orange .mdui-text-color-theme-a200{color:#ffab40!important}.mdui-theme-accent-orange .mdui-text-color-theme-a400{color:#ff9100!important}.mdui-theme-accent-orange .mdui-text-color-theme-a700{color:#ff6d00!important}.mdui-theme-accent-pink .mdui-text-color-theme-accent{color:#ff4081!important}.mdui-theme-accent-pink .mdui-text-color-theme-a100{color:#ff80ab!important}.mdui-theme-accent-pink .mdui-text-color-theme-a200{color:#ff4081!important}.mdui-theme-accent-pink .mdui-text-color-theme-a400{color:#f50057!important}.mdui-theme-accent-pink .mdui-text-color-theme-a700{color:#c51162!important}.mdui-theme-accent-purple .mdui-text-color-theme-accent{color:#e040fb!important}.mdui-theme-accent-purple .mdui-text-color-theme-a100{color:#ea80fc!important}.mdui-theme-accent-purple .mdui-text-color-theme-a200{color:#e040fb!important}.mdui-theme-accent-purple .mdui-text-color-theme-a400{color:#d500f9!important}.mdui-theme-accent-purple .mdui-text-color-theme-a700{color:#a0f!important}.mdui-theme-accent-red .mdui-text-color-theme-accent{color:#ff5252!important}.mdui-theme-accent-red .mdui-text-color-theme-a100{color:#ff8a80!important}.mdui-theme-accent-red .mdui-text-color-theme-a200{color:#ff5252!important}.mdui-theme-accent-red .mdui-text-color-theme-a400{color:#ff1744!important}.mdui-theme-accent-red .mdui-text-color-theme-a700{color:#d50000!important}.mdui-theme-accent-teal .mdui-text-color-theme-accent{color:#64ffda!important}.mdui-theme-accent-teal .mdui-text-color-theme-a100{color:#a7ffeb!important}.mdui-theme-accent-teal .mdui-text-color-theme-a200{color:#64ffda!important}.mdui-theme-accent-teal .mdui-text-color-theme-a400{color:#1de9b6!important}.mdui-theme-accent-teal .mdui-text-color-theme-a700{color:#00bfa5!important}.mdui-theme-accent-yellow .mdui-text-color-theme-accent{color:#ff0!important}.mdui-theme-accent-yellow .mdui-text-color-theme-a100{color:#ffff8d!important}.mdui-theme-accent-yellow .mdui-text-color-theme-a200{color:#ff0!important}.mdui-theme-accent-yellow .mdui-text-color-theme-a400{color:#ffea00!important}.mdui-theme-accent-yellow .mdui-text-color-theme-a700{color:#ffd600!important}.mdui-text-color-amber{color:#ffc107!important}.mdui-text-color-amber-50{color:#fff8e1!important}.mdui-text-color-amber-100{color:#ffecb3!important}.mdui-text-color-amber-200{color:#ffe082!important}.mdui-text-color-amber-300{color:#ffd54f!important}.mdui-text-color-amber-400{color:#ffca28!important}.mdui-text-color-amber-500{color:#ffc107!important}.mdui-text-color-amber-600{color:#ffb300!important}.mdui-text-color-amber-700{color:#ffa000!important}.mdui-text-color-amber-800{color:#ff8f00!important}.mdui-text-color-amber-900{color:#ff6f00!important}.mdui-text-color-blue{color:#2196f3!important}.mdui-text-color-blue-50{color:#e3f2fd!important}.mdui-text-color-blue-100{color:#bbdefb!important}.mdui-text-color-blue-200{color:#90caf9!important}.mdui-text-color-blue-300{color:#64b5f6!important}.mdui-text-color-blue-400{color:#42a5f5!important}.mdui-text-color-blue-500{color:#2196f3!important}.mdui-text-color-blue-600{color:#1e88e5!important}.mdui-text-color-blue-700{color:#1976d2!important}.mdui-text-color-blue-800{color:#1565c0!important}.mdui-text-color-blue-900{color:#0d47a1!important}.mdui-text-color-blue-grey{color:#607d8b!important}.mdui-text-color-blue-grey-50{color:#eceff1!important}.mdui-text-color-blue-grey-100{color:#cfd8dc!important}.mdui-text-color-blue-grey-200{color:#b0bec5!important}.mdui-text-color-blue-grey-300{color:#90a4ae!important}.mdui-text-color-blue-grey-400{color:#78909c!important}.mdui-text-color-blue-grey-500{color:#607d8b!important}.mdui-text-color-blue-grey-600{color:#546e7a!important}.mdui-text-color-blue-grey-700{color:#455a64!important}.mdui-text-color-blue-grey-800{color:#37474f!important}.mdui-text-color-blue-grey-900{color:#263238!important}.mdui-text-color-brown{color:#795548!important}.mdui-text-color-brown-50{color:#efebe9!important}.mdui-text-color-brown-100{color:#d7ccc8!important}.mdui-text-color-brown-200{color:#bcaaa4!important}.mdui-text-color-brown-300{color:#a1887f!important}.mdui-text-color-brown-400{color:#8d6e63!important}.mdui-text-color-brown-500{color:#795548!important}.mdui-text-color-brown-600{color:#6d4c41!important}.mdui-text-color-brown-700{color:#5d4037!important}.mdui-text-color-brown-800{color:#4e342e!important}.mdui-text-color-brown-900{color:#3e2723!important}.mdui-text-color-cyan{color:#00bcd4!important}.mdui-text-color-cyan-50{color:#e0f7fa!important}.mdui-text-color-cyan-100{color:#b2ebf2!important}.mdui-text-color-cyan-200{color:#80deea!important}.mdui-text-color-cyan-300{color:#4dd0e1!important}.mdui-text-color-cyan-400{color:#26c6da!important}.mdui-text-color-cyan-500{color:#00bcd4!important}.mdui-text-color-cyan-600{color:#00acc1!important}.mdui-text-color-cyan-700{color:#0097a7!important}.mdui-text-color-cyan-800{color:#00838f!important}.mdui-text-color-cyan-900{color:#006064!important}.mdui-text-color-deep-orange{color:#ff5722!important}.mdui-text-color-deep-orange-50{color:#fbe9e7!important}.mdui-text-color-deep-orange-100{color:#ffccbc!important}.mdui-text-color-deep-orange-200{color:#ffab91!important}.mdui-text-color-deep-orange-300{color:#ff8a65!important}.mdui-text-color-deep-orange-400{color:#ff7043!important}.mdui-text-color-deep-orange-500{color:#ff5722!important}.mdui-text-color-deep-orange-600{color:#f4511e!important}.mdui-text-color-deep-orange-700{color:#e64a19!important}.mdui-text-color-deep-orange-800{color:#d84315!important}.mdui-text-color-deep-orange-900{color:#bf360c!important}.mdui-text-color-deep-purple{color:#673ab7!important}.mdui-text-color-deep-purple-50{color:#ede7f6!important}.mdui-text-color-deep-purple-100{color:#d1c4e9!important}.mdui-text-color-deep-purple-200{color:#b39ddb!important}.mdui-text-color-deep-purple-300{color:#9575cd!important}.mdui-text-color-deep-purple-400{color:#7e57c2!important}.mdui-text-color-deep-purple-500{color:#673ab7!important}.mdui-text-color-deep-purple-600{color:#5e35b1!important}.mdui-text-color-deep-purple-700{color:#512da8!important}.mdui-text-color-deep-purple-800{color:#4527a0!important}.mdui-text-color-deep-purple-900{color:#311b92!important}.mdui-text-color-green{color:#4caf50!important}.mdui-text-color-green-50{color:#e8f5e9!important}.mdui-text-color-green-100{color:#c8e6c9!important}.mdui-text-color-green-200{color:#a5d6a7!important}.mdui-text-color-green-300{color:#81c784!important}.mdui-text-color-green-400{color:#66bb6a!important}.mdui-text-color-green-500{color:#4caf50!important}.mdui-text-color-green-600{color:#43a047!important}.mdui-text-color-green-700{color:#388e3c!important}.mdui-text-color-green-800{color:#2e7d32!important}.mdui-text-color-green-900{color:#1b5e20!important}.mdui-text-color-grey{color:#9e9e9e!important}.mdui-text-color-grey-50{color:#fafafa!important}.mdui-text-color-grey-100{color:#f5f5f5!important}.mdui-text-color-grey-200{color:#eee!important}.mdui-text-color-grey-300{color:#e0e0e0!important}.mdui-text-color-grey-400{color:#bdbdbd!important}.mdui-text-color-grey-500{color:#9e9e9e!important}.mdui-text-color-grey-600{color:#757575!important}.mdui-text-color-grey-700{color:#616161!important}.mdui-text-color-grey-800{color:#424242!important}.mdui-text-color-grey-900{color:#212121!important}.mdui-text-color-indigo{color:#3f51b5!important}.mdui-text-color-indigo-50{color:#e8eaf6!important}.mdui-text-color-indigo-100{color:#c5cae9!important}.mdui-text-color-indigo-200{color:#9fa8da!important}.mdui-text-color-indigo-300{color:#7986cb!important}.mdui-text-color-indigo-400{color:#5c6bc0!important}.mdui-text-color-indigo-500{color:#3f51b5!important}.mdui-text-color-indigo-600{color:#3949ab!important}.mdui-text-color-indigo-700{color:#303f9f!important}.mdui-text-color-indigo-800{color:#283593!important}.mdui-text-color-indigo-900{color:#1a237e!important}.mdui-text-color-light-blue{color:#03a9f4!important}.mdui-text-color-light-blue-50{color:#e1f5fe!important}.mdui-text-color-light-blue-100{color:#b3e5fc!important}.mdui-text-color-light-blue-200{color:#81d4fa!important}.mdui-text-color-light-blue-300{color:#4fc3f7!important}.mdui-text-color-light-blue-400{color:#29b6f6!important}.mdui-text-color-light-blue-500{color:#03a9f4!important}.mdui-text-color-light-blue-600{color:#039be5!important}.mdui-text-color-light-blue-700{color:#0288d1!important}.mdui-text-color-light-blue-800{color:#0277bd!important}.mdui-text-color-light-blue-900{color:#01579b!important}.mdui-text-color-light-green{color:#8bc34a!important}.mdui-text-color-light-green-50{color:#f1f8e9!important}.mdui-text-color-light-green-100{color:#dcedc8!important}.mdui-text-color-light-green-200{color:#c5e1a5!important}.mdui-text-color-light-green-300{color:#aed581!important}.mdui-text-color-light-green-400{color:#9ccc65!important}.mdui-text-color-light-green-500{color:#8bc34a!important}.mdui-text-color-light-green-600{color:#7cb342!important}.mdui-text-color-light-green-700{color:#689f38!important}.mdui-text-color-light-green-800{color:#558b2f!important}.mdui-text-color-light-green-900{color:#33691e!important}.mdui-text-color-lime{color:#cddc39!important}.mdui-text-color-lime-50{color:#f9fbe7!important}.mdui-text-color-lime-100{color:#f0f4c3!important}.mdui-text-color-lime-200{color:#e6ee9c!important}.mdui-text-color-lime-300{color:#dce775!important}.mdui-text-color-lime-400{color:#d4e157!important}.mdui-text-color-lime-500{color:#cddc39!important}.mdui-text-color-lime-600{color:#c0ca33!important}.mdui-text-color-lime-700{color:#afb42b!important}.mdui-text-color-lime-800{color:#9e9d24!important}.mdui-text-color-lime-900{color:#827717!important}.mdui-text-color-orange{color:#ff9800!important}.mdui-text-color-orange-50{color:#fff3e0!important}.mdui-text-color-orange-100{color:#ffe0b2!important}.mdui-text-color-orange-200{color:#ffcc80!important}.mdui-text-color-orange-300{color:#ffb74d!important}.mdui-text-color-orange-400{color:#ffa726!important}.mdui-text-color-orange-500{color:#ff9800!important}.mdui-text-color-orange-600{color:#fb8c00!important}.mdui-text-color-orange-700{color:#f57c00!important}.mdui-text-color-orange-800{color:#ef6c00!important}.mdui-text-color-orange-900{color:#e65100!important}.mdui-text-color-pink{color:#e91e63!important}.mdui-text-color-pink-50{color:#fce4ec!important}.mdui-text-color-pink-100{color:#f8bbd0!important}.mdui-text-color-pink-200{color:#f48fb1!important}.mdui-text-color-pink-300{color:#f06292!important}.mdui-text-color-pink-400{color:#ec407a!important}.mdui-text-color-pink-500{color:#e91e63!important}.mdui-text-color-pink-600{color:#d81b60!important}.mdui-text-color-pink-700{color:#c2185b!important}.mdui-text-color-pink-800{color:#ad1457!important}.mdui-text-color-pink-900{color:#880e4f!important}.mdui-text-color-purple{color:#9c27b0!important}.mdui-text-color-purple-50{color:#f3e5f5!important}.mdui-text-color-purple-100{color:#e1bee7!important}.mdui-text-color-purple-200{color:#ce93d8!important}.mdui-text-color-purple-300{color:#ba68c8!important}.mdui-text-color-purple-400{color:#ab47bc!important}.mdui-text-color-purple-500{color:#9c27b0!important}.mdui-text-color-purple-600{color:#8e24aa!important}.mdui-text-color-purple-700{color:#7b1fa2!important}.mdui-text-color-purple-800{color:#6a1b9a!important}.mdui-text-color-purple-900{color:#4a148c!important}.mdui-text-color-red{color:#f44336!important}.mdui-text-color-red-50{color:#ffebee!important}.mdui-text-color-red-100{color:#ffcdd2!important}.mdui-text-color-red-200{color:#ef9a9a!important}.mdui-text-color-red-300{color:#e57373!important}.mdui-text-color-red-400{color:#ef5350!important}.mdui-text-color-red-500{color:#f44336!important}.mdui-text-color-red-600{color:#e53935!important}.mdui-text-color-red-700{color:#d32f2f!important}.mdui-text-color-red-800{color:#c62828!important}.mdui-text-color-red-900{color:#b71c1c!important}.mdui-text-color-teal{color:#009688!important}.mdui-text-color-teal-50{color:#e0f2f1!important}.mdui-text-color-teal-100{color:#b2dfdb!important}.mdui-text-color-teal-200{color:#80cbc4!important}.mdui-text-color-teal-300{color:#4db6ac!important}.mdui-text-color-teal-400{color:#26a69a!important}.mdui-text-color-teal-500{color:#009688!important}.mdui-text-color-teal-600{color:#00897b!important}.mdui-text-color-teal-700{color:#00796b!important}.mdui-text-color-teal-800{color:#00695c!important}.mdui-text-color-teal-900{color:#004d40!important}.mdui-text-color-yellow{color:#ffeb3b!important}.mdui-text-color-yellow-50{color:#fffde7!important}.mdui-text-color-yellow-100{color:#fff9c4!important}.mdui-text-color-yellow-200{color:#fff59d!important}.mdui-text-color-yellow-300{color:#fff176!important}.mdui-text-color-yellow-400{color:#ffee58!important}.mdui-text-color-yellow-500{color:#ffeb3b!important}.mdui-text-color-yellow-600{color:#fdd835!important}.mdui-text-color-yellow-700{color:#fbc02d!important}.mdui-text-color-yellow-800{color:#f9a825!important}.mdui-text-color-yellow-900{color:#f57f17!important}.mdui-text-color-amber-accent{color:#ffd740!important}.mdui-text-color-amber-a100{color:#ffe57f!important}.mdui-text-color-amber-a200{color:#ffd740!important}.mdui-text-color-amber-a400{color:#ffc400!important}.mdui-text-color-amber-a700{color:#ffab00!important}.mdui-text-color-blue-accent{color:#448aff!important}.mdui-text-color-blue-a100{color:#82b1ff!important}.mdui-text-color-blue-a200{color:#448aff!important}.mdui-text-color-blue-a400{color:#2979ff!important}.mdui-text-color-blue-a700{color:#2962ff!important}.mdui-text-color-cyan-accent{color:#18ffff!important}.mdui-text-color-cyan-a100{color:#84ffff!important}.mdui-text-color-cyan-a200{color:#18ffff!important}.mdui-text-color-cyan-a400{color:#00e5ff!important}.mdui-text-color-cyan-a700{color:#00b8d4!important}.mdui-text-color-deep-orange-accent{color:#ff6e40!important}.mdui-text-color-deep-orange-a100{color:#ff9e80!important}.mdui-text-color-deep-orange-a200{color:#ff6e40!important}.mdui-text-color-deep-orange-a400{color:#ff3d00!important}.mdui-text-color-deep-orange-a700{color:#dd2c00!important}.mdui-text-color-deep-purple-accent{color:#7c4dff!important}.mdui-text-color-deep-purple-a100{color:#b388ff!important}.mdui-text-color-deep-purple-a200{color:#7c4dff!important}.mdui-text-color-deep-purple-a400{color:#651fff!important}.mdui-text-color-deep-purple-a700{color:#6200ea!important}.mdui-text-color-green-accent{color:#69f0ae!important}.mdui-text-color-green-a100{color:#b9f6ca!important}.mdui-text-color-green-a200{color:#69f0ae!important}.mdui-text-color-green-a400{color:#00e676!important}.mdui-text-color-green-a700{color:#00c853!important}.mdui-text-color-indigo-accent{color:#536dfe!important}.mdui-text-color-indigo-a100{color:#8c9eff!important}.mdui-text-color-indigo-a200{color:#536dfe!important}.mdui-text-color-indigo-a400{color:#3d5afe!important}.mdui-text-color-indigo-a700{color:#304ffe!important}.mdui-text-color-light-blue-accent{color:#40c4ff!important}.mdui-text-color-light-blue-a100{color:#80d8ff!important}.mdui-text-color-light-blue-a200{color:#40c4ff!important}.mdui-text-color-light-blue-a400{color:#00b0ff!important}.mdui-text-color-light-blue-a700{color:#0091ea!important}.mdui-text-color-light-green-accent{color:#b2ff59!important}.mdui-text-color-light-green-a100{color:#ccff90!important}.mdui-text-color-light-green-a200{color:#b2ff59!important}.mdui-text-color-light-green-a400{color:#76ff03!important}.mdui-text-color-light-green-a700{color:#64dd17!important}.mdui-text-color-lime-accent{color:#eeff41!important}.mdui-text-color-lime-a100{color:#f4ff81!important}.mdui-text-color-lime-a200{color:#eeff41!important}.mdui-text-color-lime-a400{color:#c6ff00!important}.mdui-text-color-lime-a700{color:#aeea00!important}.mdui-text-color-orange-accent{color:#ffab40!important}.mdui-text-color-orange-a100{color:#ffd180!important}.mdui-text-color-orange-a200{color:#ffab40!important}.mdui-text-color-orange-a400{color:#ff9100!important}.mdui-text-color-orange-a700{color:#ff6d00!important}.mdui-text-color-pink-accent{color:#ff4081!important}.mdui-text-color-pink-a100{color:#ff80ab!important}.mdui-text-color-pink-a200{color:#ff4081!important}.mdui-text-color-pink-a400{color:#f50057!important}.mdui-text-color-pink-a700{color:#c51162!important}.mdui-text-color-purple-accent{color:#e040fb!important}.mdui-text-color-purple-a100{color:#ea80fc!important}.mdui-text-color-purple-a200{color:#e040fb!important}.mdui-text-color-purple-a400{color:#d500f9!important}.mdui-text-color-purple-a700{color:#a0f!important}.mdui-text-color-red-accent{color:#ff5252!important}.mdui-text-color-red-a100{color:#ff8a80!important}.mdui-text-color-red-a200{color:#ff5252!important}.mdui-text-color-red-a400{color:#ff1744!important}.mdui-text-color-red-a700{color:#d50000!important}.mdui-text-color-teal-accent{color:#64ffda!important}.mdui-text-color-teal-a100{color:#a7ffeb!important}.mdui-text-color-teal-a200{color:#64ffda!important}.mdui-text-color-teal-a400{color:#1de9b6!important}.mdui-text-color-teal-a700{color:#00bfa5!important}.mdui-text-color-yellow-accent{color:#ff0!important}.mdui-text-color-yellow-a100{color:#ffff8d!important}.mdui-text-color-yellow-a200{color:#ff0!important}.mdui-text-color-yellow-a400{color:#ffea00!important}.mdui-text-color-yellow-a700{color:#ffd600!important}.mdui-text-color-black{color:#000!important}.mdui-text-color-black-text,.mdui-text-color-theme-text{color:rgba(0,0,0,.87)!important}.mdui-text-color-black-secondary,.mdui-text-color-theme-secondary{color:rgba(0,0,0,.54)!important}.mdui-text-color-black-disabled,.mdui-text-color-theme-disabled{color:rgba(0,0,0,.38)!important}.mdui-text-color-black-divider,.mdui-text-color-theme-divider{color:rgba(0,0,0,.12)!important}.mdui-text-color-black-icon,.mdui-text-color-theme-icon{color:rgba(0,0,0,.54)!important}.mdui-text-color-black-icon-disabled,.mdui-text-color-theme-icon-disabled{color:rgba(0,0,0,.26)!important}.mdui-text-color-white{color:#fff!important}.mdui-text-color-white-text{color:#fff!important}.mdui-text-color-white-secondary{color:rgba(255,255,255,.7)!important}.mdui-text-color-white-disabled{color:rgba(255,255,255,.5)!important}.mdui-text-color-white-divider{color:rgba(255,255,255,.12)!important}.mdui-text-color-white-icon{color:#fff!important}.mdui-text-color-white-icon-disabled{color:rgba(255,255,255,.3)!important}.mdui-theme-layout-dark .mdui-text-color-theme-text{color:#fff!important}.mdui-theme-layout-dark .mdui-text-color-theme-secondary{color:rgba(255,255,255,.7)!important}.mdui-theme-layout-dark .mdui-text-color-theme-disabled{color:rgba(255,255,255,.5)!important}.mdui-theme-layout-dark .mdui-text-color-theme-divider{color:rgba(255,255,255,.12)!important}.mdui-theme-layout-dark .mdui-text-color-theme-icon{color:#fff!important}.mdui-theme-layout-dark .mdui-text-color-theme-icon-disabled{color:rgba(255,255,255,.3)!important}.mdui-m-a-0{margin:0!important}.mdui-m-t-0{margin-top:0!important}.mdui-m-r-0{margin-right:0!important}.mdui-m-b-0{margin-bottom:0!important}.mdui-m-l-0{margin-left:0!important}.mdui-m-x-0{margin-right:0!important;margin-left:0!important}.mdui-m-y-0{margin-top:0!important;margin-bottom:0!important}.mdui-p-a-0{padding:0!important}.mdui-p-t-0{padding-top:0!important}.mdui-p-r-0{padding-right:0!important}.mdui-p-b-0{padding-bottom:0!important}.mdui-p-l-0{padding-left:0!important}.mdui-p-x-0{padding-right:0!important;padding-left:0!important}.mdui-p-y-0{padding-top:0!important;padding-bottom:0!important}.mdui-m-a-1{margin:8px!important}.mdui-m-t-1{margin-top:8px!important}.mdui-m-r-1{margin-right:8px!important}.mdui-m-b-1{margin-bottom:8px!important}.mdui-m-l-1{margin-left:8px!important}.mdui-m-x-1{margin-right:8px!important;margin-left:8px!important}.mdui-m-y-1{margin-top:8px!important;margin-bottom:8px!important}.mdui-p-a-1{padding:8px!important}.mdui-p-t-1{padding-top:8px!important}.mdui-p-r-1{padding-right:8px!important}.mdui-p-b-1{padding-bottom:8px!important}.mdui-p-l-1{padding-left:8px!important}.mdui-p-x-1{padding-right:8px!important;padding-left:8px!important}.mdui-p-y-1{padding-top:8px!important;padding-bottom:8px!important}.mdui-m-a-2{margin:16px!important}.mdui-m-t-2{margin-top:16px!important}.mdui-m-r-2{margin-right:16px!important}.mdui-m-b-2{margin-bottom:16px!important}.mdui-m-l-2{margin-left:16px!important}.mdui-m-x-2{margin-right:16px!important;margin-left:16px!important}.mdui-m-y-2{margin-top:16px!important;margin-bottom:16px!important}.mdui-p-a-2{padding:16px!important}.mdui-p-t-2{padding-top:16px!important}.mdui-p-r-2{padding-right:16px!important}.mdui-p-b-2{padding-bottom:16px!important}.mdui-p-l-2{padding-left:16px!important}.mdui-p-x-2{padding-right:16px!important;padding-left:16px!important}.mdui-p-y-2{padding-top:16px!important;padding-bottom:16px!important}.mdui-m-a-3{margin:24px!important}.mdui-m-t-3{margin-top:24px!important}.mdui-m-r-3{margin-right:24px!important}.mdui-m-b-3{margin-bottom:24px!important}.mdui-m-l-3{margin-left:24px!important}.mdui-m-x-3{margin-right:24px!important;margin-left:24px!important}.mdui-m-y-3{margin-top:24px!important;margin-bottom:24px!important}.mdui-p-a-3{padding:24px!important}.mdui-p-t-3{padding-top:24px!important}.mdui-p-r-3{padding-right:24px!important}.mdui-p-b-3{padding-bottom:24px!important}.mdui-p-l-3{padding-left:24px!important}.mdui-p-x-3{padding-right:24px!important;padding-left:24px!important}.mdui-p-y-3{padding-top:24px!important;padding-bottom:24px!important}.mdui-m-a-4{margin:32px!important}.mdui-m-t-4{margin-top:32px!important}.mdui-m-r-4{margin-right:32px!important}.mdui-m-b-4{margin-bottom:32px!important}.mdui-m-l-4{margin-left:32px!important}.mdui-m-x-4{margin-right:32px!important;margin-left:32px!important}.mdui-m-y-4{margin-top:32px!important;margin-bottom:32px!important}.mdui-p-a-4{padding:32px!important}.mdui-p-t-4{padding-top:32px!important}.mdui-p-r-4{padding-right:32px!important}.mdui-p-b-4{padding-bottom:32px!important}.mdui-p-l-4{padding-left:32px!important}.mdui-p-x-4{padding-right:32px!important;padding-left:32px!important}.mdui-p-y-4{padding-top:32px!important;padding-bottom:32px!important}.mdui-m-a-5{margin:40px!important}.mdui-m-t-5{margin-top:40px!important}.mdui-m-r-5{margin-right:40px!important}.mdui-m-b-5{margin-bottom:40px!important}.mdui-m-l-5{margin-left:40px!important}.mdui-m-x-5{margin-right:40px!important;margin-left:40px!important}.mdui-m-y-5{margin-top:40px!important;margin-bottom:40px!important}.mdui-p-a-5{padding:40px!important}.mdui-p-t-5{padding-top:40px!important}.mdui-p-r-5{padding-right:40px!important}.mdui-p-b-5{padding-bottom:40px!important}.mdui-p-l-5{padding-left:40px!important}.mdui-p-x-5{padding-right:40px!important;padding-left:40px!important}.mdui-p-y-5{padding-top:40px!important;padding-bottom:40px!important}.mdui-float-left{float:left!important}.mdui-float-right{float:right!important}.mdui-center{display:block!important;margin-right:auto!important;margin-left:auto!important}.mdui-valign{display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-align:center!important;-webkit-align-items:center!important;-ms-flex-align:center!important;align-items:center!important}.mdui-text-left{text-align:left!important}.mdui-text-center{text-align:center!important}.mdui-text-right{text-align:right!important}.mdui-text-lowercase{text-transform:lowercase!important}.mdui-text-uppercase{text-transform:uppercase!important}.mdui-text-capitalize{text-transform:capitalize!important}.mdui-text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mdui-clearfix:after,.mdui-clearfix:before{display:table;content:" "}.mdui-clearfix:after{clear:both}.mdui-hidden,[hidden]{display:none!important}.mdui-invisible{visibility:hidden}@media (max-width:599px){.mdui-hidden-xs{display:none!important}}@media (min-width:600px) and (max-width:1023px){.mdui-hidden-sm{display:none!important}}@media (min-width:1024px) and (max-width:1439px){.mdui-hidden-md{display:none!important}}@media (min-width:1440px) and (max-width:1919px){.mdui-hidden-lg{display:none!important}}@media (min-width:1920px){.mdui-hidden-xl{display:none!important}}@media (max-width:599px){.mdui-hidden-xs-down{display:none!important}}@media (max-width:1023px){.mdui-hidden-sm-down{display:none!important}}@media (max-width:1439px){.mdui-hidden-md-down{display:none!important}}@media (max-width:1919px){.mdui-hidden-lg-down{display:none!important}}.mdui-hidden-xl-down{display:none!important}.mdui-hidden-xs-up{display:none!important}@media (min-width:600px){.mdui-hidden-sm-up{display:none!important}}@media (min-width:1024px){.mdui-hidden-md-up{display:none!important}}@media (min-width:1440px){.mdui-hidden-lg-up{display:none!important}}@media (min-width:1920px){.mdui-hidden-xl-up{display:none!important}}/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}h1{margin:.67em 0;font-size:2em}hr{height:0;-webkit-box-sizing:content-box;box-sizing:content-box;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{text-decoration:underline;text-decoration:underline dotted;border-bottom:none;-webkit-text-decoration:underline dotted;-moz-text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:100%;line-height:1.15}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}fieldset{padding:.35em .75em .625em}legend{display:table;max-width:100%;-webkit-box-sizing:border-box;box-sizing:border-box;padding:0;color:inherit;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}body{font-family:Roboto,Noto,Helvetica,Arial,sans-serif;font-size:14px;color:rgba(0,0,0,.87);background-color:#fff}@media (min-width:600px){body{font-size:14.5px}}@media (min-width:1024px){body{font-size:15px}}body ::-webkit-scrollbar{width:5px;height:5px;background:0 0}@media (min-width:1024px){body ::-webkit-scrollbar{width:8px;height:8px}}body ::-webkit-scrollbar-thumb{background:rgba(0,0,0,.2)}body.mdui-theme-layout-dark ::-webkit-scrollbar{width:5px;height:5px;background:0 0}@media (min-width:1024px){body.mdui-theme-layout-dark ::-webkit-scrollbar{width:8px;height:8px}}body.mdui-theme-layout-dark ::-webkit-scrollbar-thumb{background:rgba(255,255,255,.3)}*{-webkit-tap-highlight-color:transparent}body.mdui-locked{overflow:hidden}.mdui-overlay{position:fixed;top:-5000px;right:-5000px;bottom:-5000px;left:-5000px;z-index:2000;visibility:hidden;background:rgba(0,0,0,.4);opacity:0;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:opacity,visibility;transition-property:opacity,visibility;-webkit-backface-visibility:hidden;backface-visibility:hidden;will-change:opacity}.mdui-overlay-show{visibility:visible;opacity:1}.mdui-no-transition{-webkit-transition-property:none!important;transition-property:none!important}.mdui-theme-layout-dark{color:#fff;background-color:#303030}.mdui-icon,.mdui-icon::before{font-size:24px;font-style:normal;font-weight:400;line-height:1;color:inherit;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;vertical-align:middle;direction:ltr}.mdui-icon{display:inline-block;text-align:center}.mdui-icon::before{display:block!important;width:24px;height:24px}@font-face{font-family:'Material Icons';font-style:normal;font-weight:400;src:local('Material Icons'),local('MaterialIcons-Regular'),url(../icons/material-icons/MaterialIcons-Regular.woff2) format('woff2'),url(../icons/material-icons/MaterialIcons-Regular.woff) format('woff')}.material-icons{font-family:'Material Icons';-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;-webkit-font-feature-settings:'liga';-moz-font-feature-settings:'liga';font-feature-settings:'liga'}@font-face{font-family:Roboto;font-style:normal;font-weight:100;src:local('Roboto Thin'),local('Roboto-Thin'),url(../fonts/roboto/Roboto-Thin.woff2) format('woff2'),url(../fonts/roboto/Roboto-Thin.woff) format('woff')}@font-face{font-family:Roboto;font-style:italic;font-weight:100;src:local('Roboto ThinItalic'),local('Roboto-ThinItalic'),url(../fonts/roboto/Roboto-ThinItalic.woff2) format('woff2'),url(../fonts/roboto/Roboto-ThinItalic.woff) format('woff')}@font-face{font-family:Roboto;font-style:normal;font-weight:300;src:local('Roboto Light'),local('Roboto-Light'),url(../fonts/roboto/Roboto-Light.woff2) format('woff2'),url(../fonts/roboto/Roboto-Light.woff) format('woff')}@font-face{font-family:Roboto;font-style:italic;font-weight:300;src:local('Roboto LightItalic'),local('Roboto-LightItalic'),url(../fonts/roboto/Roboto-LightItalic.woff2) format('woff2'),url(../fonts/roboto/Roboto-LightItalic.woff) format('woff')}@font-face{font-family:Roboto;font-style:normal;font-weight:400;src:local('Roboto Regular'),local('Roboto-Regular'),url(../fonts/roboto/Roboto-Regular.woff2) format('woff2'),url(../fonts/roboto/Roboto-Regular.woff) format('woff')}@font-face{font-family:Roboto;font-style:italic;font-weight:400;src:local('Roboto RegularItalic'),local('Roboto-RegularItalic'),url(../fonts/roboto/Roboto-RegularItalic.woff2) format('woff2'),url(../fonts/roboto/Roboto-RegularItalic.woff) format('woff')}@font-face{font-family:Roboto;font-style:normal;font-weight:500;src:local('Roboto Medium'),local('Roboto-Medium'),url(../fonts/roboto/Roboto-Medium.woff2) format('woff2'),url(../fonts/roboto/Roboto-Medium.woff) format('woff')}@font-face{font-family:Roboto;font-style:italic;font-weight:500;src:local('Roboto MediumItalic'),local('Roboto-MediumItalic'),url(../fonts/roboto/Roboto-MediumItalic.woff2) format('woff2'),url(../fonts/roboto/Roboto-MediumItalic.woff) format('woff')}@font-face{font-family:Roboto;font-style:normal;font-weight:700;src:local('Roboto Bold'),local('Roboto-Bold'),url(../fonts/roboto/Roboto-Bold.woff2) format('woff2'),url(../fonts/roboto/Roboto-Bold.woff) format('woff')}@font-face{font-family:Roboto;font-style:italic;font-weight:700;src:local('Roboto BoldItalic'),local('Roboto-BoldItalic'),url(../fonts/roboto/Roboto-BoldItalic.woff2) format('woff2'),url(../fonts/roboto/Roboto-BoldItalic.woff) format('woff')}@font-face{font-family:Roboto;font-style:normal;font-weight:900;src:local('Roboto Black'),local('Roboto-Black'),url(../fonts/roboto/Roboto-Black.woff2) format('woff2'),url(../fonts/roboto/Roboto-Black.woff) format('woff')}@font-face{font-family:Roboto;font-style:italic;font-weight:900;src:local('Roboto BlackItalic'),local('Roboto-BlackItalic'),url(../fonts/roboto/Roboto-BlackItalic.woff2) format('woff2'),url(../fonts/roboto/Roboto-BlackItalic.woff) format('woff')}.mdui-typo-display-4,.mdui-typo-display-4-opacity{font-size:112px;font-weight:300;letter-spacing:-.04em}.mdui-typo-display-4-opacity{opacity:.54}.mdui-typo-display-3,.mdui-typo-display-3-opacity{font-size:56px;font-weight:400;letter-spacing:-.02em}.mdui-typo-display-3-opacity{opacity:.54}.mdui-typo-display-2,.mdui-typo-display-2-opacity{font-size:45px;font-weight:400;letter-spacing:0}.mdui-typo-display-2-opacity{opacity:.54}.mdui-typo-display-1,.mdui-typo-display-1-opacity{font-size:34px;font-weight:400;letter-spacing:0}.mdui-typo-display-1-opacity{opacity:.54}.mdui-typo-headline,.mdui-typo-headline-opacity{font-size:24px;font-weight:400;-moz-osx-font-smoothing:grayscale}.mdui-typo-headline-opacity{opacity:.87}.mdui-typo-title,.mdui-typo-title-opacity{font-size:20px;font-weight:500;letter-spacing:.02em}.mdui-typo-title-opacity{opacity:.87}.mdui-typo-subheading,.mdui-typo-subheading-opacity{font-size:16px;font-weight:400;letter-spacing:.04em}.mdui-typo-subheading-opacity{opacity:.87}.mdui-typo-body-2,.mdui-typo-body-2-opacity{font-size:14px;font-weight:500;letter-spacing:.04em}.mdui-typo-body-2-opacity{opacity:.87}.mdui-typo-body-1,.mdui-typo-body-1-opacity{font-size:14px;font-weight:400;letter-spacing:.04em}.mdui-typo-body-1-opacity{opacity:.87}.mdui-typo-caption,.mdui-typo-caption-opacity{font-size:12px;font-weight:400;letter-spacing:.08em}.mdui-typo-caption-opacity{opacity:.54}.mdui-typo{line-height:1.8;word-wrap:break-word}.mdui-typo address,.mdui-typo caption,.mdui-typo cite,.mdui-typo code,.mdui-typo dfn,.mdui-typo th{font-style:normal;font-weight:400}.mdui-typo caption,.mdui-typo th{text-align:left}.mdui-typo q:after,.mdui-typo q:before{content:''}.mdui-typo code,.mdui-typo kbd,.mdui-typo pre,.mdui-typo pre tt,.mdui-typo samp{font-family:Consolas,Courier,'Courier New',monospace}.mdui-typo figcaption{font-size:80%;color:rgba(0,0,0,.54)}.mdui-typo [draggable=true],.mdui-typo [draggable]{cursor:move}.mdui-typo [draggable=false]{cursor:inherit}.mdui-typo .mdui-table,.mdui-typo .mdui-table-fluid,.mdui-typo dl,.mdui-typo figure,.mdui-typo form,.mdui-typo hr,.mdui-typo ol,.mdui-typo p,.mdui-typo pre,.mdui-typo table,.mdui-typo ul{margin:0 0 1.2em 0}.mdui-typo a{position:relative;display:inline-block;overflow:hidden;color:#ff4081;text-decoration:none;vertical-align:top;outline:0}.mdui-typo a:before{position:absolute;top:auto;bottom:1px;left:0;width:100%;height:1px;content:' ';background-color:#ff4081;-webkit-transition:all .2s;transition:all .2s;-webkit-transform:scaleX(0);transform:scaleX(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.mdui-typo a:focus:before,.mdui-typo a:hover:before{-webkit-transform:scaleX(1);transform:scaleX(1)}.mdui-typo small{font-size:80%}.mdui-typo blockquote{padding-left:1em;margin:1em 3em 1em 2em;font-weight:400;border-left:4px solid rgba(0,0,0,.12)}@media only screen and (max-width:599px){.mdui-typo blockquote{margin:1em 0}}.mdui-typo blockquote footer{font-size:86%;color:rgba(0,0,0,.54)}.mdui-typo mark{padding:2px;margin:0 5px;background:#fffdd1;border-bottom:1px solid #ffedce}.mdui-typo h1,.mdui-typo h2,.mdui-typo h3,.mdui-typo h4,.mdui-typo h5,.mdui-typo h6{margin-top:1.2em;margin-bottom:.6em;font-family:inherit;font-weight:400;line-height:1.35;color:inherit}.mdui-typo h1 small,.mdui-typo h2 small,.mdui-typo h3 small,.mdui-typo h4 small,.mdui-typo h5 small,.mdui-typo h6 small{font-size:65%;font-weight:400;line-height:1;color:rgba(0,0,0,.54)}.mdui-typo h1{font-size:2em}.mdui-typo h2{font-size:1.8em}.mdui-typo h3{font-size:1.6em}.mdui-typo h4{font-size:1.4em}.mdui-typo h5{font-size:1.2em}.mdui-typo h6{font-size:1.1em}.mdui-typo code{padding:2px 6px;color:#c7254e;background-color:#f7f7f9;border-radius:2px}.mdui-typo pre code{padding:0;font-size:inherit;line-height:1.7;color:inherit;background-color:transparent;border-radius:0}.mdui-typo abbr[title]{text-decoration:none;cursor:help;border-bottom:1px dotted}.mdui-typo ins{text-decoration:none;border-bottom:1px solid}.mdui-typo u{text-decoration:none;border-bottom:1px solid}.mdui-typo del{text-decoration:line-through}.mdui-typo hr{height:10px;margin-bottom:.8em;border:none;border-bottom:1px solid rgba(0,0,0,.12)}.mdui-typo pre{padding:12px 16px;overflow-x:auto;-webkit-overflow-scrolling:touch;border:1px solid rgba(0,0,0,.12);border-radius:2px}.mdui-typo kbd{padding:2px 6px;font-size:90%;color:#fff;background-color:#333;border-radius:2px}.mdui-typo ul{padding-left:2em;list-style:disc}.mdui-typo ol{padding-left:2em;list-style:decimal}.mdui-typo li ol,.mdui-typo li ul{margin:.8em 0}.mdui-typo li ul{list-style:circle}.mdui-typo img{max-width:100%}.mdui-theme-accent-amber .mdui-typo a{color:#ffd740}.mdui-theme-accent-amber .mdui-typo a:before{background-color:#ffd740}.mdui-theme-accent-blue .mdui-typo a{color:#448aff}.mdui-theme-accent-blue .mdui-typo a:before{background-color:#448aff}.mdui-theme-accent-cyan .mdui-typo a{color:#18ffff}.mdui-theme-accent-cyan .mdui-typo a:before{background-color:#18ffff}.mdui-theme-accent-deep-orange .mdui-typo a{color:#ff6e40}.mdui-theme-accent-deep-orange .mdui-typo a:before{background-color:#ff6e40}.mdui-theme-accent-deep-purple .mdui-typo a{color:#7c4dff}.mdui-theme-accent-deep-purple .mdui-typo a:before{background-color:#7c4dff}.mdui-theme-accent-green .mdui-typo a{color:#69f0ae}.mdui-theme-accent-green .mdui-typo a:before{background-color:#69f0ae}.mdui-theme-accent-indigo .mdui-typo a{color:#536dfe}.mdui-theme-accent-indigo .mdui-typo a:before{background-color:#536dfe}.mdui-theme-accent-light-blue .mdui-typo a{color:#40c4ff}.mdui-theme-accent-light-blue .mdui-typo a:before{background-color:#40c4ff}.mdui-theme-accent-light-green .mdui-typo a{color:#b2ff59}.mdui-theme-accent-light-green .mdui-typo a:before{background-color:#b2ff59}.mdui-theme-accent-lime .mdui-typo a{color:#eeff41}.mdui-theme-accent-lime .mdui-typo a:before{background-color:#eeff41}.mdui-theme-accent-orange .mdui-typo a{color:#ffab40}.mdui-theme-accent-orange .mdui-typo a:before{background-color:#ffab40}.mdui-theme-accent-pink .mdui-typo a{color:#ff4081}.mdui-theme-accent-pink .mdui-typo a:before{background-color:#ff4081}.mdui-theme-accent-purple .mdui-typo a{color:#e040fb}.mdui-theme-accent-purple .mdui-typo a:before{background-color:#e040fb}.mdui-theme-accent-red .mdui-typo a{color:#ff5252}.mdui-theme-accent-red .mdui-typo a:before{background-color:#ff5252}.mdui-theme-accent-teal .mdui-typo a{color:#64ffda}.mdui-theme-accent-teal .mdui-typo a:before{background-color:#64ffda}.mdui-theme-accent-yellow .mdui-typo a{color:#ff0}.mdui-theme-accent-yellow .mdui-typo a:before{background-color:#ff0}.mdui-theme-layout-dark .mdui-typo blockquote{border-left-color:rgba(255,255,255,.12)}.mdui-theme-layout-dark .mdui-typo blockquote footer{color:rgba(255,255,255,.7)}.mdui-theme-layout-dark .mdui-typo figcaption{color:rgba(255,255,255,.7)}.mdui-theme-layout-dark .mdui-typo mark{background:#aaa;border-bottom-color:#bbb}.mdui-theme-layout-dark .mdui-typo h1 small,.mdui-theme-layout-dark .mdui-typo h2 small,.mdui-theme-layout-dark .mdui-typo h3 small,.mdui-theme-layout-dark .mdui-typo h4 small,.mdui-theme-layout-dark .mdui-typo h5 small,.mdui-theme-layout-dark .mdui-typo h6 small{color:rgba(255,255,255,.7)}.mdui-theme-layout-dark .mdui-typo code{color:#ffcdd2;background-color:#424242}.mdui-theme-layout-dark .mdui-typo pre{background:#424242;border-color:rgba(255,255,255,.12)}.mdui-theme-layout-dark .mdui-typo kbd{background:#424242}.mdui-theme-layout-dark .mdui-typo hr{border-color:rgba(255,255,255,.12)}.mdui-headroom{-webkit-transition:all .3s cubic-bezier(.4,0,.2,1)!important;transition:all .3s cubic-bezier(.4,0,.2,1)!important}.mdui-headroom-pinned-top{-webkit-transform:translate3d(0,0,0)!important;transform:translate3d(0,0,0)!important}.mdui-headroom-unpinned-top{-webkit-box-shadow:none!important;box-shadow:none!important;-webkit-transform:translate3d(0,-100%,0)!important;transform:translate3d(0,-100%,0)!important}.mdui-headroom-pinned-down{-webkit-transform:translate3d(0,0,0)!important;transform:translate3d(0,0,0)!important}.mdui-headroom-unpinned-down{-webkit-box-shadow:none!important;box-shadow:none!important;-webkit-transform:translate3d(0,100%,0)!important;transform:translate3d(0,100%,0)!important}.mdui-headroom-pinned-toolbar{-webkit-transform:translate3d(0,0,0)!important;transform:translate3d(0,0,0)!important}.mdui-headroom-unpinned-toolbar{-webkit-transform:translate3d(0,-56px,0)!important;transform:translate3d(0,-56px,0)!important}@media (min-width:600px){.mdui-headroom-unpinned-toolbar{-webkit-transform:translate3d(0,-64px,0)!important;transform:translate3d(0,-64px,0)!important}}@media (orientation:landscape) and (max-width:959px){.mdui-headroom-unpinned-toolbar{-webkit-transform:translate3d(0,-48px,0)!important;transform:translate3d(0,-48px,0)!important}}.mdui-collapse-item-header .mdui-collapse-item-arrow,.mdui-collapse-item-header.mdui-collapse-item-arrow{-webkit-transition:-webkit-transform .3s cubic-bezier(.4,0,.2,1);transition:-webkit-transform .3s cubic-bezier(.4,0,.2,1);transition:transform .3s cubic-bezier(.4,0,.2,1);transition:transform .3s cubic-bezier(.4,0,.2,1),-webkit-transform .3s cubic-bezier(.4,0,.2,1);-webkit-transform:rotate(0);transform:rotate(0);will-change:transform}.mdui-collapse-item-body{height:0;padding-top:0;padding-bottom:0;margin-top:0;margin-bottom:0;overflow:hidden;-webkit-transition:all .3s cubic-bezier(.4,0,.2,1);transition:all .3s cubic-bezier(.4,0,.2,1);will-change:height}.mdui-collapse-item-body .mdui-list-item{padding-left:72px}.mdui-collapse-item-open>.mdui-collapse-item-header .mdui-collapse-item-arrow,.mdui-collapse-item-open>.mdui-collapse-item-header.mdui-collapse-item-arrow{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.mdui-collapse-item-open>.mdui-collapse-item-body{height:auto}.mdui-table{position:relative;width:100%;border-spacing:0;border-collapse:separate;background-color:#fff;border:1px solid rgba(0,0,0,.12);border-bottom:none;-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.mdui-table tbody tr{position:relative;-webkit-transition:background-color .28s cubic-bezier(.4,0,.2,1);transition:background-color .28s cubic-bezier(.4,0,.2,1)}.mdui-table td,.mdui-table th{position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;padding:12px 28px;text-align:left;vertical-align:middle;border-bottom:1px solid rgba(0,0,0,.12)}.mdui-table td:last-child,.mdui-table th:last-child{padding-right:24px}.mdui-table td:first-child,.mdui-table th:first-child{padding-right:0;padding-left:24px}.mdui-table td:nth-child(2),.mdui-table th:nth-child(2){padding-left:24px}.mdui-table th{overflow:hidden;font-size:13px;font-weight:700;line-height:32px;color:rgba(0,0,0,.54);text-overflow:ellipsis;white-space:nowrap}.mdui-table td{font-size:14px;line-height:24px;color:rgba(0,0,0,.87)}.mdui-table-cell-checkbox{padding-top:0!important;padding-bottom:0!important;padding-left:24px!important}.mdui-table-cell-checkbox .mdui-checkbox{margin-top:7px}.mdui-table-cell-checkbox+td,.mdui-table-cell-checkbox+th{padding-left:6px!important}th.mdui-table-cell-checkbox .mdui-checkbox{margin-top:11px}.mdui-table-hoverable tbody tr:hover{background-color:#eee}.mdui-table-fluid{width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;border:1px solid rgba(0,0,0,.12);border-bottom:none;-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.mdui-table-fluid .mdui-table{margin:0;border:none;-webkit-box-shadow:none;box-shadow:none}.mdui-table-col-numeric{text-align:right!important}.mdui-table-row-selected{background-color:#f5f5f5}.mdui-theme-layout-dark .mdui-table{background-color:#303030;border:1px solid rgba(255,255,255,.12);border-bottom:none}.mdui-theme-layout-dark .mdui-table td,.mdui-theme-layout-dark .mdui-table th{border-bottom:1px solid rgba(255,255,255,.12)}.mdui-theme-layout-dark .mdui-table th{color:rgba(255,255,255,.7)}.mdui-theme-layout-dark .mdui-table td{color:#fff}.mdui-theme-layout-dark .mdui-table-hoverable tbody tr:hover{background-color:#616161}.mdui-theme-layout-dark .mdui-table-fluid{border:1px solid rgba(255,255,255,.12);border-bottom:none}.mdui-theme-layout-dark .mdui-table-fluid .mdui-table{border:none;-webkit-box-shadow:none;box-shadow:none}.mdui-theme-layout-dark .mdui-table-row-selected{background-color:#424242}.mdui-divider,.mdui-divider-dark,.mdui-divider-inset,.mdui-divider-inset-dark,.mdui-divider-inset-light,.mdui-divider-light{height:1px;margin:-1px 0 0 0;border:none}.mdui-divider-inset,.mdui-divider-inset-dark,.mdui-divider-inset-light{margin-left:72px}.mdui-divider,.mdui-divider-inset{background-color:rgba(0,0,0,.12)}.mdui-theme-layout-dark .mdui-divider,.mdui-theme-layout-dark .mdui-divider-inset{background-color:rgba(255,255,255,.12)}.mdui-divider-inset-light,.mdui-divider-light{background-color:rgba(255,255,255,.12)}.mdui-divider-dark,.mdui-divider-inset-dark{background-color:rgba(0,0,0,.12)}.mdui-img-fluid,.mdui-video-fluid{display:block;max-width:100%;height:auto}.mdui-img-rounded{border-radius:2px}.mdui-img-circle{border-radius:50%}.mdui-video-container{position:relative;height:0;padding-bottom:56.25%;overflow:hidden}.mdui-video-container embed,.mdui-video-container iframe,.mdui-video-container object{position:absolute;top:0;left:0;width:100%;height:100%}.mdui-ripple{position:relative;overflow:hidden;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mdui-ripple-wave{position:absolute!important;top:0;left:0;z-index:1;padding:0;margin:0;font-size:0;pointer-events:none;background-color:rgba(0,0,0,.1);border-radius:50%;-webkit-transition-duration:1.4s;transition-duration:1.4s;-webkit-transform:translate3d(0,0,0) scale(0);transform:translate3d(0,0,0) scale(0)}.mdui-ripple[class*=mdui-color-] .mdui-ripple-wave{background-color:rgba(255,255,255,.3)}.mdui-ripple-white .mdui-ripple-wave{background-color:rgba(255,255,255,.3)!important}.mdui-ripple-black .mdui-ripple-wave{background-color:rgba(0,0,0,.1)!important}.mdui-ripple-wave-fill{opacity:.35;-webkit-transition-duration:.3s;transition-duration:.3s}.mdui-ripple-wave-out{opacity:0;-webkit-transition-duration:.6s;transition-duration:.6s}.mdui-ripple-amber .mdui-ripple-wave{background-color:rgba(255,193,7,.3)!important}.mdui-ripple-blue .mdui-ripple-wave{background-color:rgba(33,150,243,.3)!important}.mdui-ripple-blue-grey .mdui-ripple-wave{background-color:rgba(96,125,139,.3)!important}.mdui-ripple-brown .mdui-ripple-wave{background-color:rgba(121,85,72,.3)!important}.mdui-ripple-cyan .mdui-ripple-wave{background-color:rgba(0,188,212,.3)!important}.mdui-ripple-deep-orange .mdui-ripple-wave{background-color:rgba(255,87,34,.3)!important}.mdui-ripple-deep-purple .mdui-ripple-wave{background-color:rgba(103,58,183,.3)!important}.mdui-ripple-green .mdui-ripple-wave{background-color:rgba(76,175,80,.3)!important}.mdui-ripple-grey .mdui-ripple-wave{background-color:rgba(158,158,158,.3)!important}.mdui-ripple-indigo .mdui-ripple-wave{background-color:rgba(63,81,181,.3)!important}.mdui-ripple-light-blue .mdui-ripple-wave{background-color:rgba(3,169,244,.3)!important}.mdui-ripple-light-green .mdui-ripple-wave{background-color:rgba(139,195,74,.3)!important}.mdui-ripple-lime .mdui-ripple-wave{background-color:rgba(205,220,57,.3)!important}.mdui-ripple-orange .mdui-ripple-wave{background-color:rgba(255,152,0,.3)!important}.mdui-ripple-pink .mdui-ripple-wave{background-color:rgba(233,30,99,.3)!important}.mdui-ripple-purple .mdui-ripple-wave{background-color:rgba(156,39,176,.3)!important}.mdui-ripple-red .mdui-ripple-wave{background-color:rgba(244,67,54,.3)!important}.mdui-ripple-teal .mdui-ripple-wave{background-color:rgba(0,150,136,.3)!important}.mdui-ripple-yellow .mdui-ripple-wave{background-color:rgba(255,235,59,.3)!important}.mdui-theme-layout-dark .mdui-ripple-wave{background-color:rgba(255,255,255,.3)}.mdui-textfield{position:relative;padding-top:16px;padding-bottom:8px;overflow:hidden}.mdui-textfield-has-bottom{padding-bottom:28px}.mdui-textfield-input{display:block;width:100%;height:36px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none;padding:8px 0;margin:0;overflow:hidden;font-family:inherit;font-size:16px;line-height:20px;color:rgba(0,0,0,.87);resize:none;background:0 0;border:none;border-bottom:1px solid rgba(0,0,0,.42);border-radius:0;outline:0;-webkit-box-shadow:none;box-shadow:none;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-transition-duration:.2s;transition-duration:.2s;-webkit-transition-property:border-bottom-color,padding-right,-webkit-box-shadow;transition-property:border-bottom-color,padding-right,-webkit-box-shadow;transition-property:border-bottom-color,padding-right,box-shadow;transition-property:border-bottom-color,padding-right,box-shadow,-webkit-box-shadow;-moz-appearance:none;appearance:none}.mdui-textfield-input::-webkit-input-placeholder{color:inherit;opacity:.42}.mdui-textfield-input:not([disabled]):hover{cursor:pointer;border-bottom:1px solid rgba(0,0,0,.87);-webkit-box-shadow:0 1px 0 0 rgba(0,0,0,.87);box-shadow:0 1px 0 0 rgba(0,0,0,.87)}.mdui-textfield-input[rows]{height:auto!important;overflow:auto;-webkit-overflow-scrolling:touch}.mdui-textfield-label{display:block;width:100%;font-size:16px;color:rgba(0,0,0,.54);pointer-events:none;-webkit-transition:all .2s;transition:all .2s;-webkit-transform:scale(.75) translateY(0);transform:scale(.75) translateY(0);-webkit-transform-origin:left;transform-origin:left}.mdui-textfield-error,.mdui-textfield-helper{position:absolute;bottom:8px;height:12px;overflow:hidden;font-size:12px;line-height:12px;text-overflow:ellipsis;white-space:nowrap}.mdui-textfield-error{color:rgba(255,23,68,.87);visibility:hidden}.mdui-textfield-helper{color:rgba(0,0,0,.54)}.mdui-textfield .mdui-icon{position:absolute;bottom:8px;padding:6px;color:rgba(0,0,0,.54)}.mdui-textfield .mdui-icon~.mdui-textfield-error,.mdui-textfield .mdui-icon~.mdui-textfield-flex-wrap,.mdui-textfield .mdui-icon~.mdui-textfield-helper,.mdui-textfield .mdui-icon~.mdui-textfield-input,.mdui-textfield .mdui-icon~.mdui-textfield-label{width:calc(100% - 56px);margin-left:56px}.mdui-textfield-has-bottom .mdui-icon{bottom:28px}.mdui-textfield-focus .mdui-textfield-input,.mdui-textfield-focus .mdui-textfield-input:hover{border-bottom-color:#c51162;-webkit-box-shadow:0 1px 0 0 #c51162;box-shadow:0 1px 0 0 #c51162}.mdui-textfield-focus .mdui-icon,.mdui-textfield-focus .mdui-textfield-label{color:rgba(197,17,98,.87)}.mdui-textfield-floating-label .mdui-textfield-label{color:rgba(0,0,0,.35);-webkit-transform:scale(1) translateY(27px);transform:scale(1) translateY(27px)}.mdui-textfield-floating-label.mdui-textfield-focus .mdui-textfield-label,.mdui-textfield-floating-label.mdui-textfield-not-empty .mdui-textfield-label{color:rgba(0,0,0,.65);-webkit-transform:scale(.75) translateY(0);transform:scale(.75) translateY(0)}.mdui-textfield-floating-label.mdui-textfield-focus .mdui-textfield-label{color:#e91e63}.mdui-textfield-expandable{width:36px;min-height:36px;padding:1px 0;-webkit-transition:width .3s cubic-bezier(.4,0,.2,1);transition:width .3s cubic-bezier(.4,0,.2,1)}.mdui-textfield-expandable .mdui-icon{bottom:0;padding:0}.mdui-textfield-expandable .mdui-textfield-input{width:calc(100% - 36px);padding-right:0;margin-left:36px}.mdui-textfield-expandable .mdui-textfield-icon{position:absolute;top:0;left:0}.mdui-textfield-expandable .mdui-textfield-close{position:absolute;top:0;right:0;-webkit-transform:scale(0);transform:scale(0)}.mdui-textfield-expandable.mdui-textfield-expanded{width:100%}.mdui-textfield-expandable.mdui-textfield-expanded .mdui-textfield-input{padding-right:36px}.mdui-textfield-expandable.mdui-textfield-expanded .mdui-textfield-close{-webkit-transform:scale(1);transform:scale(1)}.mdui-textfield-invalid .mdui-textfield-input,.mdui-textfield-invalid-html5 .mdui-textfield-input,.mdui-textfield-invalid-html5.mdui-textfield-focus .mdui-textfield-input,.mdui-textfield-invalid.mdui-textfield-focus .mdui-textfield-input{border-bottom-color:#ff1744!important;-webkit-box-shadow:0 1px 0 0 #ff1744!important;box-shadow:0 1px 0 0 #ff1744!important}.mdui-textfield-invalid .mdui-textfield-label,.mdui-textfield-invalid-html5 .mdui-textfield-label{color:#ff1744!important}.mdui-textfield-invalid-html5.mdui-textfield-floating-label .mdui-textfield-label,.mdui-textfield-invalid.mdui-textfield-floating-label .mdui-textfield-label{color:rgba(255,23,68,.35)!important}.mdui-textfield-invalid-html5.mdui-textfield-floating-label.mdui-textfield-focus .mdui-textfield-label,.mdui-textfield-invalid-html5.mdui-textfield-floating-label.mdui-textfield-not-empty .mdui-textfield-label,.mdui-textfield-invalid.mdui-textfield-floating-label.mdui-textfield-focus .mdui-textfield-label,.mdui-textfield-invalid.mdui-textfield-floating-label.mdui-textfield-not-empty .mdui-textfield-label{color:#ff1744!important}.mdui-textfield-invalid .mdui-textfield-error,.mdui-textfield-invalid-html5 .mdui-textfield-error{visibility:visible}.mdui-textfield-invalid .mdui-textfield-error+.mdui-textfield-helper,.mdui-textfield-invalid-html5 .mdui-textfield-error+.mdui-textfield-helper{visibility:hidden}.mdui-textfield-disabled .mdui-textfield-input::-webkit-input-placeholder,.mdui-textfield-disabled .mdui-textfield-label{color:rgba(0,0,0,.38)}.mdui-textfield-disabled .mdui-textfield-input{color:rgba(0,0,0,.42);cursor:default}.mdui-textfield-disabled .mdui-textfield-input{border-bottom:1px dashed rgba(0,0,0,.42)}.mdui-textfield-counter{position:absolute;right:8px;bottom:8px;height:12px;font-size:12px;line-height:12px;color:rgba(0,0,0,.54)}.mdui-theme-layout-dark .mdui-textfield-input{color:#fff;border-bottom-color:rgba(255,255,255,.7)}.mdui-theme-layout-dark .mdui-textfield-input::-webkit-input-placeholder{color:rgba(255,255,255,.5)}.mdui-theme-layout-dark .mdui-textfield-input:not([disabled]):hover{border-bottom-color:#fff;-webkit-box-shadow:0 1px 0 0 #fff;box-shadow:0 1px 0 0 #fff}.mdui-theme-layout-dark .mdui-textfield .mdui-icon{color:rgba(255,255,255,.7)}.mdui-theme-layout-dark .mdui-textfield-label{color:rgba(255,255,255,.7)}.mdui-theme-layout-dark .mdui-textfield-floating-label .mdui-textfield-label{color:rgba(255,255,255,.35)}.mdui-theme-layout-dark .mdui-textfield-error{color:#ff1744}.mdui-theme-layout-dark .mdui-textfield-helper{color:rgba(255,255,255,.7)}.mdui-theme-layout-dark .mdui-textfield-counter{color:rgba(255,255,255,.7)}.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-input,.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-input:hover{border-bottom-color:#ff4081;-webkit-box-shadow:0 1px 0 0 #ff4081;box-shadow:0 1px 0 0 #ff4081}.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-label{color:#ff4081}.mdui-theme-layout-dark .mdui-textfield-disabled .mdui-textfield-input::-webkit-input-placeholder,.mdui-theme-layout-dark .mdui-textfield-disabled .mdui-textfield-label{color:rgba(255,255,255,.5)}.mdui-theme-layout-dark .mdui-textfield-disabled .mdui-textfield-input{color:rgba(255,255,255,.5)}.mdui-theme-layout-dark .mdui-textfield-disabled .mdui-textfield-input{border-bottom-color:rgba(255,255,255,.7)}.mdui-theme-accent-amber .mdui-textfield-focus .mdui-textfield-input{border-bottom-color:#ffab00;-webkit-box-shadow:0 1px 0 0 #ffab00;box-shadow:0 1px 0 0 #ffab00}.mdui-theme-accent-amber .mdui-textfield-focus .mdui-icon,.mdui-theme-accent-amber .mdui-textfield-focus .mdui-textfield-floating-label.mdui-textfield-focus .mdui-textfield-label,.mdui-theme-accent-amber .mdui-textfield-focus .mdui-textfield-label{color:rgba(255,171,0,.87)}.mdui-theme-accent-amber.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-input{border-bottom-color:#ffd740;-webkit-box-shadow:0 1px 0 0 #ffd740;box-shadow:0 1px 0 0 #ffd740}.mdui-theme-accent-amber.mdui-theme-layout-dark .mdui-textfield-focus .mdui-icon,.mdui-theme-accent-amber.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-floating-label.mdui-textfield-focus .mdui-textfield-label,.mdui-theme-accent-amber.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-label{color:#ffd740}.mdui-theme-accent-blue .mdui-textfield-focus .mdui-textfield-input{border-bottom-color:#2962ff;-webkit-box-shadow:0 1px 0 0 #2962ff;box-shadow:0 1px 0 0 #2962ff}.mdui-theme-accent-blue .mdui-textfield-focus .mdui-icon,.mdui-theme-accent-blue .mdui-textfield-focus .mdui-textfield-floating-label.mdui-textfield-focus .mdui-textfield-label,.mdui-theme-accent-blue .mdui-textfield-focus .mdui-textfield-label{color:rgba(41,98,255,.87)}.mdui-theme-accent-blue.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-input{border-bottom-color:#448aff;-webkit-box-shadow:0 1px 0 0 #448aff;box-shadow:0 1px 0 0 #448aff}.mdui-theme-accent-blue.mdui-theme-layout-dark .mdui-textfield-focus .mdui-icon,.mdui-theme-accent-blue.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-floating-label.mdui-textfield-focus .mdui-textfield-label,.mdui-theme-accent-blue.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-label{color:#448aff}.mdui-theme-accent-cyan .mdui-textfield-focus .mdui-textfield-input{border-bottom-color:#00b8d4;-webkit-box-shadow:0 1px 0 0 #00b8d4;box-shadow:0 1px 0 0 #00b8d4}.mdui-theme-accent-cyan .mdui-textfield-focus .mdui-icon,.mdui-theme-accent-cyan .mdui-textfield-focus .mdui-textfield-floating-label.mdui-textfield-focus .mdui-textfield-label,.mdui-theme-accent-cyan .mdui-textfield-focus .mdui-textfield-label{color:rgba(0,184,212,.87)}.mdui-theme-accent-cyan.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-input{border-bottom-color:#18ffff;-webkit-box-shadow:0 1px 0 0 #18ffff;box-shadow:0 1px 0 0 #18ffff}.mdui-theme-accent-cyan.mdui-theme-layout-dark .mdui-textfield-focus .mdui-icon,.mdui-theme-accent-cyan.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-floating-label.mdui-textfield-focus .mdui-textfield-label,.mdui-theme-accent-cyan.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-label{color:#18ffff}.mdui-theme-accent-deep-orange .mdui-textfield-focus .mdui-textfield-input{border-bottom-color:#dd2c00;-webkit-box-shadow:0 1px 0 0 #dd2c00;box-shadow:0 1px 0 0 #dd2c00}.mdui-theme-accent-deep-orange .mdui-textfield-focus .mdui-icon,.mdui-theme-accent-deep-orange .mdui-textfield-focus .mdui-textfield-floating-label.mdui-textfield-focus .mdui-textfield-label,.mdui-theme-accent-deep-orange .mdui-textfield-focus .mdui-textfield-label{color:rgba(221,44,0,.87)}.mdui-theme-accent-deep-orange.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-input{border-bottom-color:#ff6e40;-webkit-box-shadow:0 1px 0 0 #ff6e40;box-shadow:0 1px 0 0 #ff6e40}.mdui-theme-accent-deep-orange.mdui-theme-layout-dark .mdui-textfield-focus .mdui-icon,.mdui-theme-accent-deep-orange.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-floating-label.mdui-textfield-focus .mdui-textfield-label,.mdui-theme-accent-deep-orange.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-label{color:#ff6e40}.mdui-theme-accent-deep-purple .mdui-textfield-focus .mdui-textfield-input{border-bottom-color:#6200ea;-webkit-box-shadow:0 1px 0 0 #6200ea;box-shadow:0 1px 0 0 #6200ea}.mdui-theme-accent-deep-purple .mdui-textfield-focus .mdui-icon,.mdui-theme-accent-deep-purple .mdui-textfield-focus .mdui-textfield-floating-label.mdui-textfield-focus .mdui-textfield-label,.mdui-theme-accent-deep-purple .mdui-textfield-focus .mdui-textfield-label{color:rgba(98,0,234,.87)}.mdui-theme-accent-deep-purple.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-input{border-bottom-color:#7c4dff;-webkit-box-shadow:0 1px 0 0 #7c4dff;box-shadow:0 1px 0 0 #7c4dff}.mdui-theme-accent-deep-purple.mdui-theme-layout-dark .mdui-textfield-focus .mdui-icon,.mdui-theme-accent-deep-purple.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-floating-label.mdui-textfield-focus .mdui-textfield-label,.mdui-theme-accent-deep-purple.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-label{color:#7c4dff}.mdui-theme-accent-green .mdui-textfield-focus .mdui-textfield-input{border-bottom-color:#00c853;-webkit-box-shadow:0 1px 0 0 #00c853;box-shadow:0 1px 0 0 #00c853}.mdui-theme-accent-green .mdui-textfield-focus .mdui-icon,.mdui-theme-accent-green .mdui-textfield-focus .mdui-textfield-floating-label.mdui-textfield-focus .mdui-textfield-label,.mdui-theme-accent-green .mdui-textfield-focus .mdui-textfield-label{color:rgba(0,200,83,.87)}.mdui-theme-accent-green.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-input{border-bottom-color:#69f0ae;-webkit-box-shadow:0 1px 0 0 #69f0ae;box-shadow:0 1px 0 0 #69f0ae}.mdui-theme-accent-green.mdui-theme-layout-dark .mdui-textfield-focus .mdui-icon,.mdui-theme-accent-green.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-floating-label.mdui-textfield-focus .mdui-textfield-label,.mdui-theme-accent-green.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-label{color:#69f0ae}.mdui-theme-accent-indigo .mdui-textfield-focus .mdui-textfield-input{border-bottom-color:#304ffe;-webkit-box-shadow:0 1px 0 0 #304ffe;box-shadow:0 1px 0 0 #304ffe}.mdui-theme-accent-indigo .mdui-textfield-focus .mdui-icon,.mdui-theme-accent-indigo .mdui-textfield-focus .mdui-textfield-floating-label.mdui-textfield-focus .mdui-textfield-label,.mdui-theme-accent-indigo .mdui-textfield-focus .mdui-textfield-label{color:rgba(48,79,254,.87)}.mdui-theme-accent-indigo.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-input{border-bottom-color:#536dfe;-webkit-box-shadow:0 1px 0 0 #536dfe;box-shadow:0 1px 0 0 #536dfe}.mdui-theme-accent-indigo.mdui-theme-layout-dark .mdui-textfield-focus .mdui-icon,.mdui-theme-accent-indigo.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-floating-label.mdui-textfield-focus .mdui-textfield-label,.mdui-theme-accent-indigo.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-label{color:#536dfe}.mdui-theme-accent-light-blue .mdui-textfield-focus .mdui-textfield-input{border-bottom-color:#0091ea;-webkit-box-shadow:0 1px 0 0 #0091ea;box-shadow:0 1px 0 0 #0091ea}.mdui-theme-accent-light-blue .mdui-textfield-focus .mdui-icon,.mdui-theme-accent-light-blue .mdui-textfield-focus .mdui-textfield-floating-label.mdui-textfield-focus .mdui-textfield-label,.mdui-theme-accent-light-blue .mdui-textfield-focus .mdui-textfield-label{color:rgba(0,145,234,.87)}.mdui-theme-accent-light-blue.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-input{border-bottom-color:#40c4ff;-webkit-box-shadow:0 1px 0 0 #40c4ff;box-shadow:0 1px 0 0 #40c4ff}.mdui-theme-accent-light-blue.mdui-theme-layout-dark .mdui-textfield-focus .mdui-icon,.mdui-theme-accent-light-blue.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-floating-label.mdui-textfield-focus .mdui-textfield-label,.mdui-theme-accent-light-blue.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-label{color:#40c4ff}.mdui-theme-accent-light-green .mdui-textfield-focus .mdui-textfield-input{border-bottom-color:#64dd17;-webkit-box-shadow:0 1px 0 0 #64dd17;box-shadow:0 1px 0 0 #64dd17}.mdui-theme-accent-light-green .mdui-textfield-focus .mdui-icon,.mdui-theme-accent-light-green .mdui-textfield-focus .mdui-textfield-floating-label.mdui-textfield-focus .mdui-textfield-label,.mdui-theme-accent-light-green .mdui-textfield-focus .mdui-textfield-label{color:rgba(100,221,23,.87)}.mdui-theme-accent-light-green.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-input{border-bottom-color:#b2ff59;-webkit-box-shadow:0 1px 0 0 #b2ff59;box-shadow:0 1px 0 0 #b2ff59}.mdui-theme-accent-light-green.mdui-theme-layout-dark .mdui-textfield-focus .mdui-icon,.mdui-theme-accent-light-green.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-floating-label.mdui-textfield-focus .mdui-textfield-label,.mdui-theme-accent-light-green.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-label{color:#b2ff59}.mdui-theme-accent-lime .mdui-textfield-focus .mdui-textfield-input{border-bottom-color:#aeea00;-webkit-box-shadow:0 1px 0 0 #aeea00;box-shadow:0 1px 0 0 #aeea00}.mdui-theme-accent-lime .mdui-textfield-focus .mdui-icon,.mdui-theme-accent-lime .mdui-textfield-focus .mdui-textfield-floating-label.mdui-textfield-focus .mdui-textfield-label,.mdui-theme-accent-lime .mdui-textfield-focus .mdui-textfield-label{color:rgba(174,234,0,.87)}.mdui-theme-accent-lime.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-input{border-bottom-color:#eeff41;-webkit-box-shadow:0 1px 0 0 #eeff41;box-shadow:0 1px 0 0 #eeff41}.mdui-theme-accent-lime.mdui-theme-layout-dark .mdui-textfield-focus .mdui-icon,.mdui-theme-accent-lime.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-floating-label.mdui-textfield-focus .mdui-textfield-label,.mdui-theme-accent-lime.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-label{color:#eeff41}.mdui-theme-accent-orange .mdui-textfield-focus .mdui-textfield-input{border-bottom-color:#ff6d00;-webkit-box-shadow:0 1px 0 0 #ff6d00;box-shadow:0 1px 0 0 #ff6d00}.mdui-theme-accent-orange .mdui-textfield-focus .mdui-icon,.mdui-theme-accent-orange .mdui-textfield-focus .mdui-textfield-floating-label.mdui-textfield-focus .mdui-textfield-label,.mdui-theme-accent-orange .mdui-textfield-focus .mdui-textfield-label{color:rgba(255,109,0,.87)}.mdui-theme-accent-orange.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-input{border-bottom-color:#ffab40;-webkit-box-shadow:0 1px 0 0 #ffab40;box-shadow:0 1px 0 0 #ffab40}.mdui-theme-accent-orange.mdui-theme-layout-dark .mdui-textfield-focus .mdui-icon,.mdui-theme-accent-orange.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-floating-label.mdui-textfield-focus .mdui-textfield-label,.mdui-theme-accent-orange.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-label{color:#ffab40}.mdui-theme-accent-pink .mdui-textfield-focus .mdui-textfield-input{border-bottom-color:#c51162;-webkit-box-shadow:0 1px 0 0 #c51162;box-shadow:0 1px 0 0 #c51162}.mdui-theme-accent-pink .mdui-textfield-focus .mdui-icon,.mdui-theme-accent-pink .mdui-textfield-focus .mdui-textfield-floating-label.mdui-textfield-focus .mdui-textfield-label,.mdui-theme-accent-pink .mdui-textfield-focus .mdui-textfield-label{color:rgba(197,17,98,.87)}.mdui-theme-accent-pink.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-input{border-bottom-color:#ff4081;-webkit-box-shadow:0 1px 0 0 #ff4081;box-shadow:0 1px 0 0 #ff4081}.mdui-theme-accent-pink.mdui-theme-layout-dark .mdui-textfield-focus .mdui-icon,.mdui-theme-accent-pink.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-floating-label.mdui-textfield-focus .mdui-textfield-label,.mdui-theme-accent-pink.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-label{color:#ff4081}.mdui-theme-accent-purple .mdui-textfield-focus .mdui-textfield-input{border-bottom-color:#a0f;-webkit-box-shadow:0 1px 0 0 #a0f;box-shadow:0 1px 0 0 #a0f}.mdui-theme-accent-purple .mdui-textfield-focus .mdui-icon,.mdui-theme-accent-purple .mdui-textfield-focus .mdui-textfield-floating-label.mdui-textfield-focus .mdui-textfield-label,.mdui-theme-accent-purple .mdui-textfield-focus .mdui-textfield-label{color:rgba(170,0,255,.87)}.mdui-theme-accent-purple.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-input{border-bottom-color:#e040fb;-webkit-box-shadow:0 1px 0 0 #e040fb;box-shadow:0 1px 0 0 #e040fb}.mdui-theme-accent-purple.mdui-theme-layout-dark .mdui-textfield-focus .mdui-icon,.mdui-theme-accent-purple.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-floating-label.mdui-textfield-focus .mdui-textfield-label,.mdui-theme-accent-purple.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-label{color:#e040fb}.mdui-theme-accent-red .mdui-textfield-focus .mdui-textfield-input{border-bottom-color:#d50000;-webkit-box-shadow:0 1px 0 0 #d50000;box-shadow:0 1px 0 0 #d50000}.mdui-theme-accent-red .mdui-textfield-focus .mdui-icon,.mdui-theme-accent-red .mdui-textfield-focus .mdui-textfield-floating-label.mdui-textfield-focus .mdui-textfield-label,.mdui-theme-accent-red .mdui-textfield-focus .mdui-textfield-label{color:rgba(213,0,0,.87)}.mdui-theme-accent-red.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-input{border-bottom-color:#ff5252;-webkit-box-shadow:0 1px 0 0 #ff5252;box-shadow:0 1px 0 0 #ff5252}.mdui-theme-accent-red.mdui-theme-layout-dark .mdui-textfield-focus .mdui-icon,.mdui-theme-accent-red.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-floating-label.mdui-textfield-focus .mdui-textfield-label,.mdui-theme-accent-red.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-label{color:#ff5252}.mdui-theme-accent-teal .mdui-textfield-focus .mdui-textfield-input{border-bottom-color:#00bfa5;-webkit-box-shadow:0 1px 0 0 #00bfa5;box-shadow:0 1px 0 0 #00bfa5}.mdui-theme-accent-teal .mdui-textfield-focus .mdui-icon,.mdui-theme-accent-teal .mdui-textfield-focus .mdui-textfield-floating-label.mdui-textfield-focus .mdui-textfield-label,.mdui-theme-accent-teal .mdui-textfield-focus .mdui-textfield-label{color:rgba(0,191,165,.87)}.mdui-theme-accent-teal.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-input{border-bottom-color:#64ffda;-webkit-box-shadow:0 1px 0 0 #64ffda;box-shadow:0 1px 0 0 #64ffda}.mdui-theme-accent-teal.mdui-theme-layout-dark .mdui-textfield-focus .mdui-icon,.mdui-theme-accent-teal.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-floating-label.mdui-textfield-focus .mdui-textfield-label,.mdui-theme-accent-teal.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-label{color:#64ffda}.mdui-theme-accent-yellow .mdui-textfield-focus .mdui-textfield-input{border-bottom-color:#ffd600;-webkit-box-shadow:0 1px 0 0 #ffd600;box-shadow:0 1px 0 0 #ffd600}.mdui-theme-accent-yellow .mdui-textfield-focus .mdui-icon,.mdui-theme-accent-yellow .mdui-textfield-focus .mdui-textfield-floating-label.mdui-textfield-focus .mdui-textfield-label,.mdui-theme-accent-yellow .mdui-textfield-focus .mdui-textfield-label{color:rgba(255,214,0,.87)}.mdui-theme-accent-yellow.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-input{border-bottom-color:#ff0;-webkit-box-shadow:0 1px 0 0 #ff0;box-shadow:0 1px 0 0 #ff0}.mdui-theme-accent-yellow.mdui-theme-layout-dark .mdui-textfield-focus .mdui-icon,.mdui-theme-accent-yellow.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-floating-label.mdui-textfield-focus .mdui-textfield-label,.mdui-theme-accent-yellow.mdui-theme-layout-dark .mdui-textfield-focus .mdui-textfield-label{color:#ff0}.mdui-checkbox{position:relative;display:inline-block;height:36px;padding-left:36px;line-height:36px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mdui-checkbox input{position:absolute;width:0;height:0;overflow:hidden;opacity:0}.mdui-checkbox-icon{position:absolute;top:9px;left:0;display:inline-block;width:18px;height:18px;vertical-align:middle;background-color:transparent;border:none;border-radius:18px;-webkit-transition:-webkit-box-shadow .14s cubic-bezier(.4,0,.2,1);transition:-webkit-box-shadow .14s cubic-bezier(.4,0,.2,1);transition:box-shadow .14s cubic-bezier(.4,0,.2,1);transition:box-shadow .14s cubic-bezier(.4,0,.2,1),-webkit-box-shadow .14s cubic-bezier(.4,0,.2,1)}.mdui-checkbox-icon:after{position:absolute;top:0;left:0;z-index:0;width:18px;height:18px;-webkit-box-sizing:border-box;box-sizing:border-box;content:' ';border:2px solid rgba(0,0,0,.54);border-radius:2px;-webkit-transition:all .3s cubic-bezier(.4,0,.2,1);transition:all .3s cubic-bezier(.4,0,.2,1)}.mdui-checkbox-icon:before{position:absolute;top:2px;left:0;z-index:1;width:8px;height:13px;-webkit-box-sizing:border-box;box-sizing:border-box;content:' ';border-right:2px solid #fff;border-bottom:2px solid #fff;opacity:0;-webkit-transition:all .3s cubic-bezier(.4,0,.2,1);transition:all .3s cubic-bezier(.4,0,.2,1);-webkit-transform:rotateZ(37deg) scale(0);transform:rotateZ(37deg) scale(0);-webkit-transform-origin:100% 100%;transform-origin:100% 100%}.mdui-checkbox input[type=checkbox]:checked+.mdui-checkbox-icon:after{background-color:#ff4081;border-color:#ff4081}.mdui-checkbox input[type=checkbox]:checked+.mdui-checkbox-icon:before{opacity:1;-webkit-transform:rotateZ(37deg) scale(1);transform:rotateZ(37deg) scale(1)}.mdui-checkbox input[type=checkbox]:disabled+.mdui-checkbox-icon:after{border-color:rgba(0,0,0,.26)}.mdui-checkbox input[type=checkbox]:disabled:checked+.mdui-checkbox-icon:after{background-color:rgba(0,0,0,.26)!important;border-color:transparent!important}.mdui-checkbox input[type=checkbox]:focus+.mdui-checkbox-icon,.mdui-checkbox:active input[type=checkbox]+.mdui-checkbox-icon{-webkit-box-shadow:0 0 0 15px rgba(0,0,0,.1);box-shadow:0 0 0 15px rgba(0,0,0,.1)}.mdui-checkbox input[type=checkbox]:focus:checked:not(:disabled)+.mdui-checkbox-icon,.mdui-checkbox:active input[type=checkbox]:checked:not(:disabled)+.mdui-checkbox-icon{-webkit-box-shadow:0 0 0 15px rgba(255,64,129,.16);box-shadow:0 0 0 15px rgba(255,64,129,.16)}.mdui-theme-accent-amber .mdui-checkbox input[type=checkbox]:checked+.mdui-checkbox-icon:after{background-color:#ffd740;border-color:#ffd740}.mdui-theme-accent-amber .mdui-checkbox input[type=checkbox]:focus:checked:not(:disabled)+.mdui-checkbox-icon,.mdui-theme-accent-amber .mdui-checkbox:active input[type=checkbox]:checked:not(:disabled)+.mdui-checkbox-icon{-webkit-box-shadow:0 0 0 15px rgba(255,215,64,.16);box-shadow:0 0 0 15px rgba(255,215,64,.16)}.mdui-theme-accent-blue .mdui-checkbox input[type=checkbox]:checked+.mdui-checkbox-icon:after{background-color:#448aff;border-color:#448aff}.mdui-theme-accent-blue .mdui-checkbox input[type=checkbox]:focus:checked:not(:disabled)+.mdui-checkbox-icon,.mdui-theme-accent-blue .mdui-checkbox:active input[type=checkbox]:checked:not(:disabled)+.mdui-checkbox-icon{-webkit-box-shadow:0 0 0 15px rgba(68,138,255,.16);box-shadow:0 0 0 15px rgba(68,138,255,.16)}.mdui-theme-accent-cyan .mdui-checkbox input[type=checkbox]:checked+.mdui-checkbox-icon:after{background-color:#18ffff;border-color:#18ffff}.mdui-theme-accent-cyan .mdui-checkbox input[type=checkbox]:focus:checked:not(:disabled)+.mdui-checkbox-icon,.mdui-theme-accent-cyan .mdui-checkbox:active input[type=checkbox]:checked:not(:disabled)+.mdui-checkbox-icon{-webkit-box-shadow:0 0 0 15px rgba(24,255,255,.16);box-shadow:0 0 0 15px rgba(24,255,255,.16)}.mdui-theme-accent-deep-orange .mdui-checkbox input[type=checkbox]:checked+.mdui-checkbox-icon:after{background-color:#ff6e40;border-color:#ff6e40}.mdui-theme-accent-deep-orange .mdui-checkbox input[type=checkbox]:focus:checked:not(:disabled)+.mdui-checkbox-icon,.mdui-theme-accent-deep-orange .mdui-checkbox:active input[type=checkbox]:checked:not(:disabled)+.mdui-checkbox-icon{-webkit-box-shadow:0 0 0 15px rgba(255,110,64,.16);box-shadow:0 0 0 15px rgba(255,110,64,.16)}.mdui-theme-accent-deep-purple .mdui-checkbox input[type=checkbox]:checked+.mdui-checkbox-icon:after{background-color:#7c4dff;border-color:#7c4dff}.mdui-theme-accent-deep-purple .mdui-checkbox input[type=checkbox]:focus:checked:not(:disabled)+.mdui-checkbox-icon,.mdui-theme-accent-deep-purple .mdui-checkbox:active input[type=checkbox]:checked:not(:disabled)+.mdui-checkbox-icon{-webkit-box-shadow:0 0 0 15px rgba(124,77,255,.16);box-shadow:0 0 0 15px rgba(124,77,255,.16)}.mdui-theme-accent-green .mdui-checkbox input[type=checkbox]:checked+.mdui-checkbox-icon:after{background-color:#69f0ae;border-color:#69f0ae}.mdui-theme-accent-green .mdui-checkbox input[type=checkbox]:focus:checked:not(:disabled)+.mdui-checkbox-icon,.mdui-theme-accent-green .mdui-checkbox:active input[type=checkbox]:checked:not(:disabled)+.mdui-checkbox-icon{-webkit-box-shadow:0 0 0 15px rgba(105,240,174,.16);box-shadow:0 0 0 15px rgba(105,240,174,.16)}.mdui-theme-accent-indigo .mdui-checkbox input[type=checkbox]:checked+.mdui-checkbox-icon:after{background-color:#536dfe;border-color:#536dfe}.mdui-theme-accent-indigo .mdui-checkbox input[type=checkbox]:focus:checked:not(:disabled)+.mdui-checkbox-icon,.mdui-theme-accent-indigo .mdui-checkbox:active input[type=checkbox]:checked:not(:disabled)+.mdui-checkbox-icon{-webkit-box-shadow:0 0 0 15px rgba(83,109,254,.16);box-shadow:0 0 0 15px rgba(83,109,254,.16)}.mdui-theme-accent-light-blue .mdui-checkbox input[type=checkbox]:checked+.mdui-checkbox-icon:after{background-color:#40c4ff;border-color:#40c4ff}.mdui-theme-accent-light-blue .mdui-checkbox input[type=checkbox]:focus:checked:not(:disabled)+.mdui-checkbox-icon,.mdui-theme-accent-light-blue .mdui-checkbox:active input[type=checkbox]:checked:not(:disabled)+.mdui-checkbox-icon{-webkit-box-shadow:0 0 0 15px rgba(64,196,255,.16);box-shadow:0 0 0 15px rgba(64,196,255,.16)}.mdui-theme-accent-light-green .mdui-checkbox input[type=checkbox]:checked+.mdui-checkbox-icon:after{background-color:#b2ff59;border-color:#b2ff59}.mdui-theme-accent-light-green .mdui-checkbox input[type=checkbox]:focus:checked:not(:disabled)+.mdui-checkbox-icon,.mdui-theme-accent-light-green .mdui-checkbox:active input[type=checkbox]:checked:not(:disabled)+.mdui-checkbox-icon{-webkit-box-shadow:0 0 0 15px rgba(178,255,89,.16);box-shadow:0 0 0 15px rgba(178,255,89,.16)}.mdui-theme-accent-lime .mdui-checkbox input[type=checkbox]:checked+.mdui-checkbox-icon:after{background-color:#eeff41;border-color:#eeff41}.mdui-theme-accent-lime .mdui-checkbox input[type=checkbox]:focus:checked:not(:disabled)+.mdui-checkbox-icon,.mdui-theme-accent-lime .mdui-checkbox:active input[type=checkbox]:checked:not(:disabled)+.mdui-checkbox-icon{-webkit-box-shadow:0 0 0 15px rgba(238,255,65,.16);box-shadow:0 0 0 15px rgba(238,255,65,.16)}.mdui-theme-accent-orange .mdui-checkbox input[type=checkbox]:checked+.mdui-checkbox-icon:after{background-color:#ffab40;border-color:#ffab40}.mdui-theme-accent-orange .mdui-checkbox input[type=checkbox]:focus:checked:not(:disabled)+.mdui-checkbox-icon,.mdui-theme-accent-orange .mdui-checkbox:active input[type=checkbox]:checked:not(:disabled)+.mdui-checkbox-icon{-webkit-box-shadow:0 0 0 15px rgba(255,171,64,.16);box-shadow:0 0 0 15px rgba(255,171,64,.16)}.mdui-theme-accent-pink .mdui-checkbox input[type=checkbox]:checked+.mdui-checkbox-icon:after{background-color:#ff4081;border-color:#ff4081}.mdui-theme-accent-pink .mdui-checkbox input[type=checkbox]:focus:checked:not(:disabled)+.mdui-checkbox-icon,.mdui-theme-accent-pink .mdui-checkbox:active input[type=checkbox]:checked:not(:disabled)+.mdui-checkbox-icon{-webkit-box-shadow:0 0 0 15px rgba(255,64,129,.16);box-shadow:0 0 0 15px rgba(255,64,129,.16)}.mdui-theme-accent-purple .mdui-checkbox input[type=checkbox]:checked+.mdui-checkbox-icon:after{background-color:#e040fb;border-color:#e040fb}.mdui-theme-accent-purple .mdui-checkbox input[type=checkbox]:focus:checked:not(:disabled)+.mdui-checkbox-icon,.mdui-theme-accent-purple .mdui-checkbox:active input[type=checkbox]:checked:not(:disabled)+.mdui-checkbox-icon{-webkit-box-shadow:0 0 0 15px rgba(224,64,251,.16);box-shadow:0 0 0 15px rgba(224,64,251,.16)}.mdui-theme-accent-red .mdui-checkbox input[type=checkbox]:checked+.mdui-checkbox-icon:after{background-color:#ff5252;border-color:#ff5252}.mdui-theme-accent-red .mdui-checkbox input[type=checkbox]:focus:checked:not(:disabled)+.mdui-checkbox-icon,.mdui-theme-accent-red .mdui-checkbox:active input[type=checkbox]:checked:not(:disabled)+.mdui-checkbox-icon{-webkit-box-shadow:0 0 0 15px rgba(255,82,82,.16);box-shadow:0 0 0 15px rgba(255,82,82,.16)}.mdui-theme-accent-teal .mdui-checkbox input[type=checkbox]:checked+.mdui-checkbox-icon:after{background-color:#64ffda;border-color:#64ffda}.mdui-theme-accent-teal .mdui-checkbox input[type=checkbox]:focus:checked:not(:disabled)+.mdui-checkbox-icon,.mdui-theme-accent-teal .mdui-checkbox:active input[type=checkbox]:checked:not(:disabled)+.mdui-checkbox-icon{-webkit-box-shadow:0 0 0 15px rgba(100,255,218,.16);box-shadow:0 0 0 15px rgba(100,255,218,.16)}.mdui-theme-accent-yellow .mdui-checkbox input[type=checkbox]:checked+.mdui-checkbox-icon:after{background-color:#ff0;border-color:#ff0}.mdui-theme-accent-yellow .mdui-checkbox input[type=checkbox]:focus:checked:not(:disabled)+.mdui-checkbox-icon,.mdui-theme-accent-yellow .mdui-checkbox:active input[type=checkbox]:checked:not(:disabled)+.mdui-checkbox-icon{-webkit-box-shadow:0 0 0 15px rgba(255,255,0,.16);box-shadow:0 0 0 15px rgba(255,255,0,.16)}.mdui-theme-layout-dark .mdui-checkbox-icon:after{border-color:rgba(255,255,255,.7)}.mdui-theme-layout-dark .mdui-checkbox-icon:before{border-right-color:#303030;border-bottom-color:#303030}.mdui-theme-layout-dark .mdui-checkbox input[type=checkbox]:disabled+.mdui-checkbox-icon:after{border-color:rgba(255,255,255,.3)}.mdui-theme-layout-dark .mdui-checkbox input[type=checkbox]:disabled:checked+.mdui-checkbox-icon:after{background-color:rgba(255,255,255,.3)!important;border-color:transparent!important}.mdui-theme-layout-dark .mdui-checkbox input[type=checkbox]:focus+.mdui-checkbox-icon,.mdui-theme-layout-dark .mdui-checkbox:active input[type=checkbox]+.mdui-checkbox-icon{-webkit-box-shadow:0 0 0 15px rgba(255,255,255,.1);box-shadow:0 0 0 15px rgba(255,255,255,.1)}.mdui-radio{position:relative;display:inline-block;height:36px;padding-left:36px;line-height:36px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mdui-radio input{position:absolute;width:0;height:0;overflow:hidden;opacity:0}.mdui-radio-icon{position:absolute;top:9px;left:0;display:inline-block;width:18px;height:18px;-webkit-box-sizing:border-box;box-sizing:border-box;vertical-align:middle;border:2px solid rgba(0,0,0,.54);border-radius:18px;-webkit-transition:all .3s cubic-bezier(.4,0,.2,1),-webkit-box-shadow .14s cubic-bezier(.4,0,.2,1);transition:all .3s cubic-bezier(.4,0,.2,1),-webkit-box-shadow .14s cubic-bezier(.4,0,.2,1);transition:all .3s cubic-bezier(.4,0,.2,1),box-shadow .14s cubic-bezier(.4,0,.2,1);transition:all .3s cubic-bezier(.4,0,.2,1),box-shadow .14s cubic-bezier(.4,0,.2,1),-webkit-box-shadow .14s cubic-bezier(.4,0,.2,1)}.mdui-radio-icon:before{position:absolute;top:0;left:0;width:14px;height:14px;content:' ';background-color:#ff4081;border-radius:14px;opacity:0;-webkit-transition:all .3s cubic-bezier(.4,0,.2,1);transition:all .3s cubic-bezier(.4,0,.2,1);-webkit-transform:scale(0);transform:scale(0)}.mdui-radio input[type=radio]:checked+.mdui-radio-icon{border-color:#ff4081}.mdui-radio input[type=radio]:checked+.mdui-radio-icon:before{opacity:1;-webkit-transform:scale(.68);transform:scale(.68)}.mdui-radio input[type=radio]:disabled+.mdui-radio-icon{border-color:rgba(0,0,0,.26)!important}.mdui-radio input[type=radio]:disabled:checked+.mdui-radio-icon:before{background-color:rgba(0,0,0,.26)!important}.mdui-radio input[type=radio]:focus+.mdui-radio-icon,.mdui-radio:active input[type=radio]+.mdui-radio-icon{-webkit-box-shadow:0 0 0 15px rgba(0,0,0,.1);box-shadow:0 0 0 15px rgba(0,0,0,.1)}.mdui-radio input[type=radio]:focus:checked:not(:disabled)+.mdui-radio-icon,.mdui-radio:active input[type=radio]:checked:not(:disabled)+.mdui-radio-icon{-webkit-box-shadow:0 0 0 15px rgba(255,64,129,.16);box-shadow:0 0 0 15px rgba(255,64,129,.16)}.mdui-theme-accent-amber .mdui-radio input[type=radio]:checked+.mdui-radio-icon{border-color:#ffd740}.mdui-theme-accent-amber .mdui-radio input[type=radio]:checked+.mdui-radio-icon:before{background-color:#ffd740}.mdui-theme-accent-amber .mdui-radio input[type=radio]:focus:checked:not(:disabled)+.mdui-radio-icon,.mdui-theme-accent-amber .mdui-radio:active input[type=radio]:checked:not(:disabled)+.mdui-radio-icon{-webkit-box-shadow:0 0 0 15px rgba(255,215,64,.16);box-shadow:0 0 0 15px rgba(255,215,64,.16)}.mdui-theme-accent-blue .mdui-radio input[type=radio]:checked+.mdui-radio-icon{border-color:#448aff}.mdui-theme-accent-blue .mdui-radio input[type=radio]:checked+.mdui-radio-icon:before{background-color:#448aff}.mdui-theme-accent-blue .mdui-radio input[type=radio]:focus:checked:not(:disabled)+.mdui-radio-icon,.mdui-theme-accent-blue .mdui-radio:active input[type=radio]:checked:not(:disabled)+.mdui-radio-icon{-webkit-box-shadow:0 0 0 15px rgba(68,138,255,.16);box-shadow:0 0 0 15px rgba(68,138,255,.16)}.mdui-theme-accent-cyan .mdui-radio input[type=radio]:checked+.mdui-radio-icon{border-color:#18ffff}.mdui-theme-accent-cyan .mdui-radio input[type=radio]:checked+.mdui-radio-icon:before{background-color:#18ffff}.mdui-theme-accent-cyan .mdui-radio input[type=radio]:focus:checked:not(:disabled)+.mdui-radio-icon,.mdui-theme-accent-cyan .mdui-radio:active input[type=radio]:checked:not(:disabled)+.mdui-radio-icon{-webkit-box-shadow:0 0 0 15px rgba(24,255,255,.16);box-shadow:0 0 0 15px rgba(24,255,255,.16)}.mdui-theme-accent-deep-orange .mdui-radio input[type=radio]:checked+.mdui-radio-icon{border-color:#ff6e40}.mdui-theme-accent-deep-orange .mdui-radio input[type=radio]:checked+.mdui-radio-icon:before{background-color:#ff6e40}.mdui-theme-accent-deep-orange .mdui-radio input[type=radio]:focus:checked:not(:disabled)+.mdui-radio-icon,.mdui-theme-accent-deep-orange .mdui-radio:active input[type=radio]:checked:not(:disabled)+.mdui-radio-icon{-webkit-box-shadow:0 0 0 15px rgba(255,110,64,.16);box-shadow:0 0 0 15px rgba(255,110,64,.16)}.mdui-theme-accent-deep-purple .mdui-radio input[type=radio]:checked+.mdui-radio-icon{border-color:#7c4dff}.mdui-theme-accent-deep-purple .mdui-radio input[type=radio]:checked+.mdui-radio-icon:before{background-color:#7c4dff}.mdui-theme-accent-deep-purple .mdui-radio input[type=radio]:focus:checked:not(:disabled)+.mdui-radio-icon,.mdui-theme-accent-deep-purple .mdui-radio:active input[type=radio]:checked:not(:disabled)+.mdui-radio-icon{-webkit-box-shadow:0 0 0 15px rgba(124,77,255,.16);box-shadow:0 0 0 15px rgba(124,77,255,.16)}.mdui-theme-accent-green .mdui-radio input[type=radio]:checked+.mdui-radio-icon{border-color:#69f0ae}.mdui-theme-accent-green .mdui-radio input[type=radio]:checked+.mdui-radio-icon:before{background-color:#69f0ae}.mdui-theme-accent-green .mdui-radio input[type=radio]:focus:checked:not(:disabled)+.mdui-radio-icon,.mdui-theme-accent-green .mdui-radio:active input[type=radio]:checked:not(:disabled)+.mdui-radio-icon{-webkit-box-shadow:0 0 0 15px rgba(105,240,174,.16);box-shadow:0 0 0 15px rgba(105,240,174,.16)}.mdui-theme-accent-indigo .mdui-radio input[type=radio]:checked+.mdui-radio-icon{border-color:#536dfe}.mdui-theme-accent-indigo .mdui-radio input[type=radio]:checked+.mdui-radio-icon:before{background-color:#536dfe}.mdui-theme-accent-indigo .mdui-radio input[type=radio]:focus:checked:not(:disabled)+.mdui-radio-icon,.mdui-theme-accent-indigo .mdui-radio:active input[type=radio]:checked:not(:disabled)+.mdui-radio-icon{-webkit-box-shadow:0 0 0 15px rgba(83,109,254,.16);box-shadow:0 0 0 15px rgba(83,109,254,.16)}.mdui-theme-accent-light-blue .mdui-radio input[type=radio]:checked+.mdui-radio-icon{border-color:#40c4ff}.mdui-theme-accent-light-blue .mdui-radio input[type=radio]:checked+.mdui-radio-icon:before{background-color:#40c4ff}.mdui-theme-accent-light-blue .mdui-radio input[type=radio]:focus:checked:not(:disabled)+.mdui-radio-icon,.mdui-theme-accent-light-blue .mdui-radio:active input[type=radio]:checked:not(:disabled)+.mdui-radio-icon{-webkit-box-shadow:0 0 0 15px rgba(64,196,255,.16);box-shadow:0 0 0 15px rgba(64,196,255,.16)}.mdui-theme-accent-light-green .mdui-radio input[type=radio]:checked+.mdui-radio-icon{border-color:#b2ff59}.mdui-theme-accent-light-green .mdui-radio input[type=radio]:checked+.mdui-radio-icon:before{background-color:#b2ff59}.mdui-theme-accent-light-green .mdui-radio input[type=radio]:focus:checked:not(:disabled)+.mdui-radio-icon,.mdui-theme-accent-light-green .mdui-radio:active input[type=radio]:checked:not(:disabled)+.mdui-radio-icon{-webkit-box-shadow:0 0 0 15px rgba(178,255,89,.16);box-shadow:0 0 0 15px rgba(178,255,89,.16)}.mdui-theme-accent-lime .mdui-radio input[type=radio]:checked+.mdui-radio-icon{border-color:#eeff41}.mdui-theme-accent-lime .mdui-radio input[type=radio]:checked+.mdui-radio-icon:before{background-color:#eeff41}.mdui-theme-accent-lime .mdui-radio input[type=radio]:focus:checked:not(:disabled)+.mdui-radio-icon,.mdui-theme-accent-lime .mdui-radio:active input[type=radio]:checked:not(:disabled)+.mdui-radio-icon{-webkit-box-shadow:0 0 0 15px rgba(238,255,65,.16);box-shadow:0 0 0 15px rgba(238,255,65,.16)}.mdui-theme-accent-orange .mdui-radio input[type=radio]:checked+.mdui-radio-icon{border-color:#ffab40}.mdui-theme-accent-orange .mdui-radio input[type=radio]:checked+.mdui-radio-icon:before{background-color:#ffab40}.mdui-theme-accent-orange .mdui-radio input[type=radio]:focus:checked:not(:disabled)+.mdui-radio-icon,.mdui-theme-accent-orange .mdui-radio:active input[type=radio]:checked:not(:disabled)+.mdui-radio-icon{-webkit-box-shadow:0 0 0 15px rgba(255,171,64,.16);box-shadow:0 0 0 15px rgba(255,171,64,.16)}.mdui-theme-accent-pink .mdui-radio input[type=radio]:checked+.mdui-radio-icon{border-color:#ff4081}.mdui-theme-accent-pink .mdui-radio input[type=radio]:checked+.mdui-radio-icon:before{background-color:#ff4081}.mdui-theme-accent-pink .mdui-radio input[type=radio]:focus:checked:not(:disabled)+.mdui-radio-icon,.mdui-theme-accent-pink .mdui-radio:active input[type=radio]:checked:not(:disabled)+.mdui-radio-icon{-webkit-box-shadow:0 0 0 15px rgba(255,64,129,.16);box-shadow:0 0 0 15px rgba(255,64,129,.16)}.mdui-theme-accent-purple .mdui-radio input[type=radio]:checked+.mdui-radio-icon{border-color:#e040fb}.mdui-theme-accent-purple .mdui-radio input[type=radio]:checked+.mdui-radio-icon:before{background-color:#e040fb}.mdui-theme-accent-purple .mdui-radio input[type=radio]:focus:checked:not(:disabled)+.mdui-radio-icon,.mdui-theme-accent-purple .mdui-radio:active input[type=radio]:checked:not(:disabled)+.mdui-radio-icon{-webkit-box-shadow:0 0 0 15px rgba(224,64,251,.16);box-shadow:0 0 0 15px rgba(224,64,251,.16)}.mdui-theme-accent-red .mdui-radio input[type=radio]:checked+.mdui-radio-icon{border-color:#ff5252}.mdui-theme-accent-red .mdui-radio input[type=radio]:checked+.mdui-radio-icon:before{background-color:#ff5252}.mdui-theme-accent-red .mdui-radio input[type=radio]:focus:checked:not(:disabled)+.mdui-radio-icon,.mdui-theme-accent-red .mdui-radio:active input[type=radio]:checked:not(:disabled)+.mdui-radio-icon{-webkit-box-shadow:0 0 0 15px rgba(255,82,82,.16);box-shadow:0 0 0 15px rgba(255,82,82,.16)}.mdui-theme-accent-teal .mdui-radio input[type=radio]:checked+.mdui-radio-icon{border-color:#64ffda}.mdui-theme-accent-teal .mdui-radio input[type=radio]:checked+.mdui-radio-icon:before{background-color:#64ffda}.mdui-theme-accent-teal .mdui-radio input[type=radio]:focus:checked:not(:disabled)+.mdui-radio-icon,.mdui-theme-accent-teal .mdui-radio:active input[type=radio]:checked:not(:disabled)+.mdui-radio-icon{-webkit-box-shadow:0 0 0 15px rgba(100,255,218,.16);box-shadow:0 0 0 15px rgba(100,255,218,.16)}.mdui-theme-accent-yellow .mdui-radio input[type=radio]:checked+.mdui-radio-icon{border-color:#ff0}.mdui-theme-accent-yellow .mdui-radio input[type=radio]:checked+.mdui-radio-icon:before{background-color:#ff0}.mdui-theme-accent-yellow .mdui-radio input[type=radio]:focus:checked:not(:disabled)+.mdui-radio-icon,.mdui-theme-accent-yellow .mdui-radio:active input[type=radio]:checked:not(:disabled)+.mdui-radio-icon{-webkit-box-shadow:0 0 0 15px rgba(255,255,0,.16);box-shadow:0 0 0 15px rgba(255,255,0,.16)}.mdui-theme-layout-dark .mdui-radio-icon{border-color:rgba(255,255,255,.7)}.mdui-theme-layout-dark .mdui-radio input[type=radio]:disabled+.mdui-radio-icon{border-color:rgba(255,255,255,.3)!important}.mdui-theme-layout-dark .mdui-radio input[type=radio]:disabled:checked+.mdui-radio-icon:before{background-color:rgba(255,255,255,.3)!important}.mdui-theme-layout-dark .mdui-radio input[type=radio]:focus+.mdui-radio-icon,.mdui-theme-layout-dark .mdui-radio:active input[type=radio]+.mdui-radio-icon{-webkit-box-shadow:0 0 0 15px rgba(255,255,255,.1);box-shadow:0 0 0 15px rgba(255,255,255,.1)}.mdui-switch{display:inline-block;height:36px;line-height:36px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mdui-switch input{position:absolute;width:0;height:0;overflow:hidden;opacity:0}.mdui-switch-icon{position:relative;display:inline-block;width:36px;height:14px;vertical-align:middle;background-color:rgba(0,0,0,.38);border-radius:14px;-webkit-transition:background-color .3s cubic-bezier(.4,0,.2,1);transition:background-color .3s cubic-bezier(.4,0,.2,1)}.mdui-switch-icon:before{position:absolute;top:-3px;left:-3px;display:inline-block;width:20px;height:20px;content:' ';background-color:#fafafa;border-radius:20px;-webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12);box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12);-webkit-transition:background-color .3s cubic-bezier(.4,0,.2,1),left .3s cubic-bezier(.4,0,.2,1),-webkit-box-shadow .14s cubic-bezier(.4,0,.2,1);transition:background-color .3s cubic-bezier(.4,0,.2,1),left .3s cubic-bezier(.4,0,.2,1),-webkit-box-shadow .14s cubic-bezier(.4,0,.2,1);transition:box-shadow .14s cubic-bezier(.4,0,.2,1),background-color .3s cubic-bezier(.4,0,.2,1),left .3s cubic-bezier(.4,0,.2,1);transition:box-shadow .14s cubic-bezier(.4,0,.2,1),background-color .3s cubic-bezier(.4,0,.2,1),left .3s cubic-bezier(.4,0,.2,1),-webkit-box-shadow .14s cubic-bezier(.4,0,.2,1)}.mdui-switch input[type=checkbox]:checked+.mdui-switch-icon{background-color:rgba(255,64,129,.5)}.mdui-switch input[type=checkbox]:checked+.mdui-switch-icon:before{left:20px;background-color:#ff4081}.mdui-switch input[type=checkbox]:focus+.mdui-switch-icon:before,.mdui-switch:active input[type=checkbox]+.mdui-switch-icon:before{-webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12),0 0 0 15px rgba(0,0,0,.1);box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12),0 0 0 15px rgba(0,0,0,.1)}.mdui-switch input[type=checkbox]:focus:checked:not(:disabled)+.mdui-switch-icon:before,.mdui-switch:active input[type=checkbox]:checked:not(:disabled)+.mdui-switch-icon:before{-webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12),0 0 0 15px rgba(255,64,129,.16);box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12),0 0 0 15px rgba(255,64,129,.16)}.mdui-switch input[type=checkbox]:disabled+.mdui-switch-icon{background-color:rgba(0,0,0,.12)!important}.mdui-switch input[type=checkbox]:disabled+.mdui-switch-icon:before{background-color:#bdbdbd!important}.mdui-theme-accent-amber .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon{background-color:rgba(255,215,64,.5)}.mdui-theme-accent-amber .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon:before{background-color:#ffd740}.mdui-theme-accent-amber .mdui-switch input[type=checkbox]:focus:checked:not(:disabled)+.mdui-switch-icon:before,.mdui-theme-accent-amber .mdui-switch:active input[type=checkbox]:checked:not(:disabled)+.mdui-switch-icon:before{-webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12),0 0 0 15px rgba(255,215,64,.16);box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12),0 0 0 15px rgba(255,215,64,.16)}.mdui-theme-accent-blue .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon{background-color:rgba(68,138,255,.5)}.mdui-theme-accent-blue .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon:before{background-color:#448aff}.mdui-theme-accent-blue .mdui-switch input[type=checkbox]:focus:checked:not(:disabled)+.mdui-switch-icon:before,.mdui-theme-accent-blue .mdui-switch:active input[type=checkbox]:checked:not(:disabled)+.mdui-switch-icon:before{-webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12),0 0 0 15px rgba(68,138,255,.16);box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12),0 0 0 15px rgba(68,138,255,.16)}.mdui-theme-accent-cyan .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon{background-color:rgba(24,255,255,.5)}.mdui-theme-accent-cyan .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon:before{background-color:#18ffff}.mdui-theme-accent-cyan .mdui-switch input[type=checkbox]:focus:checked:not(:disabled)+.mdui-switch-icon:before,.mdui-theme-accent-cyan .mdui-switch:active input[type=checkbox]:checked:not(:disabled)+.mdui-switch-icon:before{-webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12),0 0 0 15px rgba(24,255,255,.16);box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12),0 0 0 15px rgba(24,255,255,.16)}.mdui-theme-accent-deep-orange .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon{background-color:rgba(255,110,64,.5)}.mdui-theme-accent-deep-orange .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon:before{background-color:#ff6e40}.mdui-theme-accent-deep-orange .mdui-switch input[type=checkbox]:focus:checked:not(:disabled)+.mdui-switch-icon:before,.mdui-theme-accent-deep-orange .mdui-switch:active input[type=checkbox]:checked:not(:disabled)+.mdui-switch-icon:before{-webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12),0 0 0 15px rgba(255,110,64,.16);box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12),0 0 0 15px rgba(255,110,64,.16)}.mdui-theme-accent-deep-purple .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon{background-color:rgba(124,77,255,.5)}.mdui-theme-accent-deep-purple .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon:before{background-color:#7c4dff}.mdui-theme-accent-deep-purple .mdui-switch input[type=checkbox]:focus:checked:not(:disabled)+.mdui-switch-icon:before,.mdui-theme-accent-deep-purple .mdui-switch:active input[type=checkbox]:checked:not(:disabled)+.mdui-switch-icon:before{-webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12),0 0 0 15px rgba(124,77,255,.16);box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12),0 0 0 15px rgba(124,77,255,.16)}.mdui-theme-accent-green .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon{background-color:rgba(105,240,174,.5)}.mdui-theme-accent-green .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon:before{background-color:#69f0ae}.mdui-theme-accent-green .mdui-switch input[type=checkbox]:focus:checked:not(:disabled)+.mdui-switch-icon:before,.mdui-theme-accent-green .mdui-switch:active input[type=checkbox]:checked:not(:disabled)+.mdui-switch-icon:before{-webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12),0 0 0 15px rgba(105,240,174,.16);box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12),0 0 0 15px rgba(105,240,174,.16)}.mdui-theme-accent-indigo .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon{background-color:rgba(83,109,254,.5)}.mdui-theme-accent-indigo .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon:before{background-color:#536dfe}.mdui-theme-accent-indigo .mdui-switch input[type=checkbox]:focus:checked:not(:disabled)+.mdui-switch-icon:before,.mdui-theme-accent-indigo .mdui-switch:active input[type=checkbox]:checked:not(:disabled)+.mdui-switch-icon:before{-webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12),0 0 0 15px rgba(83,109,254,.16);box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12),0 0 0 15px rgba(83,109,254,.16)}.mdui-theme-accent-light-blue .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon{background-color:rgba(64,196,255,.5)}.mdui-theme-accent-light-blue .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon:before{background-color:#40c4ff}.mdui-theme-accent-light-blue .mdui-switch input[type=checkbox]:focus:checked:not(:disabled)+.mdui-switch-icon:before,.mdui-theme-accent-light-blue .mdui-switch:active input[type=checkbox]:checked:not(:disabled)+.mdui-switch-icon:before{-webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12),0 0 0 15px rgba(64,196,255,.16);box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12),0 0 0 15px rgba(64,196,255,.16)}.mdui-theme-accent-light-green .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon{background-color:rgba(178,255,89,.5)}.mdui-theme-accent-light-green .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon:before{background-color:#b2ff59}.mdui-theme-accent-light-green .mdui-switch input[type=checkbox]:focus:checked:not(:disabled)+.mdui-switch-icon:before,.mdui-theme-accent-light-green .mdui-switch:active input[type=checkbox]:checked:not(:disabled)+.mdui-switch-icon:before{-webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12),0 0 0 15px rgba(178,255,89,.16);box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12),0 0 0 15px rgba(178,255,89,.16)}.mdui-theme-accent-lime .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon{background-color:rgba(238,255,65,.5)}.mdui-theme-accent-lime .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon:before{background-color:#eeff41}.mdui-theme-accent-lime .mdui-switch input[type=checkbox]:focus:checked:not(:disabled)+.mdui-switch-icon:before,.mdui-theme-accent-lime .mdui-switch:active input[type=checkbox]:checked:not(:disabled)+.mdui-switch-icon:before{-webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12),0 0 0 15px rgba(238,255,65,.16);box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12),0 0 0 15px rgba(238,255,65,.16)}.mdui-theme-accent-orange .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon{background-color:rgba(255,171,64,.5)}.mdui-theme-accent-orange .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon:before{background-color:#ffab40}.mdui-theme-accent-orange .mdui-switch input[type=checkbox]:focus:checked:not(:disabled)+.mdui-switch-icon:before,.mdui-theme-accent-orange .mdui-switch:active input[type=checkbox]:checked:not(:disabled)+.mdui-switch-icon:before{-webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12),0 0 0 15px rgba(255,171,64,.16);box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12),0 0 0 15px rgba(255,171,64,.16)}.mdui-theme-accent-pink .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon{background-color:rgba(255,64,129,.5)}.mdui-theme-accent-pink .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon:before{background-color:#ff4081}.mdui-theme-accent-pink .mdui-switch input[type=checkbox]:focus:checked:not(:disabled)+.mdui-switch-icon:before,.mdui-theme-accent-pink .mdui-switch:active input[type=checkbox]:checked:not(:disabled)+.mdui-switch-icon:before{-webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12),0 0 0 15px rgba(255,64,129,.16);box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12),0 0 0 15px rgba(255,64,129,.16)}.mdui-theme-accent-purple .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon{background-color:rgba(224,64,251,.5)}.mdui-theme-accent-purple .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon:before{background-color:#e040fb}.mdui-theme-accent-purple .mdui-switch input[type=checkbox]:focus:checked:not(:disabled)+.mdui-switch-icon:before,.mdui-theme-accent-purple .mdui-switch:active input[type=checkbox]:checked:not(:disabled)+.mdui-switch-icon:before{-webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12),0 0 0 15px rgba(224,64,251,.16);box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12),0 0 0 15px rgba(224,64,251,.16)}.mdui-theme-accent-red .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon{background-color:rgba(255,82,82,.5)}.mdui-theme-accent-red .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon:before{background-color:#ff5252}.mdui-theme-accent-red .mdui-switch input[type=checkbox]:focus:checked:not(:disabled)+.mdui-switch-icon:before,.mdui-theme-accent-red .mdui-switch:active input[type=checkbox]:checked:not(:disabled)+.mdui-switch-icon:before{-webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12),0 0 0 15px rgba(255,82,82,.16);box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12),0 0 0 15px rgba(255,82,82,.16)}.mdui-theme-accent-teal .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon{background-color:rgba(100,255,218,.5)}.mdui-theme-accent-teal .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon:before{background-color:#64ffda}.mdui-theme-accent-teal .mdui-switch input[type=checkbox]:focus:checked:not(:disabled)+.mdui-switch-icon:before,.mdui-theme-accent-teal .mdui-switch:active input[type=checkbox]:checked:not(:disabled)+.mdui-switch-icon:before{-webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12),0 0 0 15px rgba(100,255,218,.16);box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12),0 0 0 15px rgba(100,255,218,.16)}.mdui-theme-accent-yellow .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon{background-color:rgba(255,255,0,.5)}.mdui-theme-accent-yellow .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon:before{background-color:#ff0}.mdui-theme-accent-yellow .mdui-switch input[type=checkbox]:focus:checked:not(:disabled)+.mdui-switch-icon:before,.mdui-theme-accent-yellow .mdui-switch:active input[type=checkbox]:checked:not(:disabled)+.mdui-switch-icon:before{-webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12),0 0 0 15px rgba(255,255,0,.16);box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12),0 0 0 15px rgba(255,255,0,.16)}.mdui-theme-layout-dark .mdui-switch-icon{background-color:rgba(255,255,255,.3)}.mdui-theme-layout-dark .mdui-switch-icon:before{background-color:#bdbdbd}.mdui-theme-layout-dark.mdui-theme-accent-amber .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon{background-color:rgba(255,229,127,.5)}.mdui-theme-layout-dark.mdui-theme-accent-amber .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon:before{background-color:#ffe57f}.mdui-theme-layout-dark.mdui-theme-accent-blue .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon{background-color:rgba(130,177,255,.5)}.mdui-theme-layout-dark.mdui-theme-accent-blue .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon:before{background-color:#82b1ff}.mdui-theme-layout-dark.mdui-theme-accent-cyan .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon{background-color:rgba(132,255,255,.5)}.mdui-theme-layout-dark.mdui-theme-accent-cyan .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon:before{background-color:#84ffff}.mdui-theme-layout-dark.mdui-theme-accent-deep-orange .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon{background-color:rgba(255,158,128,.5)}.mdui-theme-layout-dark.mdui-theme-accent-deep-orange .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon:before{background-color:#ff9e80}.mdui-theme-layout-dark.mdui-theme-accent-deep-purple .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon{background-color:rgba(179,136,255,.5)}.mdui-theme-layout-dark.mdui-theme-accent-deep-purple .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon:before{background-color:#b388ff}.mdui-theme-layout-dark.mdui-theme-accent-green .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon{background-color:rgba(185,246,202,.5)}.mdui-theme-layout-dark.mdui-theme-accent-green .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon:before{background-color:#b9f6ca}.mdui-theme-layout-dark.mdui-theme-accent-indigo .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon{background-color:rgba(140,158,255,.5)}.mdui-theme-layout-dark.mdui-theme-accent-indigo .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon:before{background-color:#8c9eff}.mdui-theme-layout-dark.mdui-theme-accent-light-blue .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon{background-color:rgba(128,216,255,.5)}.mdui-theme-layout-dark.mdui-theme-accent-light-blue .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon:before{background-color:#80d8ff}.mdui-theme-layout-dark.mdui-theme-accent-light-green .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon{background-color:rgba(204,255,144,.5)}.mdui-theme-layout-dark.mdui-theme-accent-light-green .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon:before{background-color:#ccff90}.mdui-theme-layout-dark.mdui-theme-accent-lime .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon{background-color:rgba(244,255,129,.5)}.mdui-theme-layout-dark.mdui-theme-accent-lime .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon:before{background-color:#f4ff81}.mdui-theme-layout-dark.mdui-theme-accent-orange .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon{background-color:rgba(255,209,128,.5)}.mdui-theme-layout-dark.mdui-theme-accent-orange .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon:before{background-color:#ffd180}.mdui-theme-layout-dark.mdui-theme-accent-pink .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon{background-color:rgba(255,128,171,.5)}.mdui-theme-layout-dark.mdui-theme-accent-pink .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon:before{background-color:#ff80ab}.mdui-theme-layout-dark.mdui-theme-accent-purple .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon{background-color:rgba(234,128,252,.5)}.mdui-theme-layout-dark.mdui-theme-accent-purple .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon:before{background-color:#ea80fc}.mdui-theme-layout-dark.mdui-theme-accent-red .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon{background-color:rgba(255,138,128,.5)}.mdui-theme-layout-dark.mdui-theme-accent-red .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon:before{background-color:#ff8a80}.mdui-theme-layout-dark.mdui-theme-accent-teal .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon{background-color:rgba(167,255,235,.5)}.mdui-theme-layout-dark.mdui-theme-accent-teal .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon:before{background-color:#a7ffeb}.mdui-theme-layout-dark.mdui-theme-accent-yellow .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon{background-color:rgba(255,255,141,.5)}.mdui-theme-layout-dark.mdui-theme-accent-yellow .mdui-switch input[type=checkbox]:checked+.mdui-switch-icon:before{background-color:#ffff8d}.mdui-theme-layout-dark .mdui-switch input[type=checkbox]:focus+.mdui-switch-icon:before,.mdui-theme-layout-dark .mdui-switch:active input[type=checkbox]+.mdui-switch-icon:before{-webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12),0 0 0 15px rgba(255,255,255,.1);box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12),0 0 0 15px rgba(255,255,255,.1)}.mdui-theme-layout-dark .mdui-switch input[type=checkbox]:disabled+.mdui-switch-icon{background-color:rgba(255,255,255,.1)!important}.mdui-theme-layout-dark .mdui-switch input[type=checkbox]:disabled+.mdui-switch-icon:before{background-color:#424242!important}.mdui-slider{position:relative;display:block;width:100%;height:36px}.mdui-slider input[type=range]{position:absolute;top:50%;z-index:2;width:100%;height:20px;-webkit-appearance:none;margin-top:-10px;cursor:pointer;opacity:0;-moz-appearance:none;appearance:none}.mdui-slider-fill,.mdui-slider-track{position:absolute;top:50%;height:2px;-webkit-box-sizing:border-box;box-sizing:border-box;margin-top:-1px}.mdui-slider-fill:before,.mdui-slider-track:before{display:block;width:100%;height:100%;content:' '}.mdui-slider-track{right:0}.mdui-slider-track:before{background-color:#bdbdbd;-webkit-transition:background-color .3s cubic-bezier(.4,0,.2,1);transition:background-color .3s cubic-bezier(.4,0,.2,1)}.mdui-slider-fill{left:0}.mdui-slider-fill:before{background-color:#ff4081}.mdui-slider-thumb{position:absolute;top:50%;width:12px;height:12px;-webkit-box-sizing:border-box;box-sizing:border-box;margin-top:-6px;background-color:#ff4081;border:2px solid #ff4081;border-radius:50%;-webkit-transition:background .45s cubic-bezier(.4,0,.2,1),border-color .45s cubic-bezier(.4,0,.2,1),border-radius .2s cubic-bezier(.4,0,.2,1),-webkit-transform .2s cubic-bezier(.4,0,.2,1);transition:background .45s cubic-bezier(.4,0,.2,1),border-color .45s cubic-bezier(.4,0,.2,1),border-radius .2s cubic-bezier(.4,0,.2,1),-webkit-transform .2s cubic-bezier(.4,0,.2,1);transition:background .45s cubic-bezier(.4,0,.2,1),border-color .45s cubic-bezier(.4,0,.2,1),transform .2s cubic-bezier(.4,0,.2,1),border-radius .2s cubic-bezier(.4,0,.2,1);transition:background .45s cubic-bezier(.4,0,.2,1),border-color .45s cubic-bezier(.4,0,.2,1),transform .2s cubic-bezier(.4,0,.2,1),border-radius .2s cubic-bezier(.4,0,.2,1),-webkit-transform .2s cubic-bezier(.4,0,.2,1);-webkit-transform:translate(-50%);transform:translate(-50%);will-change:background,border-color,transform,border-radius}.mdui-theme-accent-amber .mdui-slider-fill:before{background-color:#ffd740}.mdui-theme-accent-amber .mdui-slider-thumb{background-color:#ffd740;border:2px solid #ffd740}.mdui-theme-accent-blue .mdui-slider-fill:before{background-color:#448aff}.mdui-theme-accent-blue .mdui-slider-thumb{background-color:#448aff;border:2px solid #448aff}.mdui-theme-accent-cyan .mdui-slider-fill:before{background-color:#18ffff}.mdui-theme-accent-cyan .mdui-slider-thumb{background-color:#18ffff;border:2px solid #18ffff}.mdui-theme-accent-deep-orange .mdui-slider-fill:before{background-color:#ff6e40}.mdui-theme-accent-deep-orange .mdui-slider-thumb{background-color:#ff6e40;border:2px solid #ff6e40}.mdui-theme-accent-deep-purple .mdui-slider-fill:before{background-color:#7c4dff}.mdui-theme-accent-deep-purple .mdui-slider-thumb{background-color:#7c4dff;border:2px solid #7c4dff}.mdui-theme-accent-green .mdui-slider-fill:before{background-color:#69f0ae}.mdui-theme-accent-green .mdui-slider-thumb{background-color:#69f0ae;border:2px solid #69f0ae}.mdui-theme-accent-indigo .mdui-slider-fill:before{background-color:#536dfe}.mdui-theme-accent-indigo .mdui-slider-thumb{background-color:#536dfe;border:2px solid #536dfe}.mdui-theme-accent-light-blue .mdui-slider-fill:before{background-color:#40c4ff}.mdui-theme-accent-light-blue .mdui-slider-thumb{background-color:#40c4ff;border:2px solid #40c4ff}.mdui-theme-accent-light-green .mdui-slider-fill:before{background-color:#b2ff59}.mdui-theme-accent-light-green .mdui-slider-thumb{background-color:#b2ff59;border:2px solid #b2ff59}.mdui-theme-accent-lime .mdui-slider-fill:before{background-color:#eeff41}.mdui-theme-accent-lime .mdui-slider-thumb{background-color:#eeff41;border:2px solid #eeff41}.mdui-theme-accent-orange .mdui-slider-fill:before{background-color:#ffab40}.mdui-theme-accent-orange .mdui-slider-thumb{background-color:#ffab40;border:2px solid #ffab40}.mdui-theme-accent-pink .mdui-slider-fill:before{background-color:#ff4081}.mdui-theme-accent-pink .mdui-slider-thumb{background-color:#ff4081;border:2px solid #ff4081}.mdui-theme-accent-purple .mdui-slider-fill:before{background-color:#e040fb}.mdui-theme-accent-purple .mdui-slider-thumb{background-color:#e040fb;border:2px solid #e040fb}.mdui-theme-accent-red .mdui-slider-fill:before{background-color:#ff5252}.mdui-theme-accent-red .mdui-slider-thumb{background-color:#ff5252;border:2px solid #ff5252}.mdui-theme-accent-teal .mdui-slider-fill:before{background-color:#64ffda}.mdui-theme-accent-teal .mdui-slider-thumb{background-color:#64ffda;border:2px solid #64ffda}.mdui-theme-accent-yellow .mdui-slider-fill:before{background-color:#ff0}.mdui-theme-accent-yellow .mdui-slider-thumb{background-color:#ff0;border:2px solid #ff0}.mdui-slider-focus .mdui-slider-track:before{background-color:#9e9e9e}.mdui-slider-focus .mdui-slider-thumb{-webkit-transform:translate(-50%) scale(1.6);transform:translate(-50%) scale(1.6)}.mdui-slider-zero .mdui-slider-thumb{background-color:#fff;border-color:#bdbdbd}.mdui-slider-zero.mdui-slider-focus .mdui-slider-thumb{border-color:#9e9e9e}.mdui-slider-disabled input[type=range]{cursor:default}.mdui-slider-disabled .mdui-slider-track:before{background-color:#bdbdbd}.mdui-slider-disabled .mdui-slider-fill:before{background-color:#bdbdbd}.mdui-slider-disabled .mdui-slider-thumb{background-color:#bdbdbd;border-color:transparent!important;-webkit-transform:translate(-50%) scale(.72);transform:translate(-50%) scale(.72)}.mdui-slider-discrete .mdui-slider-thumb{width:30px;height:30px;margin-top:-15px;margin-left:-15px;border:none;-webkit-transform:rotate(-45deg) scale(.4);transform:rotate(-45deg) scale(.4)}.mdui-slider-discrete .mdui-slider-thumb span{position:absolute;top:9px;left:-1px;width:100%;font-size:12px;color:#fff;text-align:center;opacity:0;-webkit-transition:opacity .25s cubic-bezier(.4,0,.2,1);transition:opacity .25s cubic-bezier(.4,0,.2,1);-webkit-transform:rotate(45deg);transform:rotate(45deg)}.mdui-slider-discrete.mdui-slider-focus .mdui-slider-thumb{border-radius:15px 15px 15px 0;-webkit-transform:rotate(-45deg) scale(1) translate(22px,-22px);transform:rotate(-45deg) scale(1) translate(22px,-22px)}.mdui-slider-discrete.mdui-slider-focus .mdui-slider-thumb span{opacity:1}.mdui-slider-discrete.mdui-slider-zero .mdui-slider-thumb{background-color:#323232}.mdui-slider-discrete.mdui-slider-zero.mdui-slider-focus .mdui-slider-thumb{background-color:#bdbdbd}.mdui-slider-discrete.mdui-slider-disabled .mdui-slider-thumb{-webkit-transform:rotate(-45deg) scale(.288);transform:rotate(-45deg) scale(.288)}.mdui-slider-discrete.mdui-slider-zero.mdui-slider-disabled .mdui-slider-thumb{background-color:#bdbdbd}.mdui-theme-layout-dark .mdui-slider-track:before{background-color:#4c4c4c}.mdui-theme-layout-dark .mdui-slider-focus .mdui-slider-track:before{background-color:#4c4c4c}.mdui-theme-layout-dark .mdui-slider-zero .mdui-slider-thumb{background-color:#303030;border-color:#4c4c4c}.mdui-theme-layout-dark .mdui-slider-zero.mdui-slider-focus .mdui-slider-thumb{border-color:#4c4c4c}.mdui-theme-layout-dark .mdui-slider-disabled .mdui-slider-track:before{background-color:#4c4c4c}.mdui-theme-layout-dark .mdui-slider-disabled .mdui-slider-fill:before{background-color:#4c4c4c}.mdui-theme-layout-dark .mdui-slider-disabled .mdui-slider-thumb{background-color:#4c4c4c}.mdui-theme-layout-dark .mdui-slider-discrete.mdui-slider-zero .mdui-slider-thumb{background-color:#fefefe}.mdui-theme-layout-dark .mdui-slider-discrete.mdui-slider-zero.mdui-slider-focus .mdui-slider-thumb{background-color:#5c5c5c}.mdui-theme-layout-dark .mdui-slider-discrete.mdui-slider-zero.mdui-slider-disabled .mdui-slider-thumb{background-color:#4c4c4c}.mdui-btn,.mdui-fab{position:relative;display:inline-block;min-width:88px;height:36px;-webkit-box-sizing:border-box;box-sizing:border-box;padding:0 16px;margin:0;overflow:hidden;font-size:14px;font-weight:500;line-height:36px;color:inherit;text-align:center;text-decoration:none;text-transform:uppercase;letter-spacing:.04em;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;zoom:1;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background:0 0;border:none;border-radius:2px;outline:0;-webkit-transition:all .2s cubic-bezier(.4,0,.2,1),-webkit-box-shadow .2s cubic-bezier(.4,0,1,1);transition:all .2s cubic-bezier(.4,0,.2,1),-webkit-box-shadow .2s cubic-bezier(.4,0,1,1);transition:all .2s cubic-bezier(.4,0,.2,1),box-shadow .2s cubic-bezier(.4,0,1,1);transition:all .2s cubic-bezier(.4,0,.2,1),box-shadow .2s cubic-bezier(.4,0,1,1),-webkit-box-shadow .2s cubic-bezier(.4,0,1,1);will-change:box-shadow;-webkit-user-drag:none}.mdui-btn:hover,.mdui-fab:hover{background-color:rgba(0,0,0,.1)}.mdui-btn:not(.mdui-ripple):active,.mdui-fab:not(.mdui-ripple):active{background-color:rgba(0,0,0,.165)}.mdui-btn[class*=mdui-color-]:hover,.mdui-fab[class*=mdui-color-]:hover{opacity:.87}.mdui-btn:not(.mdui-ripple)[class*=mdui-color-]:active,.mdui-fab:not(.mdui-ripple)[class*=mdui-color-]:active{opacity:.76}.mdui-btn .mdui-icon-left,.mdui-btn .mdui-icon-left::before,.mdui-btn .mdui-icon-right,.mdui-btn .mdui-icon-right::before{height:inherit;font-size:1.3em;line-height:inherit}.mdui-btn .mdui-icon-left{float:left;margin-right:.4em}.mdui-btn .mdui-icon-right{float:right;margin-left:.4em}input.mdui-btn[type=submit]{-webkit-appearance:none;-moz-appearance:none;appearance:none}.mdui-btn-raised{-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.mdui-btn-raised:hover{-webkit-box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12);box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12)}.mdui-btn-raised:active{-webkit-box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12);box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)}.mdui-btn[disabled],.mdui-btn[disabled]:active,.mdui-btn[disabled]:focus,.mdui-btn[disabled]:hover,.mdui-fab[disabled],.mdui-fab[disabled]:active,.mdui-fab[disabled]:focus,.mdui-fab[disabled]:hover{color:rgba(0,0,0,.26)!important;cursor:default!important;background-color:transparent!important;-webkit-box-shadow:none!important;box-shadow:none!important;opacity:1!important}.mdui-btn[disabled] .mdui-icon,.mdui-btn[disabled]:active .mdui-icon,.mdui-btn[disabled]:focus .mdui-icon,.mdui-btn[disabled]:hover .mdui-icon,.mdui-fab[disabled] .mdui-icon,.mdui-fab[disabled]:active .mdui-icon,.mdui-fab[disabled]:focus .mdui-icon,.mdui-fab[disabled]:hover .mdui-icon{color:rgba(0,0,0,.26)!important}.mdui-btn-raised[disabled],.mdui-btn-raised[disabled]:active,.mdui-btn-raised[disabled]:focus,.mdui-btn-raised[disabled]:hover,.mdui-fab[disabled],.mdui-fab[disabled]:active,.mdui-fab[disabled]:focus,.mdui-fab[disabled]:hover{background-color:rgba(0,0,0,.12)!important;-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)!important;box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)!important}.mdui-btn-bold{font-weight:700}.mdui-btn-icon{width:36px;min-width:36px;height:36px;padding:0;margin-right:0;margin-left:0;overflow:hidden;font-size:24px;line-height:normal;border-radius:50%}.mdui-btn-icon .mdui-icon{position:absolute;top:50%;left:50%;width:24px;line-height:24px;-webkit-transform:translate(-12px,-12px);transform:translate(-12px,-12px)}.mdui-btn-icon.mdui-ripple{-webkit-transform:translateZ(0);transform:translateZ(0)}.mdui-btn-block{display:block;width:100%}.mdui-btn-dense{height:32px;font-size:13px;line-height:32px}.mdui-btn-dense.mdui-btn-icon{width:32px;min-width:32px}.mdui-btn-group{position:relative;display:inline-block;vertical-align:middle}.mdui-btn-group .mdui-btn{float:left;min-width:inherit;padding:0 12px;color:rgba(0,0,0,.54);border-radius:0}.mdui-btn-group .mdui-btn:before{position:absolute;top:0;bottom:0;left:0;content:' ';border-left:1px solid transparent}.mdui-btn-group .mdui-btn:first-child{border-top-left-radius:2px;border-bottom-left-radius:2px}.mdui-btn-group .mdui-btn:first-child:before{border-left:none}.mdui-btn-group .mdui-btn:last-child{border-top-right-radius:2px;border-bottom-right-radius:2px}.mdui-btn-group .mdui-btn.mdui-btn-active{color:rgba(0,0,0,.87);background-color:rgba(0,0,0,.215)}.mdui-btn-group .mdui-btn.mdui-btn-active+.mdui-btn-active:before{border-left:1px solid rgba(0,0,0,.145)}.mdui-theme-layout-dark .mdui-btn:hover,.mdui-theme-layout-dark .mdui-fab:hover{background-color:rgba(255,255,255,.1)}.mdui-theme-layout-dark .mdui-btn:not(.mdui-ripple):active,.mdui-theme-layout-dark .mdui-fab:not(.mdui-ripple):active{background-color:rgba(255,255,255,.165)}.mdui-theme-layout-dark .mdui-btn[class*=mdui-color-]:hover,.mdui-theme-layout-dark .mdui-fab[class*=mdui-color-]:hover{opacity:.87}.mdui-theme-layout-dark .mdui-btn:not(.mdui-ripple)[class*=mdui-color-]:active,.mdui-theme-layout-dark .mdui-fab:not(.mdui-ripple)[class*=mdui-color-]:active{opacity:.76}.mdui-theme-layout-dark .mdui-btn[disabled],.mdui-theme-layout-dark .mdui-btn[disabled]:active,.mdui-theme-layout-dark .mdui-btn[disabled]:focus,.mdui-theme-layout-dark .mdui-btn[disabled]:hover,.mdui-theme-layout-dark .mdui-fab[disabled],.mdui-theme-layout-dark .mdui-fab[disabled]:active,.mdui-theme-layout-dark .mdui-fab[disabled]:focus,.mdui-theme-layout-dark .mdui-fab[disabled]:hover{color:rgba(255,255,255,.3)!important;background-color:transparent!important}.mdui-theme-layout-dark .mdui-btn[disabled] .mdui-icon,.mdui-theme-layout-dark .mdui-btn[disabled]:active .mdui-icon,.mdui-theme-layout-dark .mdui-btn[disabled]:focus .mdui-icon,.mdui-theme-layout-dark .mdui-btn[disabled]:hover .mdui-icon,.mdui-theme-layout-dark .mdui-fab[disabled] .mdui-icon,.mdui-theme-layout-dark .mdui-fab[disabled]:active .mdui-icon,.mdui-theme-layout-dark .mdui-fab[disabled]:focus .mdui-icon,.mdui-theme-layout-dark .mdui-fab[disabled]:hover .mdui-icon{color:rgba(255,255,255,.3)!important}.mdui-theme-layout-dark .mdui-btn-raised[disabled],.mdui-theme-layout-dark .mdui-btn-raised[disabled]:active,.mdui-theme-layout-dark .mdui-btn-raised[disabled]:focus,.mdui-theme-layout-dark .mdui-btn-raised[disabled]:hover,.mdui-theme-layout-dark .mdui-fab[disabled],.mdui-theme-layout-dark .mdui-fab[disabled]:active,.mdui-theme-layout-dark .mdui-fab[disabled]:focus,.mdui-theme-layout-dark .mdui-fab[disabled]:hover{background-color:rgba(255,255,255,.12)!important}.mdui-fab{width:56px;min-width:56px;height:56px;padding:0!important;margin:auto;overflow:hidden;font-size:24px;line-height:normal!important;border-radius:50%;-webkit-box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12);box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12)}.mdui-fab:hover{-webkit-box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12);box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)}.mdui-fab:active{-webkit-box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 12px 17px 2px rgba(0,0,0,.14),0 5px 22px 4px rgba(0,0,0,.12);box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 12px 17px 2px rgba(0,0,0,.14),0 5px 22px 4px rgba(0,0,0,.12)}.mdui-fab .mdui-icon{position:absolute;top:0;left:0;width:24px;margin-top:16px;margin-left:16px;line-height:24px}.mdui-fab-mini{width:40px;min-width:40px;height:40px}.mdui-fab-mini .mdui-icon{margin-top:8px;margin-left:8px}.mdui-fab-fixed,.mdui-fab-wrapper{position:fixed!important;right:16px;bottom:16px}@media (min-width:1024px){.mdui-fab-fixed,.mdui-fab-wrapper{right:24px;bottom:24px}}.mdui-fab-wrapper{position:relative;z-index:4000;width:56px;height:56px;padding-top:8px;text-align:center}.mdui-fab-wrapper>.mdui-fab .mdui-icon:not(.mdui-fab-opened){opacity:1;-webkit-transition:all .2s cubic-bezier(.4,0,.2,1);transition:all .2s cubic-bezier(.4,0,.2,1);will-change:opacity,transform}.mdui-fab-wrapper>.mdui-fab .mdui-icon.mdui-fab-opened{opacity:0;-webkit-transition:all .2s cubic-bezier(.4,0,.2,1);transition:all .2s cubic-bezier(.4,0,.2,1);-webkit-transform:rotate(225deg);transform:rotate(225deg);will-change:opacity,transform}.mdui-fab-wrapper>.mdui-fab.mdui-fab-opened .mdui-icon:not(.mdui-fab-opened){opacity:0;-webkit-transform:rotate(225deg);transform:rotate(225deg)}.mdui-fab-wrapper>.mdui-fab.mdui-fab-opened .mdui-icon.mdui-fab-opened{opacity:1;-webkit-transform:rotate(360deg);transform:rotate(360deg)}.mdui-fab-wrapper>.mdui-fab-mini{margin-top:8px}.mdui-fab-wrapper .mdui-fab-dial{position:absolute;right:0;bottom:64px;left:0;height:0;text-align:center;visibility:visible}.mdui-fab-wrapper .mdui-fab-dial .mdui-fab{margin:8px 0;opacity:0;-webkit-transition:color .2s cubic-bezier(.4,0,.2,1),opacity 150ms cubic-bezier(.4,0,.2,1),-webkit-box-shadow .2s cubic-bezier(.4,0,1,1),-webkit-transform 150ms cubic-bezier(.4,0,.2,1);transition:color .2s cubic-bezier(.4,0,.2,1),opacity 150ms cubic-bezier(.4,0,.2,1),-webkit-box-shadow .2s cubic-bezier(.4,0,1,1),-webkit-transform 150ms cubic-bezier(.4,0,.2,1);transition:box-shadow .2s cubic-bezier(.4,0,1,1),color .2s cubic-bezier(.4,0,.2,1),transform 150ms cubic-bezier(.4,0,.2,1),opacity 150ms cubic-bezier(.4,0,.2,1);transition:box-shadow .2s cubic-bezier(.4,0,1,1),color .2s cubic-bezier(.4,0,.2,1),transform 150ms cubic-bezier(.4,0,.2,1),opacity 150ms cubic-bezier(.4,0,.2,1),-webkit-box-shadow .2s cubic-bezier(.4,0,1,1),-webkit-transform 150ms cubic-bezier(.4,0,.2,1);-webkit-transform:scale(0);transform:scale(0)}.mdui-fab-wrapper .mdui-fab-dial.mdui-fab-dial-show .mdui-fab{opacity:1;-webkit-transform:scale(1);transform:scale(1)}.mdui-fab,.mdui-fab-mini,.mdui-fab-wrapper{-webkit-transition:all .2s cubic-bezier(.4,0,.2,1),-webkit-box-shadow .2s cubic-bezier(.4,0,1,1),-webkit-transform .2s;transition:all .2s cubic-bezier(.4,0,.2,1),-webkit-box-shadow .2s cubic-bezier(.4,0,1,1),-webkit-transform .2s;transition:all .2s cubic-bezier(.4,0,.2,1),box-shadow .2s cubic-bezier(.4,0,1,1),transform .2s;transition:all .2s cubic-bezier(.4,0,.2,1),box-shadow .2s cubic-bezier(.4,0,1,1),transform .2s,-webkit-box-shadow .2s cubic-bezier(.4,0,1,1),-webkit-transform .2s;-webkit-transform:scale(1) translateZ(0);transform:scale(1) translateZ(0);will-change:transform}.mdui-fab-mini.mdui-fab-hide,.mdui-fab-wrapper.mdui-fab-hide,.mdui-fab.mdui-fab-hide{-webkit-transform:scale(0) translateZ(0);transform:scale(0) translateZ(0)}.mdui-select{position:relative;display:inline-block;max-width:100%;height:36px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none;padding-right:24px;padding-left:0;font-family:Roboto,Noto,Helvetica,Arial,sans-serif;font-size:16px;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210%22%20height%3D%2210%22%20viewBox%3D%220%200%2010%2010%22%3E%3Cpath%20d%3D%22m-0.00254%2C2.5l5%2C5l5%2C-5l-10%2C0z%22%20fill%3D%22%23000000%22%20opacity%3D%220.54%22%2F%3E%3C%2Fsvg%3E%0A);background-repeat:no-repeat;background-position:right center;border:none;border-bottom:1px solid rgba(0,0,0,.12);outline:0;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-transition-duration:.2s;transition-duration:.2s;-webkit-transition-property:background-color,background-position-x,-webkit-box-shadow;transition-property:background-color,background-position-x,-webkit-box-shadow;transition-property:background-color,box-shadow,background-position-x;transition-property:background-color,box-shadow,background-position-x,-webkit-box-shadow;-moz-appearance:none;appearance:none;will-change:background-color,box-shadow,background-position-x}.mdui-select.mdui-select-open{border-bottom:none}.mdui-select-position-top{background-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210%22%20height%3D%2210%22%20viewBox%3D%220%200%2010%2010%22%3E%3Cpath%20d%3D%22m-0.00254%2C2.5l5%2C5l5%2C-5l-10%2C0z%22%20fill%3D%22%23000000%22%20opacity%3D%220.54%22%20transform%3D%22rotate(-180%205%2C5)%22%2F%3E%3C%2Fsvg%3E%0A")}.mdui-select-open.mdui-select-position-bottom,.mdui-select-open.mdui-select-position-top{z-index:99999;background-color:#fff;background-position-x:calc(100% - 12px);border-radius:2px}.mdui-select-open.mdui-select-position-top{border-top:1px solid rgba(0,0,0,.12);border-bottom:2px solid transparent;border-top-left-radius:0;border-top-right-radius:0;-webkit-box-shadow:0 10px 10px -3px rgba(0,0,0,.2),0 0 14px 1px rgba(0,0,0,.14),0 -7px 24px 2px rgba(0,0,0,.12);box-shadow:0 10px 10px -3px rgba(0,0,0,.2),0 0 14px 1px rgba(0,0,0,.14),0 -7px 24px 2px rgba(0,0,0,.12)}.mdui-select-open.mdui-select-position-top .mdui-select-menu{border-bottom-right-radius:0;border-bottom-left-radius:0;-webkit-box-shadow:0 -4px 4px -2px rgba(0,0,0,.06),8px 0 8px -4px rgba(0,0,0,.12),-8px 0 8px -4px rgba(0,0,0,.12);box-shadow:0 -4px 4px -2px rgba(0,0,0,.06),8px 0 8px -4px rgba(0,0,0,.12),-8px 0 8px -4px rgba(0,0,0,.12)}.mdui-select-open.mdui-select-position-bottom{border-bottom:1px solid rgba(0,0,0,.12);border-bottom-right-radius:0;border-bottom-left-radius:0;-webkit-box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12);box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)}.mdui-select-open.mdui-select-position-bottom .mdui-select-menu{border-top-left-radius:0;border-top-right-radius:0;-webkit-box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 9px 9px 1px rgba(0,0,0,.14),0 8px 8px 2px rgba(0,0,0,.06);box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 9px 9px 1px rgba(0,0,0,.14),0 8px 8px 2px rgba(0,0,0,.06)}.mdui-select-selected{position:absolute;top:50%;right:24px;left:0;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;-webkit-transition:left .2s cubic-bezier(0,0,.2,1);transition:left .2s cubic-bezier(0,0,.2,1);-webkit-transform:translateY(-50%);transform:translateY(-50%)}.mdui-select-open .mdui-select-selected{right:32px;left:16px}.mdui-select-open.mdui-select-position-auto .mdui-select-selected{visibility:hidden}.mdui-select-menu{position:relative;z-index:99999;height:36px;-webkit-box-sizing:border-box;box-sizing:border-box;margin:0 -24px 0 0;overflow-y:scroll;-webkit-overflow-scrolling:touch;color:rgba(0,0,0,.87);cursor:default;visibility:hidden;background-color:#fff;border-radius:2px;-webkit-box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12);box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12);opacity:0;-webkit-transition-timing-function:cubic-bezier(0,0,.2,1);transition-timing-function:cubic-bezier(0,0,.2,1);-webkit-transition-duration:.2s;transition-duration:.2s;-webkit-transition-property:opacity,visibility,-webkit-transform;transition-property:opacity,visibility,-webkit-transform;transition-property:transform,opacity,visibility;transition-property:transform,opacity,visibility,-webkit-transform;-webkit-transform:scale(1,0);transform:scale(1,0);will-change:transform,opacity,visibility}.mdui-select-open .mdui-select-menu{overflow-y:hidden;visibility:visible;opacity:1;-webkit-transform:scale(1,1);transform:scale(1,1)}.mdui-select-closing .mdui-select-menu{overflow-y:hidden;visibility:visible;-webkit-box-shadow:none;box-shadow:none;opacity:0;-webkit-transform:scale(1,1);transform:scale(1,1)}.mdui-select-menu-item{height:48px;padding:0 16px;overflow:hidden;line-height:48px;text-overflow:ellipsis;white-space:nowrap;cursor:pointer}.mdui-select-menu-item:hover{background-color:#eee}.mdui-select-menu-item:first-child{margin-top:8px}.mdui-select-menu-item:last-child{margin-bottom:8px}.mdui-select-menu-item[disabled]{color:rgba(0,0,0,.38)!important;cursor:default}.mdui-select-menu-item[disabled]:hover{background-color:inherit!important}.mdui-select-menu-item[selected]{color:#ff4081}select.mdui-select{background-color:transparent}select.mdui-select option{color:rgba(0,0,0,.87)}select.mdui-select::-ms-expand{display:none}select.mdui-select[multiple]{height:auto;padding:0;font-size:15px;cursor:default;background-color:#fff;background-image:none;border:1px solid rgba(0,0,0,.38)}select.mdui-select[multiple] optgroup{padding:0 0 0 16px;margin:8px 0 0 0;color:rgba(0,0,0,.38)}select.mdui-select[multiple] optgroup:last-child{margin-bottom:8px}select.mdui-select[multiple] optgroup:not(:first-child){padding-top:8px;border-top:1px solid rgba(0,0,0,.12)}select.mdui-select[multiple] option{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:32px;padding:0 16px;margin:0 0 0 -16px;color:rgba(0,0,0,.87);-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}select.mdui-select[multiple] option:first-child{margin-top:8px}select.mdui-select[multiple] option:last-child{margin-bottom:8px}.mdui-theme-accent-amber .mdui-select-menu-item[selected]{color:#ffc107}.mdui-theme-accent-blue .mdui-select-menu-item[selected]{color:#2196f3}.mdui-theme-accent-cyan .mdui-select-menu-item[selected]{color:#00bcd4}.mdui-theme-accent-deep-orange .mdui-select-menu-item[selected]{color:#ff5722}.mdui-theme-accent-deep-purple .mdui-select-menu-item[selected]{color:#673ab7}.mdui-theme-accent-green .mdui-select-menu-item[selected]{color:#4caf50}.mdui-theme-accent-indigo .mdui-select-menu-item[selected]{color:#3f51b5}.mdui-theme-accent-light-blue .mdui-select-menu-item[selected]{color:#03a9f4}.mdui-theme-accent-light-green .mdui-select-menu-item[selected]{color:#8bc34a}.mdui-theme-accent-lime .mdui-select-menu-item[selected]{color:#cddc39}.mdui-theme-accent-orange .mdui-select-menu-item[selected]{color:#ff9800}.mdui-theme-accent-pink .mdui-select-menu-item[selected]{color:#e91e63}.mdui-theme-accent-purple .mdui-select-menu-item[selected]{color:#9c27b0}.mdui-theme-accent-red .mdui-select-menu-item[selected]{color:#f44336}.mdui-theme-accent-teal .mdui-select-menu-item[selected]{color:#009688}.mdui-theme-accent-yellow .mdui-select-menu-item[selected]{color:#ffeb3b}.mdui-theme-layout-dark .mdui-select{background-image:url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210%22%20height%3D%2210%22%20viewBox%3D%220%200%2010%2010%22%3E%3Cpath%20d%3D%22m-0.00254%2C2.5l5%2C5l5%2C-5l-10%2C0z%22%20fill%3D%22%23FFFFFF%22%2F%3E%3C%2Fsvg%3E%0A);border-bottom:1px solid rgba(255,255,255,.12)}.mdui-theme-layout-dark .mdui-select-position-top{background-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210%22%20height%3D%2210%22%20viewBox%3D%220%200%2010%2010%22%3E%3Cpath%20d%3D%22m-0.00254%2C2.5l5%2C5l5%2C-5l-10%2C0z%22%20fill%3D%22%23FFFFFF%22%20transform%3D%22rotate(-180%205%2C5)%22%2F%3E%3C%2Fsvg%3E%0A")}.mdui-theme-layout-dark .mdui-select-open.mdui-select-position-bottom,.mdui-theme-layout-dark .mdui-select-open.mdui-select-position-top{background-color:#424242}.mdui-theme-layout-dark .mdui-select-open.mdui-select-position-top{border-top:1px solid rgba(255,255,255,.12)}.mdui-theme-layout-dark .mdui-select-open.mdui-select-position-bottom{border-bottom:1px solid rgba(255,255,255,.12)}.mdui-theme-layout-dark .mdui-select-menu{color:#fff;background-color:#424242}.mdui-theme-layout-dark .mdui-select-menu-item:hover{background-color:#616161}.mdui-theme-layout-dark .mdui-select-menu-item[disabled]{color:rgba(255,255,255,.5)!important}.mdui-theme-layout-dark select.mdui-select{color:#fff;background-color:#303030}.mdui-theme-layout-dark select.mdui-select option{color:#fff;background-color:#303030}.mdui-theme-layout-dark select.mdui-select[multiple]{border:1px solid rgba(255,255,255,.5)}.mdui-theme-layout-dark select.mdui-select[multiple] optgroup{color:rgba(255,255,255,.5)}.mdui-theme-layout-dark select.mdui-select[multiple] optgroup:not(:first-child){border-top:1px solid rgba(255,255,255,.12)}.mdui-container,.mdui-container-fluid{-webkit-box-sizing:border-box;box-sizing:border-box;padding-right:8px;padding-left:8px;margin-right:auto;margin-left:auto}.mdui-container-fluid:after,.mdui-container:after{display:table;clear:both;content:''}.mdui-container{width:96%;max-width:1280px}@media (min-width:600px){.mdui-container{width:94%}}@media (min-width:1024px){.mdui-container{width:92%}}.mdui-row,[class*=mdui-row-]{margin-right:-8px;margin-left:-8px}.mdui-row:after,[class*=mdui-row-]:after{display:table;clear:both;content:''}.mdui-col,[class*=mdui-col-lg-],[class*=mdui-col-md-],[class*=mdui-col-sm-],[class*=mdui-col-xl-],[class*=mdui-col-xs-]{position:relative;min-height:1px;-webkit-box-sizing:border-box;box-sizing:border-box;padding-right:8px;padding-left:8px}.mdui-row-gapless .mdui-col,.mdui-row-gapless [class*=mdui-col-lg-],.mdui-row-gapless [class*=mdui-col-md-],.mdui-row-gapless [class*=mdui-col-sm-],.mdui-row-gapless [class*=mdui-col-xl-],.mdui-row-gapless [class*=mdui-col-xs-]{padding-right:0;padding-left:0}.mdui-row-gapless .mdui-row,.mdui-row-gapless [class*=mdui-row-]{margin-right:0;margin-left:0}.mdui-col-xs-1{float:left;width:8.333333%}.mdui-col-offset-xs-1{margin-left:8.333333%}.mdui-row-xs-1 .mdui-col{float:left;width:100%}.mdui-col-xs-2{float:left;width:16.666667%}.mdui-col-offset-xs-2{margin-left:16.666667%}.mdui-row-xs-2 .mdui-col{float:left;width:50%}.mdui-col-xs-3{float:left;width:25%}.mdui-col-offset-xs-3{margin-left:25%}.mdui-row-xs-3 .mdui-col{float:left;width:33.333333%}.mdui-col-xs-4{float:left;width:33.333333%}.mdui-col-offset-xs-4{margin-left:33.333333%}.mdui-row-xs-4 .mdui-col{float:left;width:25%}.mdui-col-xs-5{float:left;width:41.666667%}.mdui-col-offset-xs-5{margin-left:41.666667%}.mdui-row-xs-5 .mdui-col{float:left;width:20%}.mdui-col-xs-6{float:left;width:50%}.mdui-col-offset-xs-6{margin-left:50%}.mdui-row-xs-6 .mdui-col{float:left;width:16.666667%}.mdui-col-xs-7{float:left;width:58.333333%}.mdui-col-offset-xs-7{margin-left:58.333333%}.mdui-row-xs-7 .mdui-col{float:left;width:14.285714%}.mdui-col-xs-8{float:left;width:66.666667%}.mdui-col-offset-xs-8{margin-left:66.666667%}.mdui-row-xs-8 .mdui-col{float:left;width:12.5%}.mdui-col-xs-9{float:left;width:75%}.mdui-col-offset-xs-9{margin-left:75%}.mdui-row-xs-9 .mdui-col{float:left;width:11.111111%}.mdui-col-xs-10{float:left;width:83.333333%}.mdui-col-offset-xs-10{margin-left:83.333333%}.mdui-row-xs-10 .mdui-col{float:left;width:10%}.mdui-col-xs-11{float:left;width:91.666667%}.mdui-col-offset-xs-11{margin-left:91.666667%}.mdui-row-xs-11 .mdui-col{float:left;width:9.090909%}.mdui-col-xs-12{float:left;width:100%}.mdui-col-offset-xs-12{margin-left:100%}.mdui-row-xs-12 .mdui-col{float:left;width:8.333333%}@media (min-width:600px){.mdui-col-sm-1{float:left;width:8.333333%}.mdui-col-offset-sm-1{margin-left:8.333333%}.mdui-row-sm-1 .mdui-col{float:left;width:100%}.mdui-col-sm-2{float:left;width:16.666667%}.mdui-col-offset-sm-2{margin-left:16.666667%}.mdui-row-sm-2 .mdui-col{float:left;width:50%}.mdui-col-sm-3{float:left;width:25%}.mdui-col-offset-sm-3{margin-left:25%}.mdui-row-sm-3 .mdui-col{float:left;width:33.333333%}.mdui-col-sm-4{float:left;width:33.333333%}.mdui-col-offset-sm-4{margin-left:33.333333%}.mdui-row-sm-4 .mdui-col{float:left;width:25%}.mdui-col-sm-5{float:left;width:41.666667%}.mdui-col-offset-sm-5{margin-left:41.666667%}.mdui-row-sm-5 .mdui-col{float:left;width:20%}.mdui-col-sm-6{float:left;width:50%}.mdui-col-offset-sm-6{margin-left:50%}.mdui-row-sm-6 .mdui-col{float:left;width:16.666667%}.mdui-col-sm-7{float:left;width:58.333333%}.mdui-col-offset-sm-7{margin-left:58.333333%}.mdui-row-sm-7 .mdui-col{float:left;width:14.285714%}.mdui-col-sm-8{float:left;width:66.666667%}.mdui-col-offset-sm-8{margin-left:66.666667%}.mdui-row-sm-8 .mdui-col{float:left;width:12.5%}.mdui-col-sm-9{float:left;width:75%}.mdui-col-offset-sm-9{margin-left:75%}.mdui-row-sm-9 .mdui-col{float:left;width:11.111111%}.mdui-col-sm-10{float:left;width:83.333333%}.mdui-col-offset-sm-10{margin-left:83.333333%}.mdui-row-sm-10 .mdui-col{float:left;width:10%}.mdui-col-sm-11{float:left;width:91.666667%}.mdui-col-offset-sm-11{margin-left:91.666667%}.mdui-row-sm-11 .mdui-col{float:left;width:9.090909%}.mdui-col-sm-12{float:left;width:100%}.mdui-col-offset-sm-12{margin-left:100%}.mdui-row-sm-12 .mdui-col{float:left;width:8.333333%}}@media (min-width:1024px){.mdui-col-md-1{float:left;width:8.333333%}.mdui-col-offset-md-1{margin-left:8.333333%}.mdui-row-md-1 .mdui-col{float:left;width:100%}.mdui-col-md-2{float:left;width:16.666667%}.mdui-col-offset-md-2{margin-left:16.666667%}.mdui-row-md-2 .mdui-col{float:left;width:50%}.mdui-col-md-3{float:left;width:25%}.mdui-col-offset-md-3{margin-left:25%}.mdui-row-md-3 .mdui-col{float:left;width:33.333333%}.mdui-col-md-4{float:left;width:33.333333%}.mdui-col-offset-md-4{margin-left:33.333333%}.mdui-row-md-4 .mdui-col{float:left;width:25%}.mdui-col-md-5{float:left;width:41.666667%}.mdui-col-offset-md-5{margin-left:41.666667%}.mdui-row-md-5 .mdui-col{float:left;width:20%}.mdui-col-md-6{float:left;width:50%}.mdui-col-offset-md-6{margin-left:50%}.mdui-row-md-6 .mdui-col{float:left;width:16.666667%}.mdui-col-md-7{float:left;width:58.333333%}.mdui-col-offset-md-7{margin-left:58.333333%}.mdui-row-md-7 .mdui-col{float:left;width:14.285714%}.mdui-col-md-8{float:left;width:66.666667%}.mdui-col-offset-md-8{margin-left:66.666667%}.mdui-row-md-8 .mdui-col{float:left;width:12.5%}.mdui-col-md-9{float:left;width:75%}.mdui-col-offset-md-9{margin-left:75%}.mdui-row-md-9 .mdui-col{float:left;width:11.111111%}.mdui-col-md-10{float:left;width:83.333333%}.mdui-col-offset-md-10{margin-left:83.333333%}.mdui-row-md-10 .mdui-col{float:left;width:10%}.mdui-col-md-11{float:left;width:91.666667%}.mdui-col-offset-md-11{margin-left:91.666667%}.mdui-row-md-11 .mdui-col{float:left;width:9.090909%}.mdui-col-md-12{float:left;width:100%}.mdui-col-offset-md-12{margin-left:100%}.mdui-row-md-12 .mdui-col{float:left;width:8.333333%}}@media (min-width:1440px){.mdui-col-lg-1{float:left;width:8.333333%}.mdui-col-offset-lg-1{margin-left:8.333333%}.mdui-row-lg-1 .mdui-col{float:left;width:100%}.mdui-col-lg-2{float:left;width:16.666667%}.mdui-col-offset-lg-2{margin-left:16.666667%}.mdui-row-lg-2 .mdui-col{float:left;width:50%}.mdui-col-lg-3{float:left;width:25%}.mdui-col-offset-lg-3{margin-left:25%}.mdui-row-lg-3 .mdui-col{float:left;width:33.333333%}.mdui-col-lg-4{float:left;width:33.333333%}.mdui-col-offset-lg-4{margin-left:33.333333%}.mdui-row-lg-4 .mdui-col{float:left;width:25%}.mdui-col-lg-5{float:left;width:41.666667%}.mdui-col-offset-lg-5{margin-left:41.666667%}.mdui-row-lg-5 .mdui-col{float:left;width:20%}.mdui-col-lg-6{float:left;width:50%}.mdui-col-offset-lg-6{margin-left:50%}.mdui-row-lg-6 .mdui-col{float:left;width:16.666667%}.mdui-col-lg-7{float:left;width:58.333333%}.mdui-col-offset-lg-7{margin-left:58.333333%}.mdui-row-lg-7 .mdui-col{float:left;width:14.285714%}.mdui-col-lg-8{float:left;width:66.666667%}.mdui-col-offset-lg-8{margin-left:66.666667%}.mdui-row-lg-8 .mdui-col{float:left;width:12.5%}.mdui-col-lg-9{float:left;width:75%}.mdui-col-offset-lg-9{margin-left:75%}.mdui-row-lg-9 .mdui-col{float:left;width:11.111111%}.mdui-col-lg-10{float:left;width:83.333333%}.mdui-col-offset-lg-10{margin-left:83.333333%}.mdui-row-lg-10 .mdui-col{float:left;width:10%}.mdui-col-lg-11{float:left;width:91.666667%}.mdui-col-offset-lg-11{margin-left:91.666667%}.mdui-row-lg-11 .mdui-col{float:left;width:9.090909%}.mdui-col-lg-12{float:left;width:100%}.mdui-col-offset-lg-12{margin-left:100%}.mdui-row-lg-12 .mdui-col{float:left;width:8.333333%}}@media (min-width:1920px){.mdui-col-xl-1{float:left;width:8.333333%}.mdui-col-offset-xl-1{margin-left:8.333333%}.mdui-row-xl-1 .mdui-col{float:left;width:100%}.mdui-col-xl-2{float:left;width:16.666667%}.mdui-col-offset-xl-2{margin-left:16.666667%}.mdui-row-xl-2 .mdui-col{float:left;width:50%}.mdui-col-xl-3{float:left;width:25%}.mdui-col-offset-xl-3{margin-left:25%}.mdui-row-xl-3 .mdui-col{float:left;width:33.333333%}.mdui-col-xl-4{float:left;width:33.333333%}.mdui-col-offset-xl-4{margin-left:33.333333%}.mdui-row-xl-4 .mdui-col{float:left;width:25%}.mdui-col-xl-5{float:left;width:41.666667%}.mdui-col-offset-xl-5{margin-left:41.666667%}.mdui-row-xl-5 .mdui-col{float:left;width:20%}.mdui-col-xl-6{float:left;width:50%}.mdui-col-offset-xl-6{margin-left:50%}.mdui-row-xl-6 .mdui-col{float:left;width:16.666667%}.mdui-col-xl-7{float:left;width:58.333333%}.mdui-col-offset-xl-7{margin-left:58.333333%}.mdui-row-xl-7 .mdui-col{float:left;width:14.285714%}.mdui-col-xl-8{float:left;width:66.666667%}.mdui-col-offset-xl-8{margin-left:66.666667%}.mdui-row-xl-8 .mdui-col{float:left;width:12.5%}.mdui-col-xl-9{float:left;width:75%}.mdui-col-offset-xl-9{margin-left:75%}.mdui-row-xl-9 .mdui-col{float:left;width:11.111111%}.mdui-col-xl-10{float:left;width:83.333333%}.mdui-col-offset-xl-10{margin-left:83.333333%}.mdui-row-xl-10 .mdui-col{float:left;width:10%}.mdui-col-xl-11{float:left;width:91.666667%}.mdui-col-offset-xl-11{margin-left:91.666667%}.mdui-row-xl-11 .mdui-col{float:left;width:9.090909%}.mdui-col-xl-12{float:left;width:100%}.mdui-col-offset-xl-12{margin-left:100%}.mdui-row-xl-12 .mdui-col{float:left;width:8.333333%}}.mdui-toolbar{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.mdui-toolbar>*{margin:0 16px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mdui-toolbar[class*=mdui-color-]:not(.mdui-color-transparent) .mdui-btn:hover{background-color:rgba(255,255,255,.1)}.mdui-toolbar[class*=mdui-color-]:not(.mdui-color-transparent) .mdui-btn:active{background-color:rgba(255,255,255,.165)}.mdui-toolbar>a{color:inherit;text-decoration:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mdui-toolbar>.mdui-btn-icon{width:48px;min-width:48px;height:48px}@media (orientation:landscape) and (max-width:959px){.mdui-toolbar>.mdui-btn-icon{width:40px;min-width:40px;height:40px}}.mdui-toolbar>.mdui-btn-icon .mdui-icon{height:24px;line-height:24px}.mdui-toolbar .mdui-icon{color:inherit}.mdui-toolbar-spacer{margin:0;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.mdui-toolbar{height:56px;line-height:56px}.mdui-toolbar>.mdui-btn{margin:0 4px}.mdui-toolbar>.mdui-btn+.mdui-btn{margin-left:0}@media (min-width:600px){.mdui-appbar .mdui-toolbar{height:64px;line-height:64px}.mdui-appbar .mdui-toolbar>.mdui-btn{margin:0 8px}.mdui-appbar .mdui-toolbar>.mdui-btn+.mdui-btn{margin-left:0}}@media (orientation:landscape) and (max-width:959px){.mdui-appbar .mdui-toolbar{height:48px;line-height:48px}.mdui-appbar .mdui-toolbar>.mdui-btn{margin:0 4px}.mdui-appbar .mdui-toolbar>.mdui-btn+.mdui-btn{margin-left:0}}.mdui-appbar{z-index:1000;-webkit-box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12);box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12)}.mdui-appbar-fixed{position:fixed;top:0;right:0;left:0;-webkit-transition-timing-function:cubic-bezier(0,0,.2,1);transition-timing-function:cubic-bezier(0,0,.2,1);-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:left,right;transition-property:left,right;will-change:left,right}@media (min-width:1024px){.mdui-drawer-body-left .mdui-appbar-inset.mdui-appbar-fixed{left:240px}}@media (min-width:1024px){.mdui-drawer-body-right .mdui-appbar-inset.mdui-appbar-fixed{right:240px}}.mdui-appbar-with-toolbar{padding-top:56px}@media (min-width:600px){.mdui-appbar-with-toolbar{padding-top:64px}}@media (orientation:landscape) and (max-width:959px){.mdui-appbar-with-toolbar{padding-top:48px}}.mdui-appbar-with-tab{padding-top:48px}.mdui-appbar-with-tab-larger{padding-top:72px}.mdui-appbar-with-toolbar.mdui-appbar-with-tab{padding-top:104px}@media (min-width:600px){.mdui-appbar-with-toolbar.mdui-appbar-with-tab{padding-top:112px}}@media (orientation:landscape) and (max-width:959px){.mdui-appbar-with-toolbar.mdui-appbar-with-tab{padding-top:96px}}.mdui-appbar-with-toolbar.mdui-appbar-with-tab-larger{padding-top:128px}@media (min-width:600px){.mdui-appbar-with-toolbar.mdui-appbar-with-tab-larger{padding-top:136px}}@media (orientation:landscape) and (max-width:959px){.mdui-appbar-with-toolbar.mdui-appbar-with-tab-larger{padding-top:120px}}.mdui-theme-layout-dark .mdui-appbar>[class*=mdui-color-]:not(.mdui-color-transparent){color:#fff!important;background-color:#212121!important}.mdui-card{position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;color:#000;background-color:#fff;border-radius:2px;-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.mdui-card-header{position:relative;height:72px;-webkit-box-sizing:border-box;box-sizing:border-box;padding:16px}.mdui-card-header-avatar{float:left;width:40px;height:40px;border-radius:50%}.mdui-card-header-title{display:block;margin-left:52px;overflow:hidden;font-size:16px;font-weight:500;line-height:20px;text-overflow:ellipsis;white-space:nowrap;opacity:.87}.mdui-card-header-subtitle{display:block;margin-left:52px;overflow:hidden;font-size:14px;font-weight:400;line-height:20px;text-overflow:ellipsis;white-space:nowrap;opacity:.54}.mdui-card-primary{position:relative;padding:24px 16px 16px 16px}.mdui-card-primary-title{display:block;font-size:24px;line-height:36px;opacity:.87}.mdui-card-primary-subtitle{display:block;font-size:14px;line-height:24px;opacity:.54}.mdui-card-content{position:relative;padding:16px;font-size:14px;line-height:24px}.mdui-card-menu{position:absolute;top:16px;right:16px;z-index:1}.mdui-card-menu .mdui-btn{margin-left:8px}.mdui-card-actions{position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;padding:8px}.mdui-card-actions:after,.mdui-card-actions:before{display:table;content:" "}.mdui-card-actions:after{clear:both}.mdui-card-actions:after,.mdui-card-actions:before{display:table;content:" "}.mdui-card-actions:after{clear:both}.mdui-card-actions .mdui-btn{max-width:100%;margin:0 8px 0 0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mdui-card-actions .mdui-btn-icon{width:36px;height:36px;margin:0 8px}.mdui-card-actions-stacked .mdui-btn{display:block;margin:0 0 4px 0}.mdui-card-actions-stacked .mdui-btn:last-child{margin:0}.mdui-card-media{position:relative}.mdui-card-media img,.mdui-card-media video{display:block;width:100%}.mdui-card-media-covered{position:absolute;right:0;bottom:0;left:0;color:#fff;background:rgba(0,0,0,.2)}.mdui-card-media-covered .mdui-card-primary-title{opacity:1}.mdui-card-media-covered .mdui-card-primary-subtitle{opacity:.7}.mdui-card-media-covered-top{top:0;bottom:auto}.mdui-card-media-covered-transparent{background:0 0}.mdui-card-media-covered-gradient{background:-webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.26)),to(rgba(0,0,0,0)));background:linear-gradient(to top,rgba(0,0,0,.26),rgba(0,0,0,0))}.mdui-card-media-covered-gradient.mdui-card-media-covered-top{background:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.26)),to(rgba(0,0,0,0)));background:linear-gradient(to bottom,rgba(0,0,0,.26),rgba(0,0,0,0))}.mdui-theme-layout-dark .mdui-card{color:#fff;background-color:#424242}.mdui-tab{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;min-height:48px;max-height:72px;padding:0;margin:0 auto;overflow-x:auto;overflow-y:hidden;-webkit-overflow-scrolling:touch;white-space:nowrap}.mdui-tab a{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;min-width:72px;min-height:48px;max-height:72px;-webkit-box-sizing:border-box;box-sizing:border-box;padding:12px;overflow:hidden;font-size:14px;color:inherit;text-align:center;text-decoration:none;text-overflow:ellipsis;text-transform:uppercase;cursor:pointer;flex-direction:column;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;opacity:.7;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.mdui-tab a .mdui-icon{opacity:.7}@media (min-width:600px){.mdui-tab a{min-width:99px;max-width:264px;padding:12px 24px;-webkit-box-flex:0;-webkit-flex:none;-ms-flex:none;flex:none}}@media (min-width:1024px){.mdui-tab a{min-width:112px}}@media (min-width:1440px){.mdui-tab a{min-width:136px}}@media (min-width:1920px){.mdui-tab a{min-width:160px}}.mdui-tab a label{display:block;width:100%;cursor:pointer}.mdui-tab a .mdui-icon+label{margin-top:8px}.mdui-tab a[disabled]{cursor:default;opacity:.38}.mdui-tab a[disabled] label{cursor:default}.mdui-tab .mdui-tab-active{color:#3f51b5;opacity:1}.mdui-tab .mdui-tab-active .mdui-icon{opacity:1}@media (min-width:600px){.mdui-tab-centered:before{content:' ';-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.mdui-tab-centered:after{content:' ';-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.mdui-tab-centered a{-webkit-box-flex:0;-webkit-flex:none;-ms-flex:none;flex:none}}.mdui-tab-full-width a{max-width:none;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.mdui-tab-scrollable{padding-left:56px}.mdui-tab-scrollable a{-webkit-box-flex:0;-webkit-flex:none;-ms-flex:none;flex:none}@media (max-width:599px){.mdui-tab-scrollable{padding-left:60px}}.mdui-tab-indicator{position:absolute;bottom:0;height:2px;background-color:#3f51b5;-webkit-transition:all .35s cubic-bezier(.4,0,.2,1);transition:all .35s cubic-bezier(.4,0,.2,1);will-change:left,width}.mdui-theme-primary-amber .mdui-tab .mdui-tab-active{color:#ffc107}.mdui-theme-primary-amber .mdui-tab-indicator{background-color:#ffc107}.mdui-theme-primary-blue .mdui-tab .mdui-tab-active{color:#2196f3}.mdui-theme-primary-blue .mdui-tab-indicator{background-color:#2196f3}.mdui-theme-primary-blue-grey .mdui-tab .mdui-tab-active{color:#607d8b}.mdui-theme-primary-blue-grey .mdui-tab-indicator{background-color:#607d8b}.mdui-theme-primary-brown .mdui-tab .mdui-tab-active{color:#795548}.mdui-theme-primary-brown .mdui-tab-indicator{background-color:#795548}.mdui-theme-primary-cyan .mdui-tab .mdui-tab-active{color:#00bcd4}.mdui-theme-primary-cyan .mdui-tab-indicator{background-color:#00bcd4}.mdui-theme-primary-deep-orange .mdui-tab .mdui-tab-active{color:#ff5722}.mdui-theme-primary-deep-orange .mdui-tab-indicator{background-color:#ff5722}.mdui-theme-primary-deep-purple .mdui-tab .mdui-tab-active{color:#673ab7}.mdui-theme-primary-deep-purple .mdui-tab-indicator{background-color:#673ab7}.mdui-theme-primary-green .mdui-tab .mdui-tab-active{color:#4caf50}.mdui-theme-primary-green .mdui-tab-indicator{background-color:#4caf50}.mdui-theme-primary-grey .mdui-tab .mdui-tab-active{color:#9e9e9e}.mdui-theme-primary-grey .mdui-tab-indicator{background-color:#9e9e9e}.mdui-theme-primary-indigo .mdui-tab .mdui-tab-active{color:#3f51b5}.mdui-theme-primary-indigo .mdui-tab-indicator{background-color:#3f51b5}.mdui-theme-primary-light-blue .mdui-tab .mdui-tab-active{color:#03a9f4}.mdui-theme-primary-light-blue .mdui-tab-indicator{background-color:#03a9f4}.mdui-theme-primary-light-green .mdui-tab .mdui-tab-active{color:#8bc34a}.mdui-theme-primary-light-green .mdui-tab-indicator{background-color:#8bc34a}.mdui-theme-primary-lime .mdui-tab .mdui-tab-active{color:#cddc39}.mdui-theme-primary-lime .mdui-tab-indicator{background-color:#cddc39}.mdui-theme-primary-orange .mdui-tab .mdui-tab-active{color:#ff9800}.mdui-theme-primary-orange .mdui-tab-indicator{background-color:#ff9800}.mdui-theme-primary-pink .mdui-tab .mdui-tab-active{color:#e91e63}.mdui-theme-primary-pink .mdui-tab-indicator{background-color:#e91e63}.mdui-theme-primary-purple .mdui-tab .mdui-tab-active{color:#9c27b0}.mdui-theme-primary-purple .mdui-tab-indicator{background-color:#9c27b0}.mdui-theme-primary-red .mdui-tab .mdui-tab-active{color:#f44336}.mdui-theme-primary-red .mdui-tab-indicator{background-color:#f44336}.mdui-theme-primary-teal .mdui-tab .mdui-tab-active{color:#009688}.mdui-theme-primary-teal .mdui-tab-indicator{background-color:#009688}.mdui-theme-primary-yellow .mdui-tab .mdui-tab-active{color:#ffeb3b}.mdui-theme-primary-yellow .mdui-tab-indicator{background-color:#ffeb3b}.mdui-tab[class*=mdui-color-]:not(.mdui-color-white) .mdui-tab-active{color:inherit}.mdui-tab[class*=mdui-color-]:not(.mdui-color-white) .mdui-tab-indicator{background-color:#fff}.mdui-tab[class*=mdui-color-]:not(.mdui-color-white)::-webkit-scrollbar{width:5px;height:5px;background:0 0}@media (min-width:1024px){.mdui-tab[class*=mdui-color-]:not(.mdui-color-white)::-webkit-scrollbar{width:8px;height:8px}}.mdui-tab[class*=mdui-color-]:not(.mdui-color-white)::-webkit-scrollbar-thumb{background:rgba(255,255,255,.3)}.mdui-subheader,.mdui-subheader-inset{position:relative;height:48px;-webkit-box-sizing:border-box;box-sizing:border-box;padding-right:16px;padding-left:16px;overflow:hidden;font-size:14px;font-weight:500;line-height:48px;color:rgba(0,0,0,.54);text-overflow:ellipsis;white-space:nowrap;cursor:default}.mdui-subheader-inset{padding-left:72px}.mdui-theme-layout-dark .mdui-subheader,.mdui-theme-layout-dark .mdui-subheader-inset{color:rgba(255,255,255,.7)}.mdui-grid-list{margin:0 -2px}.mdui-grid-list .mdui-col,.mdui-grid-list [class*=mdui-col-lg-],.mdui-grid-list [class*=mdui-col-md-],.mdui-grid-list [class*=mdui-col-sm-],.mdui-grid-list [class*=mdui-col-xl-],.mdui-grid-list [class*=mdui-col-xs-]{padding-right:2px;padding-left:2px}.mdui-grid-tile{position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;margin-bottom:4px;overflow:hidden}.mdui-grid-tile img{display:block;width:100%}.mdui-grid-tile-actions{position:absolute;right:0;bottom:0;left:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;min-height:48px;max-height:68px;-webkit-box-sizing:border-box;box-sizing:border-box;padding:16px;color:#fff;background:rgba(0,0,0,.2);-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.mdui-grid-tile-actions .mdui-icon{color:#fff}.mdui-grid-tile-text{overflow:hidden;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.mdui-grid-tile-title{height:16px;overflow:hidden;font-size:16px;line-height:16px;text-overflow:ellipsis;white-space:nowrap}.mdui-grid-tile-title .mdui-icon{margin-right:8px}.mdui-grid-tile-subtitle{height:18px;margin-top:4px;overflow:hidden;font-size:12px;line-height:18px;text-overflow:ellipsis;white-space:nowrap}.mdui-grid-tile-subtitle .mdui-icon{margin-right:8px;font-size:18px}.mdui-grid-tile-buttons{margin:-8px;white-space:nowrap;-webkit-box-flex:0;-webkit-flex:none;-ms-flex:none;flex:none}.mdui-grid-tile-buttons .mdui-btn{margin-left:8px}.mdui-grid-tile-buttons .mdui-btn:first-child{margin-left:0}.mdui-grid-tile-text+.mdui-grid-tile-buttons{margin-left:8px}.mdui-grid-tile-buttons+.mdui-grid-tile-text{margin-left:16px}.mdui-grid-tile-actions-top{top:0;bottom:auto}.mdui-grid-tile-actions-transparent{background:0 0}.mdui-grid-tile-actions-gradient{background:-webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.26)),to(rgba(0,0,0,0)));background:linear-gradient(to top,rgba(0,0,0,.26),rgba(0,0,0,0))}.mdui-grid-tile-actions-gradient.mdui-grid-tile-actions-top{background:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.26)),to(rgba(0,0,0,0)));background:linear-gradient(to bottom,rgba(0,0,0,.26),rgba(0,0,0,0))}.mdui-list{padding:8px 0;margin:0;list-style:none;background-color:transparent}.mdui-list .mdui-list{padding:0}.mdui-list>.mdui-divider,.mdui-list>.mdui-divider-dark,.mdui-list>.mdui-divider-inset,.mdui-list>.mdui-divider-inset-dark,.mdui-list>.mdui-divider-inset-light,.mdui-list>.mdui-divider-light{margin-top:8px;margin-bottom:8px}.mdui-list a{color:inherit;text-decoration:none}.mdui-list .mdui-subheader,.mdui-list .mdui-subheader-inset{margin-top:8px}.mdui-list .mdui-subheader-inset:before,.mdui-list .mdui-subheader:before{position:absolute;right:0;left:0;display:block;height:1px;content:' ';background-color:rgba(0,0,0,.12)}.mdui-list .mdui-subheader-inset:first-child,.mdui-list .mdui-subheader:first-child{margin-top:-8px}.mdui-list .mdui-subheader-inset:first-child:before,.mdui-list .mdui-subheader:first-child:before{background-color:transparent}.mdui-list .mdui-subheader-inset:before{left:72px}.mdui-list-item{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;min-height:48px;-webkit-box-sizing:border-box;box-sizing:border-box;padding:0 16px;text-decoration:none;cursor:pointer;-webkit-transition:background-color .3s cubic-bezier(.4,0,.2,1);transition:background-color .3s cubic-bezier(.4,0,.2,1);-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.mdui-list-item:hover{background-color:rgba(0,0,0,.08)}.mdui-list-item:after{height:48px;visibility:hidden;content:' '}.mdui-list-item-icon{width:24px;min-width:24px;height:24px;color:rgba(0,0,0,.54)}.mdui-list-item-avatar{min-width:40px;max-width:40px;height:40px;margin-top:8px;margin-bottom:8px;line-height:40px;color:#fff;text-align:center;background-color:#bdbdbd;border-radius:50%}.mdui-list-item-avatar img{width:100%;height:100%;border-radius:50%}.mdui-list-item-content{padding-top:14px;padding-bottom:14px;font-size:16px;font-weight:400;line-height:20px;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.mdui-list-item-text{font-size:14px;opacity:.54}.mdui-list-item-title~.mdui-list-item-text{margin-top:4px}.mdui-list-item-active{font-weight:700;background-color:rgba(0,0,0,.08)}.mdui-list-item-active .mdui-list-item-content{font-weight:700}.mdui-list-item-active .mdui-list-item-text{font-weight:400}.mdui-list-item-one-line,.mdui-list-item-three-line,.mdui-list-item-two-line{display:-webkit-box;overflow:hidden;text-overflow:ellipsis;-webkit-box-orient:vertical}.mdui-list-item-one-line{height:20px;-webkit-line-clamp:1}.mdui-list-item-two-line{height:40px;-webkit-line-clamp:2}.mdui-list-item-three-line{height:60px;-webkit-line-clamp:3}.mdui-list-item-icon~.mdui-list-item-content{margin-left:32px}.mdui-checkbox~.mdui-list-item-content,.mdui-radio~.mdui-list-item-content,.mdui-switch~.mdui-list-item-content{margin-left:20px}.mdui-list-item-avatar~.mdui-list-item-content{margin-left:16px}.mdui-list-item-content~.mdui-checkbox,.mdui-list-item-content~.mdui-list-item-avatar,.mdui-list-item-content~.mdui-list-item-icon,.mdui-list-item-content~.mdui-radio,.mdui-list-item-content~.mdui-switch{margin-left:16px}.mdui-list-item-content~.mdui-checkbox,.mdui-list-item-content~.mdui-radio{padding-left:24px}.mdui-list-dense{padding:4px 0;font-size:13px}.mdui-list-dense>.mdui-divider,.mdui-list-dense>.mdui-divider-dark,.mdui-list-dense>.mdui-divider-inset,.mdui-list-dense>.mdui-divider-inset-dark,.mdui-list-dense>.mdui-divider-inset-light,.mdui-list-dense>.mdui-divider-light{margin-top:4px;margin-bottom:4px}.mdui-list-dense .mdui-subheader,.mdui-list-dense .mdui-subheader-inset{height:40px;margin-top:4px;font-size:12px;line-height:40px}.mdui-list-dense .mdui-subheader-inset:first-child,.mdui-list-dense .mdui-subheader:first-child{margin-top:-4px}.mdui-list-dense .mdui-list-item{min-height:40px}.mdui-list-dense .mdui-list-item:after{height:40px}.mdui-list-dense .mdui-list-item-icon{width:20px;height:20px;font-size:20px}.mdui-list-dense .mdui-list-item-avatar{min-width:36px;height:36px;min-height:36px}.mdui-list-dense .mdui-list-item-content{padding-top:11px;padding-bottom:11px;font-size:13px;line-height:18px}.mdui-list-dense .mdui-list-item-text{font-size:13px}.mdui-list-dense .mdui-list-item-title~.mdui-list-item-text{margin-top:2px}.mdui-list-dense .mdui-list-item-one-line{height:18px}.mdui-list-dense .mdui-list-item-two-line{height:36px}.mdui-list-dense .mdui-list-item-three-line{height:54px}.mdui-theme-layout-dark .mdui-list .mdui-subheader-inset:before,.mdui-theme-layout-dark .mdui-list .mdui-subheader:before{background-color:rgba(255,255,255,.12)}.mdui-theme-layout-dark .mdui-list .mdui-subheader-inset:first-child:before,.mdui-theme-layout-dark .mdui-list .mdui-subheader:first-child:before{background-color:transparent}.mdui-theme-layout-dark .mdui-list-item{color:#fff}.mdui-theme-layout-dark .mdui-list-item:hover{background-color:rgba(255,255,255,.08)}.mdui-theme-layout-dark .mdui-list-item-icon{color:#fff}.mdui-theme-layout-dark .mdui-list-item-text{opacity:.7}.mdui-theme-layout-dark .mdui-list-item-active{background-color:rgba(255,255,255,.08)}[class*=mdui-color-] .mdui-list-item{color:inherit}[class*=mdui-color-] .mdui-list-item-icon{color:inherit}body.mdui-loaded{-webkit-transition:padding .3s cubic-bezier(0,0,.2,1);transition:padding .3s cubic-bezier(0,0,.2,1)}body.mdui-loaded .mdui-drawer{-webkit-transition:all .3s cubic-bezier(0,0,.2,1);transition:all .3s cubic-bezier(0,0,.2,1)}.mdui-drawer{position:fixed;top:0;bottom:0;left:0;z-index:5000;width:calc(100% - 56px);max-width:280px;-webkit-box-sizing:border-box;box-sizing:border-box;margin:0;overflow-x:hidden;overflow-y:auto;-webkit-overflow-scrolling:touch;white-space:nowrap;will-change:transform}@media (max-width:1023px){.mdui-drawer:not(.mdui-drawer-open){-webkit-box-shadow:none!important;box-shadow:none!important}}@media (min-width:600px){.mdui-drawer{width:calc(100% - 64px);max-width:320px}}@media (min-width:1024px){.mdui-drawer{width:240px;max-width:none}.mdui-drawer.mdui-drawer-close{-webkit-box-shadow:none!important;box-shadow:none!important}}.mdui-drawer-right{right:0;left:auto}@media (max-width:1023px){.mdui-drawer{background-color:#fff;-webkit-box-shadow:0 8px 10px -5px rgba(0,0,0,.2),0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12);box-shadow:0 8px 10px -5px rgba(0,0,0,.2),0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12);-webkit-transform:translateX(-330px);transform:translateX(-330px)}.mdui-drawer-right{-webkit-transform:translateX(330px);transform:translateX(330px)}}@media (max-width:599px){.mdui-drawer{-webkit-transform:translateX(-290px);transform:translateX(-290px)}.mdui-drawer-right{-webkit-transform:translateX(290px);transform:translateX(290px)}}.mdui-drawer-close{-webkit-transform:translateX(-290px);transform:translateX(-290px)}.mdui-drawer-close.mdui-drawer-right{-webkit-transform:translateX(290px);transform:translateX(290px)}@media (min-width:600px){.mdui-drawer-close{-webkit-transform:translateX(-330px);transform:translateX(-330px)}.mdui-drawer-close.mdui-drawer-right{-webkit-transform:translateX(330px);transform:translateX(330px)}}@media (min-width:1024px){.mdui-drawer-close{-webkit-transform:translateX(-250px);transform:translateX(-250px)}.mdui-drawer-close.mdui-drawer-right{-webkit-transform:translateX(250px);transform:translateX(250px)}}.mdui-drawer-open{-webkit-transform:translateX(0)!important;transform:translateX(0)!important}@media (min-width:1024px){.mdui-drawer-body-left{padding-left:240px}.mdui-drawer-body-right{padding-right:240px}.mdui-appbar-with-toolbar .mdui-drawer{top:64px}.mdui-appbar-with-tab .mdui-drawer{top:48px}.mdui-appbar-with-tab-larger .mdui-drawer{top:72px}.mdui-appbar-with-toolbar.mdui-appbar-with-tab .mdui-drawer{top:112px}.mdui-appbar-with-toolbar.mdui-appbar-with-tab-larger .mdui-drawer{top:136px}}.mdui-drawer[class*=mdui-color-]:not(.mdui-color-transparent){-webkit-box-shadow:0 8px 10px -5px rgba(0,0,0,.2),0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12);box-shadow:0 8px 10px -5px rgba(0,0,0,.2),0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12)}.mdui-drawer-full-height{top:0!important}@media (max-width:1023px){.mdui-theme-layout-dark .mdui-drawer{background-color:#424242}}.mdui-dialog{position:fixed;right:0;left:0;z-index:6000;display:none;width:92%;min-width:180px;max-width:728px;max-height:90%;-webkit-box-sizing:border-box;box-sizing:border-box;margin:auto;overflow:hidden;color:#000;background-color:#fff;border-radius:2px;-webkit-box-shadow:0 11px 15px -7px rgba(0,0,0,.2),0 24px 38px 3px rgba(0,0,0,.14),0 9px 46px 8px rgba(0,0,0,.12);box-shadow:0 11px 15px -7px rgba(0,0,0,.2),0 24px 38px 3px rgba(0,0,0,.14),0 9px 46px 8px rgba(0,0,0,.12);opacity:0;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:opacity,visibility,-webkit-transform;transition-property:opacity,visibility,-webkit-transform;transition-property:transform,opacity,visibility;transition-property:transform,opacity,visibility,-webkit-transform;-webkit-transform:scale(.95);transform:scale(.95);will-change:top,opacity,transform}@media (min-width:600px){.mdui-dialog{width:85%;max-height:85%}}@media (min-width:1024px){.mdui-dialog{width:80%;max-height:80%}}.mdui-dialog-open{opacity:1;-webkit-transform:scale(1);transform:scale(1)}.mdui-dialog-title{-webkit-box-sizing:border-box;box-sizing:border-box;font-size:20px;font-weight:500;line-height:24px;text-align:left}.mdui-dialog>.mdui-dialog-title{padding:24px 24px 20px 24px}.mdui-dialog-content{-webkit-box-sizing:border-box;box-sizing:border-box;padding:24px;overflow-y:auto;-webkit-overflow-scrolling:touch;font-size:15px;line-height:1.5;color:rgba(0,0,0,.7)}.mdui-dialog-content>.mdui-dialog-title{padding-bottom:20px}.mdui-dialog-title+.mdui-dialog-content{padding-top:0}.mdui-dialog-actions{-webkit-box-sizing:border-box;box-sizing:border-box;padding:8px;text-align:right}.mdui-dialog-actions .mdui-btn{min-width:64px;margin-left:8px;color:#e91e63}.mdui-dialog-actions .mdui-btn:first-child{margin-left:0}.mdui-dialog-content>.mdui-dialog-actions{padding-top:32px;margin:0 -24px -24px -24px}.mdui-dialog-actions-stacked{padding:8px 0 8px 0}.mdui-dialog-actions-stacked .mdui-btn{width:100%;height:48px;margin:0;line-height:48px!important;text-align:right;border-radius:0}.mdui-theme-accent-amber .mdui-dialog-actions .mdui-btn{color:#ffc107}.mdui-theme-accent-blue .mdui-dialog-actions .mdui-btn{color:#2196f3}.mdui-theme-accent-cyan .mdui-dialog-actions .mdui-btn{color:#00bcd4}.mdui-theme-accent-deep-orange .mdui-dialog-actions .mdui-btn{color:#ff5722}.mdui-theme-accent-deep-purple .mdui-dialog-actions .mdui-btn{color:#673ab7}.mdui-theme-accent-green .mdui-dialog-actions .mdui-btn{color:#4caf50}.mdui-theme-accent-indigo .mdui-dialog-actions .mdui-btn{color:#3f51b5}.mdui-theme-accent-light-blue .mdui-dialog-actions .mdui-btn{color:#03a9f4}.mdui-theme-accent-light-green .mdui-dialog-actions .mdui-btn{color:#8bc34a}.mdui-theme-accent-lime .mdui-dialog-actions .mdui-btn{color:#cddc39}.mdui-theme-accent-orange .mdui-dialog-actions .mdui-btn{color:#ff9800}.mdui-theme-accent-pink .mdui-dialog-actions .mdui-btn{color:#e91e63}.mdui-theme-accent-purple .mdui-dialog-actions .mdui-btn{color:#9c27b0}.mdui-theme-accent-red .mdui-dialog-actions .mdui-btn{color:#f44336}.mdui-theme-accent-teal .mdui-dialog-actions .mdui-btn{color:#009688}.mdui-theme-accent-yellow .mdui-dialog-actions .mdui-btn{color:#ffeb3b}.mdui-theme-layout-dark .mdui-dialog{color:#fff;background-color:#424242}.mdui-theme-layout-dark .mdui-dialog-content{color:rgba(255,255,255,.7)}.mdui-dialog-alert{max-width:448px}.mdui-dialog-confirm{max-width:448px}.mdui-dialog-prompt{max-width:448px}.mdui-dialog-prompt .mdui-textfield{padding-top:0}.mdui-shadow-0{-webkit-box-shadow:none;box-shadow:none}.mdui-shadow-1{-webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12);box-shadow:0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12)}.mdui-shadow-2{-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.mdui-shadow-3{-webkit-box-shadow:0 3px 3px -2px rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 1px 8px 0 rgba(0,0,0,.12);box-shadow:0 3px 3px -2px rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 1px 8px 0 rgba(0,0,0,.12)}.mdui-shadow-4{-webkit-box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12);box-shadow:0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12)}.mdui-shadow-5{-webkit-box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 5px 8px 0 rgba(0,0,0,.14),0 1px 14px 0 rgba(0,0,0,.12);box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 5px 8px 0 rgba(0,0,0,.14),0 1px 14px 0 rgba(0,0,0,.12)}.mdui-shadow-6{-webkit-box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12);box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12)}.mdui-shadow-7{-webkit-box-shadow:0 4px 5px -2px rgba(0,0,0,.2),0 7px 10px 1px rgba(0,0,0,.14),0 2px 16px 1px rgba(0,0,0,.12);box-shadow:0 4px 5px -2px rgba(0,0,0,.2),0 7px 10px 1px rgba(0,0,0,.14),0 2px 16px 1px rgba(0,0,0,.12)}.mdui-shadow-8{-webkit-box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12);box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)}.mdui-shadow-9{-webkit-box-shadow:0 5px 6px -3px rgba(0,0,0,.2),0 9px 12px 1px rgba(0,0,0,.14),0 3px 16px 2px rgba(0,0,0,.12);box-shadow:0 5px 6px -3px rgba(0,0,0,.2),0 9px 12px 1px rgba(0,0,0,.14),0 3px 16px 2px rgba(0,0,0,.12)}.mdui-shadow-10{-webkit-box-shadow:0 6px 6px -3px rgba(0,0,0,.2),0 10px 14px 1px rgba(0,0,0,.14),0 4px 18px 3px rgba(0,0,0,.12);box-shadow:0 6px 6px -3px rgba(0,0,0,.2),0 10px 14px 1px rgba(0,0,0,.14),0 4px 18px 3px rgba(0,0,0,.12)}.mdui-shadow-11{-webkit-box-shadow:0 6px 7px -4px rgba(0,0,0,.2),0 11px 15px 1px rgba(0,0,0,.14),0 4px 20px 3px rgba(0,0,0,.12);box-shadow:0 6px 7px -4px rgba(0,0,0,.2),0 11px 15px 1px rgba(0,0,0,.14),0 4px 20px 3px rgba(0,0,0,.12)}.mdui-shadow-12{-webkit-box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 12px 17px 2px rgba(0,0,0,.14),0 5px 22px 4px rgba(0,0,0,.12);box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 12px 17px 2px rgba(0,0,0,.14),0 5px 22px 4px rgba(0,0,0,.12)}.mdui-shadow-13{-webkit-box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 13px 19px 2px rgba(0,0,0,.14),0 5px 24px 4px rgba(0,0,0,.12);box-shadow:0 7px 8px -4px rgba(0,0,0,.2),0 13px 19px 2px rgba(0,0,0,.14),0 5px 24px 4px rgba(0,0,0,.12)}.mdui-shadow-14{-webkit-box-shadow:0 7px 9px -4px rgba(0,0,0,.2),0 14px 21px 2px rgba(0,0,0,.14),0 5px 26px 4px rgba(0,0,0,.12);box-shadow:0 7px 9px -4px rgba(0,0,0,.2),0 14px 21px 2px rgba(0,0,0,.14),0 5px 26px 4px rgba(0,0,0,.12)}.mdui-shadow-15{-webkit-box-shadow:0 8px 9px -5px rgba(0,0,0,.2),0 15px 22px 2px rgba(0,0,0,.14),0 6px 28px 5px rgba(0,0,0,.12);box-shadow:0 8px 9px -5px rgba(0,0,0,.2),0 15px 22px 2px rgba(0,0,0,.14),0 6px 28px 5px rgba(0,0,0,.12)}.mdui-shadow-16{-webkit-box-shadow:0 8px 10px -5px rgba(0,0,0,.2),0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12);box-shadow:0 8px 10px -5px rgba(0,0,0,.2),0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12)}.mdui-shadow-17{-webkit-box-shadow:0 8px 11px -5px rgba(0,0,0,.2),0 17px 26px 2px rgba(0,0,0,.14),0 6px 32px 5px rgba(0,0,0,.12);box-shadow:0 8px 11px -5px rgba(0,0,0,.2),0 17px 26px 2px rgba(0,0,0,.14),0 6px 32px 5px rgba(0,0,0,.12)}.mdui-shadow-18{-webkit-box-shadow:0 9px 11px -5px rgba(0,0,0,.2),0 18px 28px 2px rgba(0,0,0,.14),0 7px 34px 6px rgba(0,0,0,.12);box-shadow:0 9px 11px -5px rgba(0,0,0,.2),0 18px 28px 2px rgba(0,0,0,.14),0 7px 34px 6px rgba(0,0,0,.12)}.mdui-shadow-19{-webkit-box-shadow:0 9px 12px -6px rgba(0,0,0,.2),0 19px 29px 2px rgba(0,0,0,.14),0 7px 36px 6px rgba(0,0,0,.12);box-shadow:0 9px 12px -6px rgba(0,0,0,.2),0 19px 29px 2px rgba(0,0,0,.14),0 7px 36px 6px rgba(0,0,0,.12)}.mdui-shadow-20{-webkit-box-shadow:0 10px 13px -6px rgba(0,0,0,.2),0 20px 31px 3px rgba(0,0,0,.14),0 8px 38px 7px rgba(0,0,0,.12);box-shadow:0 10px 13px -6px rgba(0,0,0,.2),0 20px 31px 3px rgba(0,0,0,.14),0 8px 38px 7px rgba(0,0,0,.12)}.mdui-shadow-21{-webkit-box-shadow:0 10px 13px -6px rgba(0,0,0,.2),0 21px 33px 3px rgba(0,0,0,.14),0 8px 40px 7px rgba(0,0,0,.12);box-shadow:0 10px 13px -6px rgba(0,0,0,.2),0 21px 33px 3px rgba(0,0,0,.14),0 8px 40px 7px rgba(0,0,0,.12)}.mdui-shadow-22{-webkit-box-shadow:0 10px 14px -6px rgba(0,0,0,.2),0 22px 35px 3px rgba(0,0,0,.14),0 8px 42px 7px rgba(0,0,0,.12);box-shadow:0 10px 14px -6px rgba(0,0,0,.2),0 22px 35px 3px rgba(0,0,0,.14),0 8px 42px 7px rgba(0,0,0,.12)}.mdui-shadow-23{-webkit-box-shadow:0 11px 14px -7px rgba(0,0,0,.2),0 23px 36px 3px rgba(0,0,0,.14),0 9px 44px 8px rgba(0,0,0,.12);box-shadow:0 11px 14px -7px rgba(0,0,0,.2),0 23px 36px 3px rgba(0,0,0,.14),0 9px 44px 8px rgba(0,0,0,.12)}.mdui-shadow-24{-webkit-box-shadow:0 11px 15px -7px rgba(0,0,0,.2),0 24px 38px 3px rgba(0,0,0,.14),0 9px 46px 8px rgba(0,0,0,.12);box-shadow:0 11px 15px -7px rgba(0,0,0,.2),0 24px 38px 3px rgba(0,0,0,.14),0 9px 46px 8px rgba(0,0,0,.12)}.mdui-hoverable{-webkit-transition:-webkit-box-shadow .25s cubic-bezier(.4,0,.2,1);transition:-webkit-box-shadow .25s cubic-bezier(.4,0,.2,1);transition:box-shadow .25s cubic-bezier(.4,0,.2,1);transition:box-shadow .25s cubic-bezier(.4,0,.2,1),-webkit-box-shadow .25s cubic-bezier(.4,0,.2,1);will-change:box-shadow}.mdui-hoverable:focus,.mdui-hoverable:hover{-webkit-box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12);box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)}.mdui-tooltip{position:absolute;z-index:9000;display:inline-block;max-width:180px;min-height:32px;-webkit-box-sizing:border-box;box-sizing:border-box;padding:8px 16px;font-size:14px;font-weight:500;line-height:22px;color:#fff;text-align:left;background-color:rgba(97,97,97,.9);border-radius:2px;opacity:0;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-transition-duration:.15s;transition-duration:.15s;-webkit-transition-property:opacity,-webkit-transform;transition-property:opacity,-webkit-transform;transition-property:opacity,transform;transition-property:opacity,transform,-webkit-transform;-webkit-transform:scale(0);transform:scale(0);will-change:opacity,transform}@media (min-width:1024px){.mdui-tooltip{max-width:200px;min-height:24px;padding:4px 8px;font-size:12px;line-height:18px}}.mdui-tooltip-open{opacity:1;-webkit-transform:scale(1);transform:scale(1)}.mdui-snackbar{position:fixed;z-index:7000;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%;min-height:48px;-webkit-box-sizing:border-box;box-sizing:border-box;padding:0 24px 0 24px;font-size:14px;line-height:20px;color:#fff;background-color:#323232;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;will-change:transform}@media (min-width:600px){.mdui-snackbar{width:auto;min-width:288px;max-width:568px;border-radius:2px}}.mdui-snackbar-bottom,.mdui-snackbar-left-bottom,.mdui-snackbar-left-top,.mdui-snackbar-right-bottom,.mdui-snackbar-right-top,.mdui-snackbar-top{-webkit-transition:-webkit-transform .3s cubic-bezier(.4,0,.2,1);transition:-webkit-transform .3s cubic-bezier(.4,0,.2,1);transition:transform .3s cubic-bezier(.4,0,.2,1);transition:transform .3s cubic-bezier(.4,0,.2,1),-webkit-transform .3s cubic-bezier(.4,0,.2,1)}.mdui-snackbar-bottom,.mdui-snackbar-left-bottom,.mdui-snackbar-right-bottom{bottom:0}.mdui-snackbar-left-top,.mdui-snackbar-right-top,.mdui-snackbar-top{top:0}.mdui-snackbar-bottom,.mdui-snackbar-top{left:50%}@media (min-width:600px){.mdui-snackbar-left-top{top:24px;left:24px}.mdui-snackbar-left-bottom{bottom:24px;left:24px}.mdui-snackbar-right-top{top:24px;right:24px}.mdui-snackbar-right-bottom{right:24px;bottom:24px}}.mdui-snackbar-text{position:relative;max-width:100%;padding:14px 0 14px 0;overflow:hidden;text-overflow:ellipsis}.mdui-snackbar-action{margin-right:-16px;color:#ff80ab;white-space:nowrap}.mdui-theme-accent-amber .mdui-snackbar-action{color:#ffe57f}.mdui-theme-accent-blue .mdui-snackbar-action{color:#82b1ff}.mdui-theme-accent-cyan .mdui-snackbar-action{color:#84ffff}.mdui-theme-accent-deep-orange .mdui-snackbar-action{color:#ff9e80}.mdui-theme-accent-deep-purple .mdui-snackbar-action{color:#b388ff}.mdui-theme-accent-green .mdui-snackbar-action{color:#b9f6ca}.mdui-theme-accent-indigo .mdui-snackbar-action{color:#8c9eff}.mdui-theme-accent-light-blue .mdui-snackbar-action{color:#80d8ff}.mdui-theme-accent-light-green .mdui-snackbar-action{color:#ccff90}.mdui-theme-accent-lime .mdui-snackbar-action{color:#f4ff81}.mdui-theme-accent-orange .mdui-snackbar-action{color:#ffd180}.mdui-theme-accent-pink .mdui-snackbar-action{color:#ff80ab}.mdui-theme-accent-purple .mdui-snackbar-action{color:#ea80fc}.mdui-theme-accent-red .mdui-snackbar-action{color:#ff8a80}.mdui-theme-accent-teal .mdui-snackbar-action{color:#a7ffeb}.mdui-theme-accent-yellow .mdui-snackbar-action{color:#ffff8d}.mdui-theme-layout-dark .mdui-snackbar{background-color:#5d5d5d}.mdui-chip{display:inline-block;height:32px;-webkit-box-sizing:border-box;box-sizing:border-box;margin:2px 0;white-space:nowrap;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#e0e0e0;border-radius:16px;-webkit-transition:-webkit-box-shadow .25s cubic-bezier(.4,0,.2,1);transition:-webkit-box-shadow .25s cubic-bezier(.4,0,.2,1);transition:box-shadow .25s cubic-bezier(.4,0,.2,1);transition:box-shadow .25s cubic-bezier(.4,0,.2,1),-webkit-box-shadow .25s cubic-bezier(.4,0,.2,1);will-change:box-shadow}.mdui-chip:focus,.mdui-chip:hover{-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.mdui-chip:active{background-color:#d6d6d6}.mdui-chip-icon{position:relative;display:inline-block;width:32px;height:32px;margin-right:-4px;overflow:hidden;font-size:18px;line-height:32px;color:#fff;text-align:center;vertical-align:middle;background-color:#989898;border-radius:50%}.mdui-chip-icon .mdui-icon{position:absolute;top:4px;left:4px;color:#fff}.mdui-chip-title{display:inline-block;height:32px;padding-right:12px;padding-left:12px;font-size:14px;line-height:32px;vertical-align:middle}.mdui-chip-delete{display:inline-block;width:24px;height:24px;margin-right:4px;margin-left:-8px;overflow:hidden;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;border-radius:50%;opacity:.54;-webkit-transition:opacity .25s cubic-bezier(.4,0,.2,1);transition:opacity .25s cubic-bezier(.4,0,.2,1);will-change:opacity}.mdui-chip-delete:focus,.mdui-chip-delete:hover{opacity:.87}.mdui-theme-layout-dark .mdui-chip{background-color:#484848}.mdui-theme-layout-dark .mdui-chip:active{background-color:#5d5d5d}.mdui-bottom-nav{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:56px;padding:0;margin:0 auto;overflow:hidden;white-space:nowrap}@media (min-width:600px){.mdui-bottom-nav:before{content:' ';-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.mdui-bottom-nav:after{content:' ';-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}}.mdui-bottom-nav a{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;min-width:32px;max-width:none;padding:8px 12px 10px 12px;overflow:hidden;font-size:12px;color:inherit;text-align:center;text-decoration:none;text-overflow:ellipsis;cursor:pointer;flex-direction:column;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;opacity:.7;-webkit-transition:all .2s cubic-bezier(.4,0,.2,1);transition:all .2s cubic-bezier(.4,0,.2,1);-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;will-change:padding}@media (min-width:600px){.mdui-bottom-nav a{max-width:144px}}.mdui-bottom-nav a .mdui-icon{opacity:.7}.mdui-bottom-nav a label{display:block;width:100%;cursor:pointer;-webkit-transition:-webkit-transform .2s cubic-bezier(.4,0,.2,1);transition:-webkit-transform .2s cubic-bezier(.4,0,.2,1);transition:transform .2s cubic-bezier(.4,0,.2,1);transition:transform .2s cubic-bezier(.4,0,.2,1),-webkit-transform .2s cubic-bezier(.4,0,.2,1);will-change:font-size}.mdui-bottom-nav a .mdui-icon+label{margin-top:6px}.mdui-bottom-nav a.mdui-bottom-nav-active{font-size:14px;color:#3f51b5;opacity:1}.mdui-bottom-nav a.mdui-bottom-nav-active .mdui-icon{opacity:1}.mdui-bottom-nav-text-auto a{min-width:32px;padding-right:0;padding-left:0}@media (min-width:600px){.mdui-bottom-nav-text-auto a{max-width:156px}}.mdui-bottom-nav-text-auto a .mdui-icon{padding-top:16px;-webkit-transition:padding-top .2s cubic-bezier(.4,0,.2,1);transition:padding-top .2s cubic-bezier(.4,0,.2,1);will-change:padding-top}.mdui-bottom-nav-text-auto a label{-webkit-transform:scale(0);transform:scale(0)}.mdui-bottom-nav-text-auto a.mdui-bottom-nav-active{padding-right:18px;padding-left:18px}.mdui-bottom-nav-text-auto a.mdui-bottom-nav-active .mdui-icon{padding-top:0}.mdui-bottom-nav-text-auto a.mdui-bottom-nav-active label{-webkit-transform:scale(1);transform:scale(1)}.mdui-bottom-nav-fixed{padding-bottom:56px}.mdui-bottom-nav-fixed .mdui-bottom-nav{position:fixed;right:0;bottom:0;left:0}.mdui-theme-primary-amber .mdui-bottom-nav a.mdui-bottom-nav-active{color:#ffc107}.mdui-theme-primary-blue .mdui-bottom-nav a.mdui-bottom-nav-active{color:#2196f3}.mdui-theme-primary-blue-grey .mdui-bottom-nav a.mdui-bottom-nav-active{color:#607d8b}.mdui-theme-primary-brown .mdui-bottom-nav a.mdui-bottom-nav-active{color:#795548}.mdui-theme-primary-cyan .mdui-bottom-nav a.mdui-bottom-nav-active{color:#00bcd4}.mdui-theme-primary-deep-orange .mdui-bottom-nav a.mdui-bottom-nav-active{color:#ff5722}.mdui-theme-primary-deep-purple .mdui-bottom-nav a.mdui-bottom-nav-active{color:#673ab7}.mdui-theme-primary-green .mdui-bottom-nav a.mdui-bottom-nav-active{color:#4caf50}.mdui-theme-primary-grey .mdui-bottom-nav a.mdui-bottom-nav-active{color:#9e9e9e}.mdui-theme-primary-indigo .mdui-bottom-nav a.mdui-bottom-nav-active{color:#3f51b5}.mdui-theme-primary-light-blue .mdui-bottom-nav a.mdui-bottom-nav-active{color:#03a9f4}.mdui-theme-primary-light-green .mdui-bottom-nav a.mdui-bottom-nav-active{color:#8bc34a}.mdui-theme-primary-lime .mdui-bottom-nav a.mdui-bottom-nav-active{color:#cddc39}.mdui-theme-primary-orange .mdui-bottom-nav a.mdui-bottom-nav-active{color:#ff9800}.mdui-theme-primary-pink .mdui-bottom-nav a.mdui-bottom-nav-active{color:#e91e63}.mdui-theme-primary-purple .mdui-bottom-nav a.mdui-bottom-nav-active{color:#9c27b0}.mdui-theme-primary-red .mdui-bottom-nav a.mdui-bottom-nav-active{color:#f44336}.mdui-theme-primary-teal .mdui-bottom-nav a.mdui-bottom-nav-active{color:#009688}.mdui-theme-primary-yellow .mdui-bottom-nav a.mdui-bottom-nav-active{color:#ffeb3b}.mdui-bottom-nav[class*=mdui-color-] .mdui-bottom-nav-active{color:inherit!important}.mdui-progress{position:relative;display:block;width:100%;height:4px;overflow:hidden;background-color:rgba(63,81,181,.2);border-radius:2px}.mdui-progress-determinate{position:absolute;top:0;bottom:0;left:0;background-color:#3f51b5;-webkit-transition:width .3s linear;transition:width .3s linear}.mdui-progress-indeterminate{background-color:#3f51b5}.mdui-progress-indeterminate:before{position:absolute;top:0;bottom:0;left:0;content:' ';background-color:inherit;-webkit-animation:mdui-progress-indeterminate 2s linear infinite;animation:mdui-progress-indeterminate 2s linear infinite;will-change:left,width}.mdui-progress-indeterminate:after{position:absolute;top:0;bottom:0;left:0;content:' ';background-color:inherit;-webkit-animation:mdui-progress-indeterminate-short 2s linear infinite;animation:mdui-progress-indeterminate-short 2s linear infinite;will-change:left,width}@-webkit-keyframes mdui-progress-indeterminate{0%{left:0;width:0}50%{left:30%;width:70%}75%{left:100%;width:0}}@keyframes mdui-progress-indeterminate{0%{left:0;width:0}50%{left:30%;width:70%}75%{left:100%;width:0}}@-webkit-keyframes mdui-progress-indeterminate-short{0%{left:0;width:0}50%{left:0;width:0}75%{left:0;width:25%}100%{left:100%;width:0}}@keyframes mdui-progress-indeterminate-short{0%{left:0;width:0}50%{left:0;width:0}75%{left:0;width:25%}100%{left:100%;width:0}}.mdui-theme-primary-amber .mdui-progress{background-color:rgba(255,193,7,.2)}.mdui-theme-primary-amber .mdui-progress-determinate,.mdui-theme-primary-amber .mdui-progress-indeterminate{background-color:#ffc107}.mdui-theme-primary-blue .mdui-progress{background-color:rgba(33,150,243,.2)}.mdui-theme-primary-blue .mdui-progress-determinate,.mdui-theme-primary-blue .mdui-progress-indeterminate{background-color:#2196f3}.mdui-theme-primary-blue-grey .mdui-progress{background-color:rgba(96,125,139,.2)}.mdui-theme-primary-blue-grey .mdui-progress-determinate,.mdui-theme-primary-blue-grey .mdui-progress-indeterminate{background-color:#607d8b}.mdui-theme-primary-brown .mdui-progress{background-color:rgba(121,85,72,.2)}.mdui-theme-primary-brown .mdui-progress-determinate,.mdui-theme-primary-brown .mdui-progress-indeterminate{background-color:#795548}.mdui-theme-primary-cyan .mdui-progress{background-color:rgba(0,188,212,.2)}.mdui-theme-primary-cyan .mdui-progress-determinate,.mdui-theme-primary-cyan .mdui-progress-indeterminate{background-color:#00bcd4}.mdui-theme-primary-deep-orange .mdui-progress{background-color:rgba(255,87,34,.2)}.mdui-theme-primary-deep-orange .mdui-progress-determinate,.mdui-theme-primary-deep-orange .mdui-progress-indeterminate{background-color:#ff5722}.mdui-theme-primary-deep-purple .mdui-progress{background-color:rgba(103,58,183,.2)}.mdui-theme-primary-deep-purple .mdui-progress-determinate,.mdui-theme-primary-deep-purple .mdui-progress-indeterminate{background-color:#673ab7}.mdui-theme-primary-green .mdui-progress{background-color:rgba(76,175,80,.2)}.mdui-theme-primary-green .mdui-progress-determinate,.mdui-theme-primary-green .mdui-progress-indeterminate{background-color:#4caf50}.mdui-theme-primary-grey .mdui-progress{background-color:rgba(158,158,158,.2)}.mdui-theme-primary-grey .mdui-progress-determinate,.mdui-theme-primary-grey .mdui-progress-indeterminate{background-color:#9e9e9e}.mdui-theme-primary-indigo .mdui-progress{background-color:rgba(63,81,181,.2)}.mdui-theme-primary-indigo .mdui-progress-determinate,.mdui-theme-primary-indigo .mdui-progress-indeterminate{background-color:#3f51b5}.mdui-theme-primary-light-blue .mdui-progress{background-color:rgba(3,169,244,.2)}.mdui-theme-primary-light-blue .mdui-progress-determinate,.mdui-theme-primary-light-blue .mdui-progress-indeterminate{background-color:#03a9f4}.mdui-theme-primary-light-green .mdui-progress{background-color:rgba(139,195,74,.2)}.mdui-theme-primary-light-green .mdui-progress-determinate,.mdui-theme-primary-light-green .mdui-progress-indeterminate{background-color:#8bc34a}.mdui-theme-primary-lime .mdui-progress{background-color:rgba(205,220,57,.2)}.mdui-theme-primary-lime .mdui-progress-determinate,.mdui-theme-primary-lime .mdui-progress-indeterminate{background-color:#cddc39}.mdui-theme-primary-orange .mdui-progress{background-color:rgba(255,152,0,.2)}.mdui-theme-primary-orange .mdui-progress-determinate,.mdui-theme-primary-orange .mdui-progress-indeterminate{background-color:#ff9800}.mdui-theme-primary-pink .mdui-progress{background-color:rgba(233,30,99,.2)}.mdui-theme-primary-pink .mdui-progress-determinate,.mdui-theme-primary-pink .mdui-progress-indeterminate{background-color:#e91e63}.mdui-theme-primary-purple .mdui-progress{background-color:rgba(156,39,176,.2)}.mdui-theme-primary-purple .mdui-progress-determinate,.mdui-theme-primary-purple .mdui-progress-indeterminate{background-color:#9c27b0}.mdui-theme-primary-red .mdui-progress{background-color:rgba(244,67,54,.2)}.mdui-theme-primary-red .mdui-progress-determinate,.mdui-theme-primary-red .mdui-progress-indeterminate{background-color:#f44336}.mdui-theme-primary-teal .mdui-progress{background-color:rgba(0,150,136,.2)}.mdui-theme-primary-teal .mdui-progress-determinate,.mdui-theme-primary-teal .mdui-progress-indeterminate{background-color:#009688}.mdui-theme-primary-yellow .mdui-progress{background-color:rgba(255,235,59,.2)}.mdui-theme-primary-yellow .mdui-progress-determinate,.mdui-theme-primary-yellow .mdui-progress-indeterminate{background-color:#ffeb3b}.mdui-spinner{position:relative;display:inline-block;width:28px;height:28px;-webkit-animation:mdui-spinner 1568ms linear infinite;animation:mdui-spinner 1568ms linear infinite}@-webkit-keyframes mdui-spinner{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes mdui-spinner{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.mdui-spinner-layer{position:absolute;width:100%;height:100%;border-color:#3f51b5;opacity:0;opacity:1;-webkit-animation:mdui-spinner-layer-fill-unfill-rotate 5332ms cubic-bezier(.4,0,.2,1) infinite both;animation:mdui-spinner-layer-fill-unfill-rotate 5332ms cubic-bezier(.4,0,.2,1) infinite both}.mdui-spinner-layer-1{border-color:#42a5f5!important;-webkit-animation:mdui-spinner-layer-fill-unfill-rotate 5332ms cubic-bezier(.4,0,.2,1) infinite both,mdui-spinner-layer-1-fade-in-out 5332ms cubic-bezier(.4,0,.2,1) infinite both;animation:mdui-spinner-layer-fill-unfill-rotate 5332ms cubic-bezier(.4,0,.2,1) infinite both,mdui-spinner-layer-1-fade-in-out 5332ms cubic-bezier(.4,0,.2,1) infinite both}.mdui-spinner-layer-2{border-color:#f44336!important;-webkit-animation:mdui-spinner-layer-fill-unfill-rotate 5332ms cubic-bezier(.4,0,.2,1) infinite both,mdui-spinner-layer-2-fade-in-out 5332ms cubic-bezier(.4,0,.2,1) infinite both;animation:mdui-spinner-layer-fill-unfill-rotate 5332ms cubic-bezier(.4,0,.2,1) infinite both,mdui-spinner-layer-2-fade-in-out 5332ms cubic-bezier(.4,0,.2,1) infinite both}.mdui-spinner-layer-3{border-color:#fdd835!important;-webkit-animation:mdui-spinner-layer-fill-unfill-rotate 5332ms cubic-bezier(.4,0,.2,1) infinite both,mdui-spinner-layer-3-fade-in-out 5332ms cubic-bezier(.4,0,.2,1) infinite both;animation:mdui-spinner-layer-fill-unfill-rotate 5332ms cubic-bezier(.4,0,.2,1) infinite both,mdui-spinner-layer-3-fade-in-out 5332ms cubic-bezier(.4,0,.2,1) infinite both}.mdui-spinner-layer-4{border-color:#4caf50!important;-webkit-animation:mdui-spinner-layer-fill-unfill-rotate 5332ms cubic-bezier(.4,0,.2,1) infinite both,mdui-spinner-layer-4-fade-in-out 5332ms cubic-bezier(.4,0,.2,1) infinite both;animation:mdui-spinner-layer-fill-unfill-rotate 5332ms cubic-bezier(.4,0,.2,1) infinite both,mdui-spinner-layer-4-fade-in-out 5332ms cubic-bezier(.4,0,.2,1) infinite both}@-webkit-keyframes mdui-spinner-layer-fill-unfill-rotate{12.5%{-webkit-transform:rotate(135deg);transform:rotate(135deg)}25%{-webkit-transform:rotate(270deg);transform:rotate(270deg)}37.5%{-webkit-transform:rotate(405deg);transform:rotate(405deg)}50%{-webkit-transform:rotate(540deg);transform:rotate(540deg)}62.5%{-webkit-transform:rotate(675deg);transform:rotate(675deg)}75%{-webkit-transform:rotate(810deg);transform:rotate(810deg)}87.5%{-webkit-transform:rotate(945deg);transform:rotate(945deg)}to{-webkit-transform:rotate(1080deg);transform:rotate(1080deg)}}@keyframes mdui-spinner-layer-fill-unfill-rotate{12.5%{-webkit-transform:rotate(135deg);transform:rotate(135deg)}25%{-webkit-transform:rotate(270deg);transform:rotate(270deg)}37.5%{-webkit-transform:rotate(405deg);transform:rotate(405deg)}50%{-webkit-transform:rotate(540deg);transform:rotate(540deg)}62.5%{-webkit-transform:rotate(675deg);transform:rotate(675deg)}75%{-webkit-transform:rotate(810deg);transform:rotate(810deg)}87.5%{-webkit-transform:rotate(945deg);transform:rotate(945deg)}to{-webkit-transform:rotate(1080deg);transform:rotate(1080deg)}}@-webkit-keyframes mdui-spinner-layer-1-fade-in-out{from{opacity:1}25%{opacity:1}26%{opacity:0}89%{opacity:0}90%{opacity:1}100%{opacity:1}}@keyframes mdui-spinner-layer-1-fade-in-out{from{opacity:1}25%{opacity:1}26%{opacity:0}89%{opacity:0}90%{opacity:1}100%{opacity:1}}@-webkit-keyframes mdui-spinner-layer-2-fade-in-out{from{opacity:0}15%{opacity:0}25%{opacity:1}50%{opacity:1}51%{opacity:0}}@keyframes mdui-spinner-layer-2-fade-in-out{from{opacity:0}15%{opacity:0}25%{opacity:1}50%{opacity:1}51%{opacity:0}}@-webkit-keyframes mdui-spinner-layer-3-fade-in-out{from{opacity:0}40%{opacity:0}50%{opacity:1}75%{opacity:1}76%{opacity:0}}@keyframes mdui-spinner-layer-3-fade-in-out{from{opacity:0}40%{opacity:0}50%{opacity:1}75%{opacity:1}76%{opacity:0}}@-webkit-keyframes mdui-spinner-layer-4-fade-in-out{from{opacity:0}65%{opacity:0}75%{opacity:1}90%{opacity:1}100%{opacity:0}}@keyframes mdui-spinner-layer-4-fade-in-out{from{opacity:0}65%{opacity:0}75%{opacity:1}90%{opacity:1}100%{opacity:0}}.mdui-spinner-gap-patch{position:absolute;top:0;left:45%;width:10%;height:100%;overflow:hidden;border-color:inherit}.mdui-spinner-gap-patch .mdui-spinner-circle{left:-450%;width:1000%;-webkit-box-sizing:border-box;box-sizing:border-box}.mdui-spinner-circle-clipper{position:relative;display:inline-block;width:50%;height:100%;overflow:hidden;border-color:inherit}.mdui-spinner-circle-clipper .mdui-spinner-circle{position:absolute;top:0;right:0;bottom:0;width:200%;height:100%;-webkit-box-sizing:border-box;box-sizing:border-box;border-color:inherit;border-style:solid;border-width:3px;border-bottom-color:transparent!important;border-radius:50%;-webkit-animation:none;animation:none}.mdui-spinner-circle-clipper.mdui-spinner-left{float:left}.mdui-spinner-circle-clipper.mdui-spinner-left .mdui-spinner-circle{left:0;border-right-color:transparent!important;-webkit-transform:rotate(129deg);transform:rotate(129deg);-webkit-animation:mdui-spinner-left-spin 1333ms cubic-bezier(.4,0,.2,1) infinite both;animation:mdui-spinner-left-spin 1333ms cubic-bezier(.4,0,.2,1) infinite both}.mdui-spinner-circle-clipper.mdui-spinner-right{float:right}.mdui-spinner-circle-clipper.mdui-spinner-right .mdui-spinner-circle{left:-100%;border-left-color:transparent!important;-webkit-transform:rotate(-129deg);transform:rotate(-129deg);-webkit-animation:mdui-spinner-right-spin 1333ms cubic-bezier(.4,0,.2,1) infinite both;animation:mdui-spinner-right-spin 1333ms cubic-bezier(.4,0,.2,1) infinite both}@-webkit-keyframes mdui-spinner-left-spin{from{-webkit-transform:rotate(130deg);transform:rotate(130deg)}50%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(130deg);transform:rotate(130deg)}}@keyframes mdui-spinner-left-spin{from{-webkit-transform:rotate(130deg);transform:rotate(130deg)}50%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(130deg);transform:rotate(130deg)}}@-webkit-keyframes mdui-spinner-right-spin{from{-webkit-transform:rotate(-130deg);transform:rotate(-130deg)}50%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}to{-webkit-transform:rotate(-130deg);transform:rotate(-130deg)}}@keyframes mdui-spinner-right-spin{from{-webkit-transform:rotate(-130deg);transform:rotate(-130deg)}50%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}to{-webkit-transform:rotate(-130deg);transform:rotate(-130deg)}}.mdui-theme-primary-amber .mdui-spinner-layer{border-color:#ffc107}.mdui-theme-primary-blue .mdui-spinner-layer{border-color:#2196f3}.mdui-theme-primary-blue-grey .mdui-spinner-layer{border-color:#607d8b}.mdui-theme-primary-brown .mdui-spinner-layer{border-color:#795548}.mdui-theme-primary-cyan .mdui-spinner-layer{border-color:#00bcd4}.mdui-theme-primary-deep-orange .mdui-spinner-layer{border-color:#ff5722}.mdui-theme-primary-deep-purple .mdui-spinner-layer{border-color:#673ab7}.mdui-theme-primary-green .mdui-spinner-layer{border-color:#4caf50}.mdui-theme-primary-grey .mdui-spinner-layer{border-color:#9e9e9e}.mdui-theme-primary-indigo .mdui-spinner-layer{border-color:#3f51b5}.mdui-theme-primary-light-blue .mdui-spinner-layer{border-color:#03a9f4}.mdui-theme-primary-light-green .mdui-spinner-layer{border-color:#8bc34a}.mdui-theme-primary-lime .mdui-spinner-layer{border-color:#cddc39}.mdui-theme-primary-orange .mdui-spinner-layer{border-color:#ff9800}.mdui-theme-primary-pink .mdui-spinner-layer{border-color:#e91e63}.mdui-theme-primary-purple .mdui-spinner-layer{border-color:#9c27b0}.mdui-theme-primary-red .mdui-spinner-layer{border-color:#f44336}.mdui-theme-primary-teal .mdui-spinner-layer{border-color:#009688}.mdui-theme-primary-yellow .mdui-spinner-layer{border-color:#ffeb3b}.mdui-panel{width:100%;-webkit-box-sizing:border-box;box-sizing:border-box}.mdui-panel-item{color:rgba(0,0,0,.87);background-color:#fff;border-bottom:1px solid rgba(0,0,0,.12);-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);-webkit-transition:margin .3s cubic-bezier(.4,0,.2,1);transition:margin .3s cubic-bezier(.4,0,.2,1);will-change:margin}.mdui-panel-item:last-child{border-bottom:none}.mdui-panel-item-header{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%;height:48px;-webkit-box-sizing:border-box;box-sizing:border-box;padding:0 24px;overflow:hidden;font-size:15px;text-overflow:ellipsis;white-space:nowrap;cursor:pointer;-webkit-transition:all .3s cubic-bezier(.4,0,.2,1);transition:all .3s cubic-bezier(.4,0,.2,1);-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;will-change:height,background-color}.mdui-panel-item-header:active{background-color:#eee}.mdui-panel-item-title{width:36%;min-width:36%;-webkit-box-sizing:border-box;box-sizing:border-box;padding-right:16px;overflow:hidden;font-weight:500;text-overflow:ellipsis;white-space:nowrap}.mdui-panel-item-summary{-webkit-box-sizing:border-box;box-sizing:border-box;padding-right:16px;overflow:hidden;color:rgba(0,0,0,.54);text-overflow:ellipsis;white-space:nowrap;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.mdui-panel-item-arrow{position:absolute;top:12px;right:24px;color:rgba(0,0,0,.54);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-transition:all .3s cubic-bezier(.4,0,.2,1);transition:all .3s cubic-bezier(.4,0,.2,1);-webkit-transform:rotate(0);transform:rotate(0);will-change:transform,top}.mdui-panel-item-summary+.mdui-panel-item-arrow{position:relative;top:0!important;right:0}.mdui-panel-item-body{height:0;padding:0 24px;overflow:hidden;-webkit-transition:height .3s cubic-bezier(.4,0,.2,1);transition:height .3s cubic-bezier(.4,0,.2,1);will-change:height}.mdui-panel-item-body:after,.mdui-panel-item-body:before{display:table;content:" "}.mdui-panel-item-body:after{clear:both}.mdui-panel-item-body:after,.mdui-panel-item-body:before{display:table;content:" "}.mdui-panel-item-body:after{clear:both}.mdui-panel-item-body:after{height:16px}.mdui-panel-item-actions{display:block;width:100%;padding:16px 24px 0 24px;margin:16px -24px 0 -24px;text-align:right;border-top:1px solid rgba(0,0,0,.12)}.mdui-panel-item-actions .mdui-btn{margin-left:8px}.mdui-panel-item-actions .mdui-btn:first-child{margin-left:0}.mdui-panel-gapless{-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)}.mdui-panel-gapless .mdui-panel-item{-webkit-box-shadow:none;box-shadow:none}.mdui-panel-gapless .mdui-panel-item-open{margin-top:0;margin-bottom:0}.mdui-panel-popout .mdui-panel-item-open{margin-right:-16px;margin-left:-16px}.mdui-panel-item-open{height:auto;margin-top:16px;margin-bottom:16px}.mdui-panel-item-open>.mdui-panel-item-header{height:64px}.mdui-panel-item-open>.mdui-panel-item-header .mdui-panel-item-arrow{top:20px;-webkit-transform:rotate(180deg);transform:rotate(180deg)}.mdui-panel-item-open>.mdui-panel-item-body{height:auto}.mdui-theme-layout-dark .mdui-panel-item{color:#fff;background-color:#303030;border-bottom:1px solid rgba(255,255,255,.12)}.mdui-theme-layout-dark .mdui-panel-item:last-child{border-bottom:none}.mdui-theme-layout-dark .mdui-panel-item-header:active{background-color:#424242}.mdui-theme-layout-dark .mdui-panel-item-summary{color:rgba(255,255,255,.7)}.mdui-theme-layout-dark .mdui-panel-item-arrow{color:#fff}.mdui-theme-layout-dark .mdui-panel-item-actions{border-top:1px solid rgba(255,255,255,.12)}.mdui-menu{position:fixed;z-index:99999;display:block;width:168px;-webkit-box-sizing:border-box;box-sizing:border-box;padding:8px 0;margin:0;overflow-y:auto;-webkit-overflow-scrolling:touch;font-size:16px;color:rgba(0,0,0,.87);list-style:none;visibility:hidden;background-color:#fff;border-radius:2px;-webkit-box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12);box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12);opacity:0;-webkit-transition-timing-function:cubic-bezier(0,0,.2,1);transition-timing-function:cubic-bezier(0,0,.2,1);-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:opacity,visibility,-webkit-transform;transition-property:opacity,visibility,-webkit-transform;transition-property:transform,opacity,visibility;transition-property:transform,opacity,visibility,-webkit-transform;-webkit-transform:scale(0);transform:scale(0);will-change:transform,opacity,visibility}.mdui-menu .mdui-divider{margin-top:8px;margin-bottom:8px}.mdui-menu-open{visibility:visible;opacity:1;-webkit-transform:scale(1);transform:scale(1)}.mdui-menu-closing{visibility:visible;opacity:0;-webkit-transform:scale(1);transform:scale(1)}.mdui-menu-item{position:relative}.mdui-menu-item>a{position:relative;display:block;height:48px;padding:0 16px;overflow:hidden;line-height:48px;color:inherit;text-decoration:none;text-overflow:ellipsis;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mdui-menu-item>a:hover{background-color:#eee}.mdui-menu-item>.mdui-menu{position:absolute;-webkit-box-shadow:0 5px 6px -3px rgba(0,0,0,.2),0 9px 12px 1px rgba(0,0,0,.14),0 3px 16px 2px rgba(0,0,0,.12);box-shadow:0 5px 6px -3px rgba(0,0,0,.2),0 9px 12px 1px rgba(0,0,0,.14),0 3px 16px 2px rgba(0,0,0,.12)}.mdui-menu-item[disabled]>a{color:rgba(0,0,0,.38)!important;cursor:default}.mdui-menu-item[disabled]>a:hover{background-color:inherit!important}.mdui-menu-item[disabled]>a .mdui-icon{color:rgba(0,0,0,.26)}.mdui-menu-item-active{background-color:#eee}.mdui-menu-item-icon{display:inline-block;width:40px;-webkit-box-sizing:border-box;box-sizing:border-box;padding-right:16px;color:rgba(0,0,0,.54)}.mdui-menu-item-helper{float:right}.mdui-menu-item-more{float:right;width:24px;height:24px;margin:4px 0;background-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M7%2010l5%205%205-5z%22%20opacity%3D%220.54%22%20transform%3D%22rotate(-90%2012%2C12.5)%22%20fill%3D%22%23000000%22%2F%3E%3C%2Fsvg%3E%0A")}.mdui-menu-cascade{width:320px;padding:16px 0;overflow-y:visible;font-size:15px}.mdui-menu-cascade>.mdui-menu-item>a{height:32px;padding:0 24px;line-height:32px}.mdui-theme-layout-dark .mdui-menu{color:#fff;background-color:#424242}.mdui-theme-layout-dark .mdui-menu-item>a:hover{background-color:#616161}.mdui-theme-layout-dark .mdui-menu-item[disabled]>a{color:rgba(255,255,255,.5)!important}.mdui-theme-layout-dark .mdui-menu-item[disabled]>a .mdui-icon{color:rgba(255,255,255,.3)}.mdui-theme-layout-dark .mdui-menu-item-active{background-color:#616161}.mdui-theme-layout-dark .mdui-menu-item-icon{color:#fff}.mdui-theme-layout-dark .mdui-menu-item-more{background-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M7%2010l5%205%205-5z%22%20transform%3D%22rotate(-90%2012%2C12.5)%22%20fill%3D%22%23FFFFFF%22%2F%3E%3C%2Fsvg%3E%0A")} +/*# sourceMappingURL=mdui.min.css.map */ diff --git a/others/css/nprogress.css b/others/css/nprogress.css new file mode 100644 index 0000000..d81f081 --- /dev/null +++ b/others/css/nprogress.css @@ -0,0 +1,2 @@ +/* Make clicks pass-through */ +#nprogress{pointer-events:none}#nprogress .bar{background:#29d;position:fixed;z-index:1031;top:0;left:0;width:100%;height:3.2px}#nprogress .peg{display:block;position:absolute;right:0;width:100px;height:100%;box-shadow:0 0 10px #29d,0 0 5px #29d;opacity:1.0;-webkit-transform:rotate(3deg) translate(0px,-4px);-ms-transform:rotate(3deg) translate(0px,-4px);transform:rotate(3deg) translate(0px,-4px)}#nprogress .spinner{display:block;position:fixed;z-index:1031;top:15px;right:15px}#nprogress .spinner-icon{width:18px;height:18px;box-sizing:border-box;border:solid 2px transparent;border-top-color:#29d;border-left-color:#29d;border-radius:50%;-webkit-animation:nprogress-spinner 400ms linear infinite;animation:nprogress-spinner 400ms linear infinite}.nprogress-custom-parent{overflow:hidden;position:relative}.nprogress-custom-parent #nprogress .spinner,.nprogress-custom-parent #nprogress .bar{position:absolute}@-webkit-keyframes nprogress-spinner{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg)}}@keyframes nprogress-spinner{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}} \ No newline at end of file diff --git a/others/css/setting.min.css b/others/css/setting.min.css new file mode 100644 index 0000000..dfd6a35 --- /dev/null +++ b/others/css/setting.min.css @@ -0,0 +1,8 @@ +@charset "UTF-8"; +/** + * Castle + * Author ohmyga ( https://ohmyga.cn ) + * Github https://github.com/ohmyga233/castle-Typecho-Theme + * Version 0.1.0 + **/ +.moe-panel{width:90%;color:#fff;padding:20px;margin-left:auto;margin-right:auto;border-radius:3px;background-color:rgba(0,0,0,0.6)}.moe-panel a{color:#ec407a}.moe-panel .moe-title{display:block;font-size:36px;font-weight:500;text-align:center;margin-bottom:10px;text-shadow:0 2px 1px #424242}.moe-panel .moe-current-ver{display:block;font-size:16px}.moe-panel .moe-new-ver{display:block;font-size:16px}.moe-panel .moe-announcement{display:block;font-size:16px;margin-bottom:36px}.moe-panel .moe-btn:hover{background:#d81b60;transition:all .29s ease}.moe-panel .moe-btn:active{background-color:#c2185b;transition:all .29s ease}.typecho-option-submit{right:25px;bottom:10px;float:right;z-index:233;position:fixed}.btn{border-radius:5px}.btn{will-change:box-shadow;transition:box-shadow .25s cubic-bezier(.4,0,.2,1);transition:-webkit-box-shadow .25s cubic-bezier(.4,0,.2,1);-webkit-transition:-webkit-box-shadow .25s cubic-bezier(.4,0,.2,1);transition:box-shadow .25s cubic-bezier(.4,0,.2,1),-webkit-box-shadow .25s cubic-bezier(.4,0,.2,1)}.btn:focus,.btn:hover{box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12);-webkit-box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)}textarea{border-radius:5px;height:240px!important}input{border-radius:5px} \ No newline at end of file diff --git a/others/fonts/iconfont/iconfont.eot b/others/fonts/iconfont/iconfont.eot new file mode 100644 index 0000000..80a12fa Binary files /dev/null and b/others/fonts/iconfont/iconfont.eot differ diff --git a/others/fonts/iconfont/iconfont.svg b/others/fonts/iconfont/iconfont.svg new file mode 100644 index 0000000..16542f3 --- /dev/null +++ b/others/fonts/iconfont/iconfont.svg @@ -0,0 +1,143 @@ + + + + + +Created by iconfont + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/others/fonts/iconfont/iconfont.ttf b/others/fonts/iconfont/iconfont.ttf new file mode 100644 index 0000000..de52daf Binary files /dev/null and b/others/fonts/iconfont/iconfont.ttf differ diff --git a/others/fonts/iconfont/iconfont.woff b/others/fonts/iconfont/iconfont.woff new file mode 100644 index 0000000..006e795 Binary files /dev/null and b/others/fonts/iconfont/iconfont.woff differ diff --git a/others/fonts/iconfont/iconfont.woff2 b/others/fonts/iconfont/iconfont.woff2 new file mode 100644 index 0000000..fd7fb75 Binary files /dev/null and b/others/fonts/iconfont/iconfont.woff2 differ diff --git a/others/fonts/roboto/LICENSE.txt b/others/fonts/roboto/LICENSE.txt new file mode 100644 index 0000000..261eeb9 --- /dev/null +++ b/others/fonts/roboto/LICENSE.txt @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/others/fonts/roboto/Roboto-Black.woff b/others/fonts/roboto/Roboto-Black.woff new file mode 100644 index 0000000..9b72779 Binary files /dev/null and b/others/fonts/roboto/Roboto-Black.woff differ diff --git a/others/fonts/roboto/Roboto-Black.woff2 b/others/fonts/roboto/Roboto-Black.woff2 new file mode 100644 index 0000000..9559f02 Binary files /dev/null and b/others/fonts/roboto/Roboto-Black.woff2 differ diff --git a/others/fonts/roboto/Roboto-BlackItalic.woff b/others/fonts/roboto/Roboto-BlackItalic.woff new file mode 100644 index 0000000..609bdf4 Binary files /dev/null and b/others/fonts/roboto/Roboto-BlackItalic.woff differ diff --git a/others/fonts/roboto/Roboto-BlackItalic.woff2 b/others/fonts/roboto/Roboto-BlackItalic.woff2 new file mode 100644 index 0000000..5cb417b Binary files /dev/null and b/others/fonts/roboto/Roboto-BlackItalic.woff2 differ diff --git a/others/fonts/roboto/Roboto-Bold.woff b/others/fonts/roboto/Roboto-Bold.woff new file mode 100644 index 0000000..93a1d5a Binary files /dev/null and b/others/fonts/roboto/Roboto-Bold.woff differ diff --git a/others/fonts/roboto/Roboto-Bold.woff2 b/others/fonts/roboto/Roboto-Bold.woff2 new file mode 100644 index 0000000..715ac19 Binary files /dev/null and b/others/fonts/roboto/Roboto-Bold.woff2 differ diff --git a/others/fonts/roboto/Roboto-BoldItalic.woff b/others/fonts/roboto/Roboto-BoldItalic.woff new file mode 100644 index 0000000..f1d7598 Binary files /dev/null and b/others/fonts/roboto/Roboto-BoldItalic.woff differ diff --git a/others/fonts/roboto/Roboto-BoldItalic.woff2 b/others/fonts/roboto/Roboto-BoldItalic.woff2 new file mode 100644 index 0000000..c91e0f8 Binary files /dev/null and b/others/fonts/roboto/Roboto-BoldItalic.woff2 differ diff --git a/others/fonts/roboto/Roboto-Light.woff b/others/fonts/roboto/Roboto-Light.woff new file mode 100644 index 0000000..404afba Binary files /dev/null and b/others/fonts/roboto/Roboto-Light.woff differ diff --git a/others/fonts/roboto/Roboto-Light.woff2 b/others/fonts/roboto/Roboto-Light.woff2 new file mode 100644 index 0000000..5f26201 Binary files /dev/null and b/others/fonts/roboto/Roboto-Light.woff2 differ diff --git a/others/fonts/roboto/Roboto-LightItalic.woff b/others/fonts/roboto/Roboto-LightItalic.woff new file mode 100644 index 0000000..07117c5 Binary files /dev/null and b/others/fonts/roboto/Roboto-LightItalic.woff differ diff --git a/others/fonts/roboto/Roboto-LightItalic.woff2 b/others/fonts/roboto/Roboto-LightItalic.woff2 new file mode 100644 index 0000000..5fa7eed Binary files /dev/null and b/others/fonts/roboto/Roboto-LightItalic.woff2 differ diff --git a/others/fonts/roboto/Roboto-Medium.woff b/others/fonts/roboto/Roboto-Medium.woff new file mode 100644 index 0000000..b18e6b8 Binary files /dev/null and b/others/fonts/roboto/Roboto-Medium.woff differ diff --git a/others/fonts/roboto/Roboto-Medium.woff2 b/others/fonts/roboto/Roboto-Medium.woff2 new file mode 100644 index 0000000..f9f6913 Binary files /dev/null and b/others/fonts/roboto/Roboto-Medium.woff2 differ diff --git a/others/fonts/roboto/Roboto-MediumItalic.woff b/others/fonts/roboto/Roboto-MediumItalic.woff new file mode 100644 index 0000000..2be7d89 Binary files /dev/null and b/others/fonts/roboto/Roboto-MediumItalic.woff differ diff --git a/others/fonts/roboto/Roboto-MediumItalic.woff2 b/others/fonts/roboto/Roboto-MediumItalic.woff2 new file mode 100644 index 0000000..9b7b828 Binary files /dev/null and b/others/fonts/roboto/Roboto-MediumItalic.woff2 differ diff --git a/others/fonts/roboto/Roboto-Regular.woff b/others/fonts/roboto/Roboto-Regular.woff new file mode 100644 index 0000000..2f53e7c Binary files /dev/null and b/others/fonts/roboto/Roboto-Regular.woff differ diff --git a/others/fonts/roboto/Roboto-Regular.woff2 b/others/fonts/roboto/Roboto-Regular.woff2 new file mode 100644 index 0000000..1d1539e Binary files /dev/null and b/others/fonts/roboto/Roboto-Regular.woff2 differ diff --git a/others/fonts/roboto/Roboto-RegularItalic.woff b/others/fonts/roboto/Roboto-RegularItalic.woff new file mode 100644 index 0000000..60f95dd Binary files /dev/null and b/others/fonts/roboto/Roboto-RegularItalic.woff differ diff --git a/others/fonts/roboto/Roboto-RegularItalic.woff2 b/others/fonts/roboto/Roboto-RegularItalic.woff2 new file mode 100644 index 0000000..75495c3 Binary files /dev/null and b/others/fonts/roboto/Roboto-RegularItalic.woff2 differ diff --git a/others/fonts/roboto/Roboto-Thin.woff b/others/fonts/roboto/Roboto-Thin.woff new file mode 100644 index 0000000..e115692 Binary files /dev/null and b/others/fonts/roboto/Roboto-Thin.woff differ diff --git a/others/fonts/roboto/Roboto-Thin.woff2 b/others/fonts/roboto/Roboto-Thin.woff2 new file mode 100644 index 0000000..a26400d Binary files /dev/null and b/others/fonts/roboto/Roboto-Thin.woff2 differ diff --git a/others/fonts/roboto/Roboto-ThinItalic.woff b/others/fonts/roboto/Roboto-ThinItalic.woff new file mode 100644 index 0000000..eab0271 Binary files /dev/null and b/others/fonts/roboto/Roboto-ThinItalic.woff differ diff --git a/others/fonts/roboto/Roboto-ThinItalic.woff2 b/others/fonts/roboto/Roboto-ThinItalic.woff2 new file mode 100644 index 0000000..f00aafc Binary files /dev/null and b/others/fonts/roboto/Roboto-ThinItalic.woff2 differ diff --git a/others/icons/material-icons/LICENSE.txt b/others/icons/material-icons/LICENSE.txt new file mode 100644 index 0000000..dc8853a --- /dev/null +++ b/others/icons/material-icons/LICENSE.txt @@ -0,0 +1,393 @@ +Attribution 4.0 International + +======================================================================= + +Creative Commons Corporation ("Creative Commons") is not a law firm and +does not provide legal services or legal advice. Distribution of +Creative Commons public licenses does not create a lawyer-client or +other relationship. Creative Commons makes its licenses and related +information available on an "as-is" basis. Creative Commons gives no +warranties regarding its licenses, any material licensed under their +terms and conditions, or any related information. Creative Commons +disclaims all liability for damages resulting from their use to the +fullest extent possible. + +Using Creative Commons Public Licenses + +Creative Commons public licenses provide a standard set of terms and +conditions that creators and other rights holders may use to share +original works of authorship and other material subject to copyright +and certain other rights specified in the public license below. The +following considerations are for informational purposes only, are not +exhaustive, and do not form part of our licenses. + + Considerations for licensors: Our public licenses are + intended for use by those authorized to give the public + permission to use material in ways otherwise restricted by + copyright and certain other rights. Our licenses are + irrevocable. Licensors should read and understand the terms + and conditions of the license they choose before applying it. + Licensors should also secure all rights necessary before + applying our licenses so that the public can reuse the + material as expected. Licensors should clearly mark any + material not subject to the license. This includes other CC- + licensed material, or material used under an exception or + limitation to copyright. More considerations for licensors: + wiki.creativecommons.org/Considerations_for_licensors + + Considerations for the public: By using one of our public + licenses, a licensor grants the public permission to use the + licensed material under specified terms and conditions. If + the licensor's permission is not necessary for any reason--for + example, because of any applicable exception or limitation to + copyright--then that use is not regulated by the license. Our + licenses grant only permissions under copyright and certain + other rights that a licensor has authority to grant. Use of + the licensed material may still be restricted for other + reasons, including because others have copyright or other + rights in the material. A licensor may make special requests, + such as asking that all changes be marked or described. + Although not required by our licenses, you are encouraged to + respect those requests where reasonable. More_considerations + for the public: + wiki.creativecommons.org/Considerations_for_licensees + +======================================================================= + +Creative Commons Attribution 4.0 International Public License + +By exercising the Licensed Rights (defined below), You accept and agree +to be bound by the terms and conditions of this Creative Commons +Attribution 4.0 International Public License ("Public License"). To the +extent this Public License may be interpreted as a contract, You are +granted the Licensed Rights in consideration of Your acceptance of +these terms and conditions, and the Licensor grants You such rights in +consideration of benefits the Licensor receives from making the +Licensed Material available under these terms and conditions. + + +Section 1 -- Definitions. + + a. Adapted Material means material subject to Copyright and Similar + Rights that is derived from or based upon the Licensed Material + and in which the Licensed Material is translated, altered, + arranged, transformed, or otherwise modified in a manner requiring + permission under the Copyright and Similar Rights held by the + Licensor. For purposes of this Public License, where the Licensed + Material is a musical work, performance, or sound recording, + Adapted Material is always produced where the Licensed Material is + synched in timed relation with a moving image. + + b. Adapter's License means the license You apply to Your Copyright + and Similar Rights in Your contributions to Adapted Material in + accordance with the terms and conditions of this Public License. + + c. Copyright and Similar Rights means copyright and/or similar rights + closely related to copyright including, without limitation, + performance, broadcast, sound recording, and Sui Generis Database + Rights, without regard to how the rights are labeled or + categorized. For purposes of this Public License, the rights + specified in Section 2(b)(1)-(2) are not Copyright and Similar + Rights. + + d. Effective Technological Measures means those measures that, in the + absence of proper authority, may not be circumvented under laws + fulfilling obligations under Article 11 of the WIPO Copyright + Treaty adopted on December 20, 1996, and/or similar international + agreements. + + e. Exceptions and Limitations means fair use, fair dealing, and/or + any other exception or limitation to Copyright and Similar Rights + that applies to Your use of the Licensed Material. + + f. Licensed Material means the artistic or literary work, database, + or other material to which the Licensor applied this Public + License. + + g. Licensed Rights means the rights granted to You subject to the + terms and conditions of this Public License, which are limited to + all Copyright and Similar Rights that apply to Your use of the + Licensed Material and that the Licensor has authority to license. + + h. Licensor means the individual(s) or entity(ies) granting rights + under this Public License. + + i. Share means to provide material to the public by any means or + process that requires permission under the Licensed Rights, such + as reproduction, public display, public performance, distribution, + dissemination, communication, or importation, and to make material + available to the public including in ways that members of the + public may access the material from a place and at a time + individually chosen by them. + + j. Sui Generis Database Rights means rights other than copyright + resulting from Directive 96/9/EC of the European Parliament and of + the Council of 11 March 1996 on the legal protection of databases, + as amended and/or succeeded, as well as other essentially + equivalent rights anywhere in the world. + + k. You means the individual or entity exercising the Licensed Rights + under this Public License. Your has a corresponding meaning. + + +Section 2 -- Scope. + + a. License grant. + + 1. Subject to the terms and conditions of this Public License, + the Licensor hereby grants You a worldwide, royalty-free, + non-sublicensable, non-exclusive, irrevocable license to + exercise the Licensed Rights in the Licensed Material to: + + a. reproduce and Share the Licensed Material, in whole or + in part; and + + b. produce, reproduce, and Share Adapted Material. + + 2. Exceptions and Limitations. For the avoidance of doubt, where + Exceptions and Limitations apply to Your use, this Public + License does not apply, and You do not need to comply with + its terms and conditions. + + 3. Term. The term of this Public License is specified in Section + 6(a). + + 4. Media and formats; technical modifications allowed. The + Licensor authorizes You to exercise the Licensed Rights in + all media and formats whether now known or hereafter created, + and to make technical modifications necessary to do so. The + Licensor waives and/or agrees not to assert any right or + authority to forbid You from making technical modifications + necessary to exercise the Licensed Rights, including + technical modifications necessary to circumvent Effective + Technological Measures. For purposes of this Public License, + simply making modifications authorized by this Section 2(a) + (4) never produces Adapted Material. + + 5. Downstream recipients. + + a. Offer from the Licensor -- Licensed Material. Every + recipient of the Licensed Material automatically + receives an offer from the Licensor to exercise the + Licensed Rights under the terms and conditions of this + Public License. + + b. No downstream restrictions. You may not offer or impose + any additional or different terms or conditions on, or + apply any Effective Technological Measures to, the + Licensed Material if doing so restricts exercise of the + Licensed Rights by any recipient of the Licensed + Material. + + 6. No endorsement. Nothing in this Public License constitutes or + may be construed as permission to assert or imply that You + are, or that Your use of the Licensed Material is, connected + with, or sponsored, endorsed, or granted official status by, + the Licensor or others designated to receive attribution as + provided in Section 3(a)(1)(A)(i). + + b. Other rights. + + 1. Moral rights, such as the right of integrity, are not + licensed under this Public License, nor are publicity, + privacy, and/or other similar personality rights; however, to + the extent possible, the Licensor waives and/or agrees not to + assert any such rights held by the Licensor to the limited + extent necessary to allow You to exercise the Licensed + Rights, but not otherwise. + + 2. Patent and trademark rights are not licensed under this + Public License. + + 3. To the extent possible, the Licensor waives any right to + collect royalties from You for the exercise of the Licensed + Rights, whether directly or through a collecting society + under any voluntary or waivable statutory or compulsory + licensing scheme. In all other cases the Licensor expressly + reserves any right to collect such royalties. + + +Section 3 -- License Conditions. + +Your exercise of the Licensed Rights is expressly made subject to the +following conditions. + + a. Attribution. + + 1. If You Share the Licensed Material (including in modified + form), You must: + + a. retain the following if it is supplied by the Licensor + with the Licensed Material: + + i. identification of the creator(s) of the Licensed + Material and any others designated to receive + attribution, in any reasonable manner requested by + the Licensor (including by pseudonym if + designated); + + ii. a copyright notice; + + iii. a notice that refers to this Public License; + + iv. a notice that refers to the disclaimer of + warranties; + + v. a URI or hyperlink to the Licensed Material to the + extent reasonably practicable; + + b. indicate if You modified the Licensed Material and + retain an indication of any previous modifications; and + + c. indicate the Licensed Material is licensed under this + Public License, and include the text of, or the URI or + hyperlink to, this Public License. + + 2. You may satisfy the conditions in Section 3(a)(1) in any + reasonable manner based on the medium, means, and context in + which You Share the Licensed Material. For example, it may be + reasonable to satisfy the conditions by providing a URI or + hyperlink to a resource that includes the required + information. + + 3. If requested by the Licensor, You must remove any of the + information required by Section 3(a)(1)(A) to the extent + reasonably practicable. + + 4. If You Share Adapted Material You produce, the Adapter's + License You apply must not prevent recipients of the Adapted + Material from complying with this Public License. + + +Section 4 -- Sui Generis Database Rights. + +Where the Licensed Rights include Sui Generis Database Rights that +apply to Your use of the Licensed Material: + + a. for the avoidance of doubt, Section 2(a)(1) grants You the right + to extract, reuse, reproduce, and Share all or a substantial + portion of the contents of the database; + + b. if You include all or a substantial portion of the database + contents in a database in which You have Sui Generis Database + Rights, then the database in which You have Sui Generis Database + Rights (but not its individual contents) is Adapted Material; and + + c. You must comply with the conditions in Section 3(a) if You Share + all or a substantial portion of the contents of the database. + +For the avoidance of doubt, this Section 4 supplements and does not +replace Your obligations under this Public License where the Licensed +Rights include other Copyright and Similar Rights. + + +Section 5 -- Disclaimer of Warranties and Limitation of Liability. + + a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE + EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS + AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF + ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, + IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, + WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, + ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT + KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT + ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. + + b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE + TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, + NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, + INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, + COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR + USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN + ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR + DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR + IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. + + c. The disclaimer of warranties and limitation of liability provided + above shall be interpreted in a manner that, to the extent + possible, most closely approximates an absolute disclaimer and + waiver of all liability. + + +Section 6 -- Term and Termination. + + a. This Public License applies for the term of the Copyright and + Similar Rights licensed here. However, if You fail to comply with + this Public License, then Your rights under this Public License + terminate automatically. + + b. Where Your right to use the Licensed Material has terminated under + Section 6(a), it reinstates: + + 1. automatically as of the date the violation is cured, provided + it is cured within 30 days of Your discovery of the + violation; or + + 2. upon express reinstatement by the Licensor. + + For the avoidance of doubt, this Section 6(b) does not affect any + right the Licensor may have to seek remedies for Your violations + of this Public License. + + c. For the avoidance of doubt, the Licensor may also offer the + Licensed Material under separate terms or conditions or stop + distributing the Licensed Material at any time; however, doing so + will not terminate this Public License. + + d. Sections 1, 5, 6, 7, and 8 survive termination of this Public + License. + + +Section 7 -- Other Terms and Conditions. + + a. The Licensor shall not be bound by any additional or different + terms or conditions communicated by You unless expressly agreed. + + b. Any arrangements, understandings, or agreements regarding the + Licensed Material not stated herein are separate from and + independent of the terms and conditions of this Public License. + + +Section 8 -- Interpretation. + + a. For the avoidance of doubt, this Public License does not, and + shall not be interpreted to, reduce, limit, restrict, or impose + conditions on any use of the Licensed Material that could lawfully + be made without permission under this Public License. + + b. To the extent possible, if any provision of this Public License is + deemed unenforceable, it shall be automatically reformed to the + minimum extent necessary to make it enforceable. If the provision + cannot be reformed, it shall be severed from this Public License + without affecting the enforceability of the remaining terms and + conditions. + + c. No term or condition of this Public License will be waived and no + failure to comply consented to unless expressly agreed to by the + Licensor. + + d. Nothing in this Public License constitutes or may be interpreted + as a limitation upon, or waiver of, any privileges and immunities + that apply to the Licensor or You, including from the legal + processes of any jurisdiction or authority. + + +======================================================================= + +Creative Commons is not a party to its public licenses. +Notwithstanding, Creative Commons may elect to apply one of its public +licenses to material it publishes and in those instances will be +considered the "Licensor." Except for the limited purpose of indicating +that material is shared under a Creative Commons public license or as +otherwise permitted by the Creative Commons policies published at +creativecommons.org/policies, Creative Commons does not authorize the +use of the trademark "Creative Commons" or any other trademark or logo +of Creative Commons without its prior written consent including, +without limitation, in connection with any unauthorized modifications +to any of its public licenses or any other arrangements, +understandings, or agreements concerning use of licensed material. For +the avoidance of doubt, this paragraph does not form part of the public +licenses. + +Creative Commons may be contacted at creativecommons.org. diff --git a/others/icons/material-icons/MaterialIcons-Regular.ijmap b/others/icons/material-icons/MaterialIcons-Regular.ijmap new file mode 100644 index 0000000..d9f1d25 --- /dev/null +++ b/others/icons/material-icons/MaterialIcons-Regular.ijmap @@ -0,0 +1 @@ +{"icons":{"e84d":{"name":"3d Rotation"},"eb3b":{"name":"Ac Unit"},"e190":{"name":"Access Alarm"},"e191":{"name":"Access Alarms"},"e192":{"name":"Access Time"},"e84e":{"name":"Accessibility"},"e914":{"name":"Accessible"},"e84f":{"name":"Account Balance"},"e850":{"name":"Account Balance Wallet"},"e851":{"name":"Account Box"},"e853":{"name":"Account Circle"},"e60e":{"name":"Adb"},"e145":{"name":"Add"},"e439":{"name":"Add A Photo"},"e193":{"name":"Add Alarm"},"e003":{"name":"Add Alert"},"e146":{"name":"Add Box"},"e147":{"name":"Add Circle"},"e148":{"name":"Add Circle Outline"},"e567":{"name":"Add Location"},"e854":{"name":"Add Shopping Cart"},"e39d":{"name":"Add To Photos"},"e05c":{"name":"Add To Queue"},"e39e":{"name":"Adjust"},"e630":{"name":"Airline Seat Flat"},"e631":{"name":"Airline Seat Flat Angled"},"e632":{"name":"Airline Seat Individual Suite"},"e633":{"name":"Airline Seat Legroom Extra"},"e634":{"name":"Airline Seat Legroom Normal"},"e635":{"name":"Airline Seat Legroom Reduced"},"e636":{"name":"Airline Seat Recline Extra"},"e637":{"name":"Airline Seat Recline Normal"},"e195":{"name":"Airplanemode Active"},"e194":{"name":"Airplanemode Inactive"},"e055":{"name":"Airplay"},"eb3c":{"name":"Airport Shuttle"},"e855":{"name":"Alarm"},"e856":{"name":"Alarm Add"},"e857":{"name":"Alarm Off"},"e858":{"name":"Alarm On"},"e019":{"name":"Album"},"eb3d":{"name":"All Inclusive"},"e90b":{"name":"All Out"},"e859":{"name":"Android"},"e85a":{"name":"Announcement"},"e5c3":{"name":"Apps"},"e149":{"name":"Archive"},"e5c4":{"name":"Arrow Back"},"e5db":{"name":"Arrow Downward"},"e5c5":{"name":"Arrow Drop Down"},"e5c6":{"name":"Arrow Drop Down Circle"},"e5c7":{"name":"Arrow Drop Up"},"e5c8":{"name":"Arrow Forward"},"e5d8":{"name":"Arrow Upward"},"e060":{"name":"Art Track"},"e85b":{"name":"Aspect Ratio"},"e85c":{"name":"Assessment"},"e85d":{"name":"Assignment"},"e85e":{"name":"Assignment Ind"},"e85f":{"name":"Assignment Late"},"e860":{"name":"Assignment Return"},"e861":{"name":"Assignment Returned"},"e862":{"name":"Assignment Turned In"},"e39f":{"name":"Assistant"},"e3a0":{"name":"Assistant Photo"},"e226":{"name":"Attach File"},"e227":{"name":"Attach Money"},"e2bc":{"name":"Attachment"},"e3a1":{"name":"Audiotrack"},"e863":{"name":"Autorenew"},"e01b":{"name":"Av Timer"},"e14a":{"name":"Backspace"},"e864":{"name":"Backup"},"e19c":{"name":"Battery Alert"},"e1a3":{"name":"Battery Charging Full"},"e1a4":{"name":"Battery Full"},"e1a5":{"name":"Battery Std"},"e1a6":{"name":"Battery Unknown"},"eb3e":{"name":"Beach Access"},"e52d":{"name":"Beenhere"},"e14b":{"name":"Block"},"e1a7":{"name":"Bluetooth"},"e60f":{"name":"Bluetooth Audio"},"e1a8":{"name":"Bluetooth Connected"},"e1a9":{"name":"Bluetooth Disabled"},"e1aa":{"name":"Bluetooth Searching"},"e3a2":{"name":"Blur Circular"},"e3a3":{"name":"Blur Linear"},"e3a4":{"name":"Blur Off"},"e3a5":{"name":"Blur On"},"e865":{"name":"Book"},"e866":{"name":"Bookmark"},"e867":{"name":"Bookmark Border"},"e228":{"name":"Border All"},"e229":{"name":"Border Bottom"},"e22a":{"name":"Border Clear"},"e22b":{"name":"Border Color"},"e22c":{"name":"Border Horizontal"},"e22d":{"name":"Border Inner"},"e22e":{"name":"Border Left"},"e22f":{"name":"Border Outer"},"e230":{"name":"Border Right"},"e231":{"name":"Border Style"},"e232":{"name":"Border Top"},"e233":{"name":"Border Vertical"},"e06b":{"name":"Branding Watermark"},"e3a6":{"name":"Brightness 1"},"e3a7":{"name":"Brightness 2"},"e3a8":{"name":"Brightness 3"},"e3a9":{"name":"Brightness 4"},"e3aa":{"name":"Brightness 5"},"e3ab":{"name":"Brightness 6"},"e3ac":{"name":"Brightness 7"},"e1ab":{"name":"Brightness Auto"},"e1ac":{"name":"Brightness High"},"e1ad":{"name":"Brightness Low"},"e1ae":{"name":"Brightness Medium"},"e3ad":{"name":"Broken Image"},"e3ae":{"name":"Brush"},"e6dd":{"name":"Bubble Chart"},"e868":{"name":"Bug Report"},"e869":{"name":"Build"},"e43c":{"name":"Burst Mode"},"e0af":{"name":"Business"},"eb3f":{"name":"Business Center"},"e86a":{"name":"Cached"},"e7e9":{"name":"Cake"},"e0b0":{"name":"Call"},"e0b1":{"name":"Call End"},"e0b2":{"name":"Call Made"},"e0b3":{"name":"Call Merge"},"e0b4":{"name":"Call Missed"},"e0e4":{"name":"Call Missed Outgoing"},"e0b5":{"name":"Call Received"},"e0b6":{"name":"Call Split"},"e06c":{"name":"Call To Action"},"e3af":{"name":"Camera"},"e3b0":{"name":"Camera Alt"},"e8fc":{"name":"Camera Enhance"},"e3b1":{"name":"Camera Front"},"e3b2":{"name":"Camera Rear"},"e3b3":{"name":"Camera Roll"},"e5c9":{"name":"Cancel"},"e8f6":{"name":"Card Giftcard"},"e8f7":{"name":"Card Membership"},"e8f8":{"name":"Card Travel"},"eb40":{"name":"Casino"},"e307":{"name":"Cast"},"e308":{"name":"Cast Connected"},"e3b4":{"name":"Center Focus Strong"},"e3b5":{"name":"Center Focus Weak"},"e86b":{"name":"Change History"},"e0b7":{"name":"Chat"},"e0ca":{"name":"Chat Bubble"},"e0cb":{"name":"Chat Bubble Outline"},"e5ca":{"name":"Check"},"e834":{"name":"Check Box"},"e835":{"name":"Check Box Outline Blank"},"e86c":{"name":"Check Circle"},"e5cb":{"name":"Chevron Left"},"e5cc":{"name":"Chevron Right"},"eb41":{"name":"Child Care"},"eb42":{"name":"Child Friendly"},"e86d":{"name":"Chrome Reader Mode"},"e86e":{"name":"Class"},"e14c":{"name":"Clear"},"e0b8":{"name":"Clear All"},"e5cd":{"name":"Close"},"e01c":{"name":"Closed Caption"},"e2bd":{"name":"Cloud"},"e2be":{"name":"Cloud Circle"},"e2bf":{"name":"Cloud Done"},"e2c0":{"name":"Cloud Download"},"e2c1":{"name":"Cloud Off"},"e2c2":{"name":"Cloud Queue"},"e2c3":{"name":"Cloud Upload"},"e86f":{"name":"Code"},"e3b6":{"name":"Collections"},"e431":{"name":"Collections Bookmark"},"e3b7":{"name":"Color Lens"},"e3b8":{"name":"Colorize"},"e0b9":{"name":"Comment"},"e3b9":{"name":"Compare"},"e915":{"name":"Compare Arrows"},"e30a":{"name":"Computer"},"e638":{"name":"Confirmation Number"},"e0d0":{"name":"Contact Mail"},"e0cf":{"name":"Contact Phone"},"e0ba":{"name":"Contacts"},"e14d":{"name":"Content Copy"},"e14e":{"name":"Content Cut"},"e14f":{"name":"Content Paste"},"e3ba":{"name":"Control Point"},"e3bb":{"name":"Control Point Duplicate"},"e90c":{"name":"Copyright"},"e150":{"name":"Create"},"e2cc":{"name":"Create New Folder"},"e870":{"name":"Credit Card"},"e3be":{"name":"Crop"},"e3bc":{"name":"Crop 16 9"},"e3bd":{"name":"Crop 3 2"},"e3bf":{"name":"Crop 5 4"},"e3c0":{"name":"Crop 7 5"},"e3c1":{"name":"Crop Din"},"e3c2":{"name":"Crop Free"},"e3c3":{"name":"Crop Landscape"},"e3c4":{"name":"Crop Original"},"e3c5":{"name":"Crop Portrait"},"e437":{"name":"Crop Rotate"},"e3c6":{"name":"Crop Square"},"e871":{"name":"Dashboard"},"e1af":{"name":"Data Usage"},"e916":{"name":"Date Range"},"e3c7":{"name":"Dehaze"},"e872":{"name":"Delete"},"e92b":{"name":"Delete Forever"},"e16c":{"name":"Delete Sweep"},"e873":{"name":"Description"},"e30b":{"name":"Desktop Mac"},"e30c":{"name":"Desktop Windows"},"e3c8":{"name":"Details"},"e30d":{"name":"Developer Board"},"e1b0":{"name":"Developer Mode"},"e335":{"name":"Device Hub"},"e1b1":{"name":"Devices"},"e337":{"name":"Devices Other"},"e0bb":{"name":"Dialer Sip"},"e0bc":{"name":"Dialpad"},"e52e":{"name":"Directions"},"e52f":{"name":"Directions Bike"},"e532":{"name":"Directions Boat"},"e530":{"name":"Directions Bus"},"e531":{"name":"Directions Car"},"e534":{"name":"Directions Railway"},"e566":{"name":"Directions Run"},"e533":{"name":"Directions Subway"},"e535":{"name":"Directions Transit"},"e536":{"name":"Directions Walk"},"e610":{"name":"Disc Full"},"e875":{"name":"Dns"},"e612":{"name":"Do Not Disturb"},"e611":{"name":"Do Not Disturb Alt"},"e643":{"name":"Do Not Disturb Off"},"e644":{"name":"Do Not Disturb On"},"e30e":{"name":"Dock"},"e7ee":{"name":"Domain"},"e876":{"name":"Done"},"e877":{"name":"Done All"},"e917":{"name":"Donut Large"},"e918":{"name":"Donut Small"},"e151":{"name":"Drafts"},"e25d":{"name":"Drag Handle"},"e613":{"name":"Drive Eta"},"e1b2":{"name":"Dvr"},"e3c9":{"name":"Edit"},"e568":{"name":"Edit Location"},"e8fb":{"name":"Eject"},"e0be":{"name":"Email"},"e63f":{"name":"Enhanced Encryption"},"e01d":{"name":"Equalizer"},"e000":{"name":"Error"},"e001":{"name":"Error Outline"},"e926":{"name":"Euro Symbol"},"e56d":{"name":"Ev Station"},"e878":{"name":"Event"},"e614":{"name":"Event Available"},"e615":{"name":"Event Busy"},"e616":{"name":"Event Note"},"e903":{"name":"Event Seat"},"e879":{"name":"Exit To App"},"e5ce":{"name":"Expand Less"},"e5cf":{"name":"Expand More"},"e01e":{"name":"Explicit"},"e87a":{"name":"Explore"},"e3ca":{"name":"Exposure"},"e3cb":{"name":"Exposure Neg 1"},"e3cc":{"name":"Exposure Neg 2"},"e3cd":{"name":"Exposure Plus 1"},"e3ce":{"name":"Exposure Plus 2"},"e3cf":{"name":"Exposure Zero"},"e87b":{"name":"Extension"},"e87c":{"name":"Face"},"e01f":{"name":"Fast Forward"},"e020":{"name":"Fast Rewind"},"e87d":{"name":"Favorite"},"e87e":{"name":"Favorite Border"},"e06d":{"name":"Featured Play List"},"e06e":{"name":"Featured Video"},"e87f":{"name":"Feedback"},"e05d":{"name":"Fiber Dvr"},"e061":{"name":"Fiber Manual Record"},"e05e":{"name":"Fiber New"},"e06a":{"name":"Fiber Pin"},"e062":{"name":"Fiber Smart Record"},"e2c4":{"name":"File Download"},"e2c6":{"name":"File Upload"},"e3d3":{"name":"Filter"},"e3d0":{"name":"Filter 1"},"e3d1":{"name":"Filter 2"},"e3d2":{"name":"Filter 3"},"e3d4":{"name":"Filter 4"},"e3d5":{"name":"Filter 5"},"e3d6":{"name":"Filter 6"},"e3d7":{"name":"Filter 7"},"e3d8":{"name":"Filter 8"},"e3d9":{"name":"Filter 9"},"e3da":{"name":"Filter 9 Plus"},"e3db":{"name":"Filter B And W"},"e3dc":{"name":"Filter Center Focus"},"e3dd":{"name":"Filter Drama"},"e3de":{"name":"Filter Frames"},"e3df":{"name":"Filter Hdr"},"e152":{"name":"Filter List"},"e3e0":{"name":"Filter None"},"e3e2":{"name":"Filter Tilt Shift"},"e3e3":{"name":"Filter Vintage"},"e880":{"name":"Find In Page"},"e881":{"name":"Find Replace"},"e90d":{"name":"Fingerprint"},"e5dc":{"name":"First Page"},"eb43":{"name":"Fitness Center"},"e153":{"name":"Flag"},"e3e4":{"name":"Flare"},"e3e5":{"name":"Flash Auto"},"e3e6":{"name":"Flash Off"},"e3e7":{"name":"Flash On"},"e539":{"name":"Flight"},"e904":{"name":"Flight Land"},"e905":{"name":"Flight Takeoff"},"e3e8":{"name":"Flip"},"e882":{"name":"Flip To Back"},"e883":{"name":"Flip To Front"},"e2c7":{"name":"Folder"},"e2c8":{"name":"Folder Open"},"e2c9":{"name":"Folder Shared"},"e617":{"name":"Folder Special"},"e167":{"name":"Font Download"},"e234":{"name":"Format Align Center"},"e235":{"name":"Format Align Justify"},"e236":{"name":"Format Align Left"},"e237":{"name":"Format Align Right"},"e238":{"name":"Format Bold"},"e239":{"name":"Format Clear"},"e23a":{"name":"Format Color Fill"},"e23b":{"name":"Format Color Reset"},"e23c":{"name":"Format Color Text"},"e23d":{"name":"Format Indent Decrease"},"e23e":{"name":"Format Indent Increase"},"e23f":{"name":"Format Italic"},"e240":{"name":"Format Line Spacing"},"e241":{"name":"Format List Bulleted"},"e242":{"name":"Format List Numbered"},"e243":{"name":"Format Paint"},"e244":{"name":"Format Quote"},"e25e":{"name":"Format Shapes"},"e245":{"name":"Format Size"},"e246":{"name":"Format Strikethrough"},"e247":{"name":"Format Textdirection L To R"},"e248":{"name":"Format Textdirection R To L"},"e249":{"name":"Format Underlined"},"e0bf":{"name":"Forum"},"e154":{"name":"Forward"},"e056":{"name":"Forward 10"},"e057":{"name":"Forward 30"},"e058":{"name":"Forward 5"},"eb44":{"name":"Free Breakfast"},"e5d0":{"name":"Fullscreen"},"e5d1":{"name":"Fullscreen Exit"},"e24a":{"name":"Functions"},"e927":{"name":"G Translate"},"e30f":{"name":"Gamepad"},"e021":{"name":"Games"},"e90e":{"name":"Gavel"},"e155":{"name":"Gesture"},"e884":{"name":"Get App"},"e908":{"name":"Gif"},"eb45":{"name":"Golf Course"},"e1b3":{"name":"Gps Fixed"},"e1b4":{"name":"Gps Not Fixed"},"e1b5":{"name":"Gps Off"},"e885":{"name":"Grade"},"e3e9":{"name":"Gradient"},"e3ea":{"name":"Grain"},"e1b8":{"name":"Graphic Eq"},"e3eb":{"name":"Grid Off"},"e3ec":{"name":"Grid On"},"e7ef":{"name":"Group"},"e7f0":{"name":"Group Add"},"e886":{"name":"Group Work"},"e052":{"name":"Hd"},"e3ed":{"name":"Hdr Off"},"e3ee":{"name":"Hdr On"},"e3f1":{"name":"Hdr Strong"},"e3f2":{"name":"Hdr Weak"},"e310":{"name":"Headset"},"e311":{"name":"Headset Mic"},"e3f3":{"name":"Healing"},"e023":{"name":"Hearing"},"e887":{"name":"Help"},"e8fd":{"name":"Help Outline"},"e024":{"name":"High Quality"},"e25f":{"name":"Highlight"},"e888":{"name":"Highlight Off"},"e889":{"name":"History"},"e88a":{"name":"Home"},"eb46":{"name":"Hot Tub"},"e53a":{"name":"Hotel"},"e88b":{"name":"Hourglass Empty"},"e88c":{"name":"Hourglass Full"},"e902":{"name":"Http"},"e88d":{"name":"Https"},"e3f4":{"name":"Image"},"e3f5":{"name":"Image Aspect Ratio"},"e0e0":{"name":"Import Contacts"},"e0c3":{"name":"Import Export"},"e912":{"name":"Important Devices"},"e156":{"name":"Inbox"},"e909":{"name":"Indeterminate Check Box"},"e88e":{"name":"Info"},"e88f":{"name":"Info Outline"},"e890":{"name":"Input"},"e24b":{"name":"Insert Chart"},"e24c":{"name":"Insert Comment"},"e24d":{"name":"Insert Drive File"},"e24e":{"name":"Insert Emoticon"},"e24f":{"name":"Insert Invitation"},"e250":{"name":"Insert Link"},"e251":{"name":"Insert Photo"},"e891":{"name":"Invert Colors"},"e0c4":{"name":"Invert Colors Off"},"e3f6":{"name":"Iso"},"e312":{"name":"Keyboard"},"e313":{"name":"Keyboard Arrow Down"},"e314":{"name":"Keyboard Arrow Left"},"e315":{"name":"Keyboard Arrow Right"},"e316":{"name":"Keyboard Arrow Up"},"e317":{"name":"Keyboard Backspace"},"e318":{"name":"Keyboard Capslock"},"e31a":{"name":"Keyboard Hide"},"e31b":{"name":"Keyboard Return"},"e31c":{"name":"Keyboard Tab"},"e31d":{"name":"Keyboard Voice"},"eb47":{"name":"Kitchen"},"e892":{"name":"Label"},"e893":{"name":"Label Outline"},"e3f7":{"name":"Landscape"},"e894":{"name":"Language"},"e31e":{"name":"Laptop"},"e31f":{"name":"Laptop Chromebook"},"e320":{"name":"Laptop Mac"},"e321":{"name":"Laptop Windows"},"e5dd":{"name":"Last Page"},"e895":{"name":"Launch"},"e53b":{"name":"Layers"},"e53c":{"name":"Layers Clear"},"e3f8":{"name":"Leak Add"},"e3f9":{"name":"Leak Remove"},"e3fa":{"name":"Lens"},"e02e":{"name":"Library Add"},"e02f":{"name":"Library Books"},"e030":{"name":"Library Music"},"e90f":{"name":"Lightbulb Outline"},"e919":{"name":"Line Style"},"e91a":{"name":"Line Weight"},"e260":{"name":"Linear Scale"},"e157":{"name":"Link"},"e438":{"name":"Linked Camera"},"e896":{"name":"List"},"e0c6":{"name":"Live Help"},"e639":{"name":"Live Tv"},"e53f":{"name":"Local Activity"},"e53d":{"name":"Local Airport"},"e53e":{"name":"Local Atm"},"e540":{"name":"Local Bar"},"e541":{"name":"Local Cafe"},"e542":{"name":"Local Car Wash"},"e543":{"name":"Local Convenience Store"},"e556":{"name":"Local Dining"},"e544":{"name":"Local Drink"},"e545":{"name":"Local Florist"},"e546":{"name":"Local Gas Station"},"e547":{"name":"Local Grocery Store"},"e548":{"name":"Local Hospital"},"e549":{"name":"Local Hotel"},"e54a":{"name":"Local Laundry Service"},"e54b":{"name":"Local Library"},"e54c":{"name":"Local Mall"},"e54d":{"name":"Local Movies"},"e54e":{"name":"Local Offer"},"e54f":{"name":"Local Parking"},"e550":{"name":"Local Pharmacy"},"e551":{"name":"Local Phone"},"e552":{"name":"Local Pizza"},"e553":{"name":"Local Play"},"e554":{"name":"Local Post Office"},"e555":{"name":"Local Printshop"},"e557":{"name":"Local See"},"e558":{"name":"Local Shipping"},"e559":{"name":"Local Taxi"},"e7f1":{"name":"Location City"},"e1b6":{"name":"Location Disabled"},"e0c7":{"name":"Location Off"},"e0c8":{"name":"Location On"},"e1b7":{"name":"Location Searching"},"e897":{"name":"Lock"},"e898":{"name":"Lock Open"},"e899":{"name":"Lock Outline"},"e3fc":{"name":"Looks"},"e3fb":{"name":"Looks 3"},"e3fd":{"name":"Looks 4"},"e3fe":{"name":"Looks 5"},"e3ff":{"name":"Looks 6"},"e400":{"name":"Looks One"},"e401":{"name":"Looks Two"},"e028":{"name":"Loop"},"e402":{"name":"Loupe"},"e16d":{"name":"Low Priority"},"e89a":{"name":"Loyalty"},"e158":{"name":"Mail"},"e0e1":{"name":"Mail Outline"},"e55b":{"name":"Map"},"e159":{"name":"Markunread"},"e89b":{"name":"Markunread Mailbox"},"e322":{"name":"Memory"},"e5d2":{"name":"Menu"},"e252":{"name":"Merge Type"},"e0c9":{"name":"Message"},"e029":{"name":"Mic"},"e02a":{"name":"Mic None"},"e02b":{"name":"Mic Off"},"e618":{"name":"Mms"},"e253":{"name":"Mode Comment"},"e254":{"name":"Mode Edit"},"e263":{"name":"Monetization On"},"e25c":{"name":"Money Off"},"e403":{"name":"Monochrome Photos"},"e7f2":{"name":"Mood"},"e7f3":{"name":"Mood Bad"},"e619":{"name":"More"},"e5d3":{"name":"More Horiz"},"e5d4":{"name":"More Vert"},"e91b":{"name":"Motorcycle"},"e323":{"name":"Mouse"},"e168":{"name":"Move To Inbox"},"e02c":{"name":"Movie"},"e404":{"name":"Movie Creation"},"e43a":{"name":"Movie Filter"},"e6df":{"name":"Multiline Chart"},"e405":{"name":"Music Note"},"e063":{"name":"Music Video"},"e55c":{"name":"My Location"},"e406":{"name":"Nature"},"e407":{"name":"Nature People"},"e408":{"name":"Navigate Before"},"e409":{"name":"Navigate Next"},"e55d":{"name":"Navigation"},"e569":{"name":"Near Me"},"e1b9":{"name":"Network Cell"},"e640":{"name":"Network Check"},"e61a":{"name":"Network Locked"},"e1ba":{"name":"Network Wifi"},"e031":{"name":"New Releases"},"e16a":{"name":"Next Week"},"e1bb":{"name":"Nfc"},"e641":{"name":"No Encryption"},"e0cc":{"name":"No Sim"},"e033":{"name":"Not Interested"},"e06f":{"name":"Note"},"e89c":{"name":"Note Add"},"e7f4":{"name":"Notifications"},"e7f7":{"name":"Notifications Active"},"e7f5":{"name":"Notifications None"},"e7f6":{"name":"Notifications Off"},"e7f8":{"name":"Notifications Paused"},"e90a":{"name":"Offline Pin"},"e63a":{"name":"Ondemand Video"},"e91c":{"name":"Opacity"},"e89d":{"name":"Open In Browser"},"e89e":{"name":"Open In New"},"e89f":{"name":"Open With"},"e7f9":{"name":"Pages"},"e8a0":{"name":"Pageview"},"e40a":{"name":"Palette"},"e925":{"name":"Pan Tool"},"e40b":{"name":"Panorama"},"e40c":{"name":"Panorama Fish Eye"},"e40d":{"name":"Panorama Horizontal"},"e40e":{"name":"Panorama Vertical"},"e40f":{"name":"Panorama Wide Angle"},"e7fa":{"name":"Party Mode"},"e034":{"name":"Pause"},"e035":{"name":"Pause Circle Filled"},"e036":{"name":"Pause Circle Outline"},"e8a1":{"name":"Payment"},"e7fb":{"name":"People"},"e7fc":{"name":"People Outline"},"e8a2":{"name":"Perm Camera Mic"},"e8a3":{"name":"Perm Contact Calendar"},"e8a4":{"name":"Perm Data Setting"},"e8a5":{"name":"Perm Device Information"},"e8a6":{"name":"Perm Identity"},"e8a7":{"name":"Perm Media"},"e8a8":{"name":"Perm Phone Msg"},"e8a9":{"name":"Perm Scan Wifi"},"e7fd":{"name":"Person"},"e7fe":{"name":"Person Add"},"e7ff":{"name":"Person Outline"},"e55a":{"name":"Person Pin"},"e56a":{"name":"Person Pin Circle"},"e63b":{"name":"Personal Video"},"e91d":{"name":"Pets"},"e0cd":{"name":"Phone"},"e324":{"name":"Phone Android"},"e61b":{"name":"Phone Bluetooth Speaker"},"e61c":{"name":"Phone Forwarded"},"e61d":{"name":"Phone In Talk"},"e325":{"name":"Phone Iphone"},"e61e":{"name":"Phone Locked"},"e61f":{"name":"Phone Missed"},"e620":{"name":"Phone Paused"},"e326":{"name":"Phonelink"},"e0db":{"name":"Phonelink Erase"},"e0dc":{"name":"Phonelink Lock"},"e327":{"name":"Phonelink Off"},"e0dd":{"name":"Phonelink Ring"},"e0de":{"name":"Phonelink Setup"},"e410":{"name":"Photo"},"e411":{"name":"Photo Album"},"e412":{"name":"Photo Camera"},"e43b":{"name":"Photo Filter"},"e413":{"name":"Photo Library"},"e432":{"name":"Photo Size Select Actual"},"e433":{"name":"Photo Size Select Large"},"e434":{"name":"Photo Size Select Small"},"e415":{"name":"Picture As Pdf"},"e8aa":{"name":"Picture In Picture"},"e911":{"name":"Picture In Picture Alt"},"e6c4":{"name":"Pie Chart"},"e6c5":{"name":"Pie Chart Outlined"},"e55e":{"name":"Pin Drop"},"e55f":{"name":"Place"},"e037":{"name":"Play Arrow"},"e038":{"name":"Play Circle Filled"},"e039":{"name":"Play Circle Outline"},"e906":{"name":"Play For Work"},"e03b":{"name":"Playlist Add"},"e065":{"name":"Playlist Add Check"},"e05f":{"name":"Playlist Play"},"e800":{"name":"Plus One"},"e801":{"name":"Poll"},"e8ab":{"name":"Polymer"},"eb48":{"name":"Pool"},"e0ce":{"name":"Portable Wifi Off"},"e416":{"name":"Portrait"},"e63c":{"name":"Power"},"e336":{"name":"Power Input"},"e8ac":{"name":"Power Settings New"},"e91e":{"name":"Pregnant Woman"},"e0df":{"name":"Present To All"},"e8ad":{"name":"Print"},"e645":{"name":"Priority High"},"e80b":{"name":"Public"},"e255":{"name":"Publish"},"e8ae":{"name":"Query Builder"},"e8af":{"name":"Question Answer"},"e03c":{"name":"Queue"},"e03d":{"name":"Queue Music"},"e066":{"name":"Queue Play Next"},"e03e":{"name":"Radio"},"e837":{"name":"Radio Button Checked"},"e836":{"name":"Radio Button Unchecked"},"e560":{"name":"Rate Review"},"e8b0":{"name":"Receipt"},"e03f":{"name":"Recent Actors"},"e91f":{"name":"Record Voice Over"},"e8b1":{"name":"Redeem"},"e15a":{"name":"Redo"},"e5d5":{"name":"Refresh"},"e15b":{"name":"Remove"},"e15c":{"name":"Remove Circle"},"e15d":{"name":"Remove Circle Outline"},"e067":{"name":"Remove From Queue"},"e417":{"name":"Remove Red Eye"},"e928":{"name":"Remove Shopping Cart"},"e8fe":{"name":"Reorder"},"e040":{"name":"Repeat"},"e041":{"name":"Repeat One"},"e042":{"name":"Replay"},"e059":{"name":"Replay 10"},"e05a":{"name":"Replay 30"},"e05b":{"name":"Replay 5"},"e15e":{"name":"Reply"},"e15f":{"name":"Reply All"},"e160":{"name":"Report"},"e8b2":{"name":"Report Problem"},"e56c":{"name":"Restaurant"},"e561":{"name":"Restaurant Menu"},"e8b3":{"name":"Restore"},"e929":{"name":"Restore Page"},"e0d1":{"name":"Ring Volume"},"e8b4":{"name":"Room"},"eb49":{"name":"Room Service"},"e418":{"name":"Rotate 90 Degrees Ccw"},"e419":{"name":"Rotate Left"},"e41a":{"name":"Rotate Right"},"e920":{"name":"Rounded Corner"},"e328":{"name":"Router"},"e921":{"name":"Rowing"},"e0e5":{"name":"Rss Feed"},"e642":{"name":"Rv Hookup"},"e562":{"name":"Satellite"},"e161":{"name":"Save"},"e329":{"name":"Scanner"},"e8b5":{"name":"Schedule"},"e80c":{"name":"School"},"e1be":{"name":"Screen Lock Landscape"},"e1bf":{"name":"Screen Lock Portrait"},"e1c0":{"name":"Screen Lock Rotation"},"e1c1":{"name":"Screen Rotation"},"e0e2":{"name":"Screen Share"},"e623":{"name":"Sd Card"},"e1c2":{"name":"Sd Storage"},"e8b6":{"name":"Search"},"e32a":{"name":"Security"},"e162":{"name":"Select All"},"e163":{"name":"Send"},"e811":{"name":"Sentiment Dissatisfied"},"e812":{"name":"Sentiment Neutral"},"e813":{"name":"Sentiment Satisfied"},"e814":{"name":"Sentiment Very Dissatisfied"},"e815":{"name":"Sentiment Very Satisfied"},"e8b8":{"name":"Settings"},"e8b9":{"name":"Settings Applications"},"e8ba":{"name":"Settings Backup Restore"},"e8bb":{"name":"Settings Bluetooth"},"e8bd":{"name":"Settings Brightness"},"e8bc":{"name":"Settings Cell"},"e8be":{"name":"Settings Ethernet"},"e8bf":{"name":"Settings Input Antenna"},"e8c0":{"name":"Settings Input Component"},"e8c1":{"name":"Settings Input Composite"},"e8c2":{"name":"Settings Input Hdmi"},"e8c3":{"name":"Settings Input Svideo"},"e8c4":{"name":"Settings Overscan"},"e8c5":{"name":"Settings Phone"},"e8c6":{"name":"Settings Power"},"e8c7":{"name":"Settings Remote"},"e1c3":{"name":"Settings System Daydream"},"e8c8":{"name":"Settings Voice"},"e80d":{"name":"Share"},"e8c9":{"name":"Shop"},"e8ca":{"name":"Shop Two"},"e8cb":{"name":"Shopping Basket"},"e8cc":{"name":"Shopping Cart"},"e261":{"name":"Short Text"},"e6e1":{"name":"Show Chart"},"e043":{"name":"Shuffle"},"e1c8":{"name":"Signal Cellular 4 Bar"},"e1cd":{"name":"Signal Cellular Connected No Internet 4 Bar"},"e1ce":{"name":"Signal Cellular No Sim"},"e1cf":{"name":"Signal Cellular Null"},"e1d0":{"name":"Signal Cellular Off"},"e1d8":{"name":"Signal Wifi 4 Bar"},"e1d9":{"name":"Signal Wifi 4 Bar Lock"},"e1da":{"name":"Signal Wifi Off"},"e32b":{"name":"Sim Card"},"e624":{"name":"Sim Card Alert"},"e044":{"name":"Skip Next"},"e045":{"name":"Skip Previous"},"e41b":{"name":"Slideshow"},"e068":{"name":"Slow Motion Video"},"e32c":{"name":"Smartphone"},"eb4a":{"name":"Smoke Free"},"eb4b":{"name":"Smoking Rooms"},"e625":{"name":"Sms"},"e626":{"name":"Sms Failed"},"e046":{"name":"Snooze"},"e164":{"name":"Sort"},"e053":{"name":"Sort By Alpha"},"eb4c":{"name":"Spa"},"e256":{"name":"Space Bar"},"e32d":{"name":"Speaker"},"e32e":{"name":"Speaker Group"},"e8cd":{"name":"Speaker Notes"},"e92a":{"name":"Speaker Notes Off"},"e0d2":{"name":"Speaker Phone"},"e8ce":{"name":"Spellcheck"},"e838":{"name":"Star"},"e83a":{"name":"Star Border"},"e839":{"name":"Star Half"},"e8d0":{"name":"Stars"},"e0d3":{"name":"Stay Current Landscape"},"e0d4":{"name":"Stay Current Portrait"},"e0d5":{"name":"Stay Primary Landscape"},"e0d6":{"name":"Stay Primary Portrait"},"e047":{"name":"Stop"},"e0e3":{"name":"Stop Screen Share"},"e1db":{"name":"Storage"},"e8d1":{"name":"Store"},"e563":{"name":"Store Mall Directory"},"e41c":{"name":"Straighten"},"e56e":{"name":"Streetview"},"e257":{"name":"Strikethrough S"},"e41d":{"name":"Style"},"e5d9":{"name":"Subdirectory Arrow Left"},"e5da":{"name":"Subdirectory Arrow Right"},"e8d2":{"name":"Subject"},"e064":{"name":"Subscriptions"},"e048":{"name":"Subtitles"},"e56f":{"name":"Subway"},"e8d3":{"name":"Supervisor Account"},"e049":{"name":"Surround Sound"},"e0d7":{"name":"Swap Calls"},"e8d4":{"name":"Swap Horiz"},"e8d5":{"name":"Swap Vert"},"e8d6":{"name":"Swap Vertical Circle"},"e41e":{"name":"Switch Camera"},"e41f":{"name":"Switch Video"},"e627":{"name":"Sync"},"e628":{"name":"Sync Disabled"},"e629":{"name":"Sync Problem"},"e62a":{"name":"System Update"},"e8d7":{"name":"System Update Alt"},"e8d8":{"name":"Tab"},"e8d9":{"name":"Tab Unselected"},"e32f":{"name":"Tablet"},"e330":{"name":"Tablet Android"},"e331":{"name":"Tablet Mac"},"e420":{"name":"Tag Faces"},"e62b":{"name":"Tap And Play"},"e564":{"name":"Terrain"},"e262":{"name":"Text Fields"},"e165":{"name":"Text Format"},"e0d8":{"name":"Textsms"},"e421":{"name":"Texture"},"e8da":{"name":"Theaters"},"e8db":{"name":"Thumb Down"},"e8dc":{"name":"Thumb Up"},"e8dd":{"name":"Thumbs Up Down"},"e62c":{"name":"Time To Leave"},"e422":{"name":"Timelapse"},"e922":{"name":"Timeline"},"e425":{"name":"Timer"},"e423":{"name":"Timer 10"},"e424":{"name":"Timer 3"},"e426":{"name":"Timer Off"},"e264":{"name":"Title"},"e8de":{"name":"Toc"},"e8df":{"name":"Today"},"e8e0":{"name":"Toll"},"e427":{"name":"Tonality"},"e913":{"name":"Touch App"},"e332":{"name":"Toys"},"e8e1":{"name":"Track Changes"},"e565":{"name":"Traffic"},"e570":{"name":"Train"},"e571":{"name":"Tram"},"e572":{"name":"Transfer Within A Station"},"e428":{"name":"Transform"},"e8e2":{"name":"Translate"},"e8e3":{"name":"Trending Down"},"e8e4":{"name":"Trending Flat"},"e8e5":{"name":"Trending Up"},"e429":{"name":"Tune"},"e8e6":{"name":"Turned In"},"e8e7":{"name":"Turned In Not"},"e333":{"name":"Tv"},"e169":{"name":"Unarchive"},"e166":{"name":"Undo"},"e5d6":{"name":"Unfold Less"},"e5d7":{"name":"Unfold More"},"e923":{"name":"Update"},"e1e0":{"name":"Usb"},"e8e8":{"name":"Verified User"},"e258":{"name":"Vertical Align Bottom"},"e259":{"name":"Vertical Align Center"},"e25a":{"name":"Vertical Align Top"},"e62d":{"name":"Vibration"},"e070":{"name":"Video Call"},"e071":{"name":"Video Label"},"e04a":{"name":"Video Library"},"e04b":{"name":"Videocam"},"e04c":{"name":"Videocam Off"},"e338":{"name":"Videogame Asset"},"e8e9":{"name":"View Agenda"},"e8ea":{"name":"View Array"},"e8eb":{"name":"View Carousel"},"e8ec":{"name":"View Column"},"e42a":{"name":"View Comfy"},"e42b":{"name":"View Compact"},"e8ed":{"name":"View Day"},"e8ee":{"name":"View Headline"},"e8ef":{"name":"View List"},"e8f0":{"name":"View Module"},"e8f1":{"name":"View Quilt"},"e8f2":{"name":"View Stream"},"e8f3":{"name":"View Week"},"e435":{"name":"Vignette"},"e8f4":{"name":"Visibility"},"e8f5":{"name":"Visibility Off"},"e62e":{"name":"Voice Chat"},"e0d9":{"name":"Voicemail"},"e04d":{"name":"Volume Down"},"e04e":{"name":"Volume Mute"},"e04f":{"name":"Volume Off"},"e050":{"name":"Volume Up"},"e0da":{"name":"Vpn Key"},"e62f":{"name":"Vpn Lock"},"e1bc":{"name":"Wallpaper"},"e002":{"name":"Warning"},"e334":{"name":"Watch"},"e924":{"name":"Watch Later"},"e42c":{"name":"Wb Auto"},"e42d":{"name":"Wb Cloudy"},"e42e":{"name":"Wb Incandescent"},"e436":{"name":"Wb Iridescent"},"e430":{"name":"Wb Sunny"},"e63d":{"name":"Wc"},"e051":{"name":"Web"},"e069":{"name":"Web Asset"},"e16b":{"name":"Weekend"},"e80e":{"name":"Whatshot"},"e1bd":{"name":"Widgets"},"e63e":{"name":"Wifi"},"e1e1":{"name":"Wifi Lock"},"e1e2":{"name":"Wifi Tethering"},"e8f9":{"name":"Work"},"e25b":{"name":"Wrap Text"},"e8fa":{"name":"Youtube Searched For"},"e8ff":{"name":"Zoom In"},"e900":{"name":"Zoom Out"},"e56b":{"name":"Zoom Out Map"}}} \ No newline at end of file diff --git a/others/icons/material-icons/MaterialIcons-Regular.woff b/others/icons/material-icons/MaterialIcons-Regular.woff new file mode 100644 index 0000000..b648a3e Binary files /dev/null and b/others/icons/material-icons/MaterialIcons-Regular.woff differ diff --git a/others/icons/material-icons/MaterialIcons-Regular.woff2 b/others/icons/material-icons/MaterialIcons-Regular.woff2 new file mode 100644 index 0000000..9fa2112 Binary files /dev/null and b/others/icons/material-icons/MaterialIcons-Regular.woff2 differ diff --git a/others/img/404.jpg b/others/img/404.jpg new file mode 100644 index 0000000..c3c0080 Binary files /dev/null and b/others/img/404.jpg differ diff --git a/others/img/OwO/huaji/huaji1.gif b/others/img/OwO/huaji/huaji1.gif new file mode 100644 index 0000000..e32f516 Binary files /dev/null and b/others/img/OwO/huaji/huaji1.gif differ diff --git a/others/img/OwO/huaji/huaji10.gif b/others/img/OwO/huaji/huaji10.gif new file mode 100644 index 0000000..1fe413f Binary files /dev/null and b/others/img/OwO/huaji/huaji10.gif differ diff --git a/others/img/OwO/huaji/huaji11.gif b/others/img/OwO/huaji/huaji11.gif new file mode 100644 index 0000000..66eb521 Binary files /dev/null and b/others/img/OwO/huaji/huaji11.gif differ diff --git a/others/img/OwO/huaji/huaji12.gif b/others/img/OwO/huaji/huaji12.gif new file mode 100644 index 0000000..d6c1a2b Binary files /dev/null and b/others/img/OwO/huaji/huaji12.gif differ diff --git a/others/img/OwO/huaji/huaji13.gif b/others/img/OwO/huaji/huaji13.gif new file mode 100644 index 0000000..f8d9337 Binary files /dev/null and b/others/img/OwO/huaji/huaji13.gif differ diff --git a/others/img/OwO/huaji/huaji14.gif b/others/img/OwO/huaji/huaji14.gif new file mode 100644 index 0000000..295bbc0 Binary files /dev/null and b/others/img/OwO/huaji/huaji14.gif differ diff --git a/others/img/OwO/huaji/huaji15.gif b/others/img/OwO/huaji/huaji15.gif new file mode 100644 index 0000000..30a5d11 Binary files /dev/null and b/others/img/OwO/huaji/huaji15.gif differ diff --git a/others/img/OwO/huaji/huaji16.gif b/others/img/OwO/huaji/huaji16.gif new file mode 100644 index 0000000..935e260 Binary files /dev/null and b/others/img/OwO/huaji/huaji16.gif differ diff --git a/others/img/OwO/huaji/huaji17.gif b/others/img/OwO/huaji/huaji17.gif new file mode 100644 index 0000000..30b64f6 Binary files /dev/null and b/others/img/OwO/huaji/huaji17.gif differ diff --git a/others/img/OwO/huaji/huaji18.gif b/others/img/OwO/huaji/huaji18.gif new file mode 100644 index 0000000..a0c489e Binary files /dev/null and b/others/img/OwO/huaji/huaji18.gif differ diff --git a/others/img/OwO/huaji/huaji19.gif b/others/img/OwO/huaji/huaji19.gif new file mode 100644 index 0000000..751a999 Binary files /dev/null and b/others/img/OwO/huaji/huaji19.gif differ diff --git a/others/img/OwO/huaji/huaji2.gif b/others/img/OwO/huaji/huaji2.gif new file mode 100644 index 0000000..a7919e3 Binary files /dev/null and b/others/img/OwO/huaji/huaji2.gif differ diff --git a/others/img/OwO/huaji/huaji20.gif b/others/img/OwO/huaji/huaji20.gif new file mode 100644 index 0000000..916f1dc Binary files /dev/null and b/others/img/OwO/huaji/huaji20.gif differ diff --git a/others/img/OwO/huaji/huaji21.gif b/others/img/OwO/huaji/huaji21.gif new file mode 100644 index 0000000..f3e6aa6 Binary files /dev/null and b/others/img/OwO/huaji/huaji21.gif differ diff --git a/others/img/OwO/huaji/huaji22.gif b/others/img/OwO/huaji/huaji22.gif new file mode 100644 index 0000000..d21a174 Binary files /dev/null and b/others/img/OwO/huaji/huaji22.gif differ diff --git a/others/img/OwO/huaji/huaji3.gif b/others/img/OwO/huaji/huaji3.gif new file mode 100644 index 0000000..5ffff88 Binary files /dev/null and b/others/img/OwO/huaji/huaji3.gif differ diff --git a/others/img/OwO/huaji/huaji4.gif b/others/img/OwO/huaji/huaji4.gif new file mode 100644 index 0000000..143ef72 Binary files /dev/null and b/others/img/OwO/huaji/huaji4.gif differ diff --git a/others/img/OwO/huaji/huaji5.gif b/others/img/OwO/huaji/huaji5.gif new file mode 100644 index 0000000..e1523fd Binary files /dev/null and b/others/img/OwO/huaji/huaji5.gif differ diff --git a/others/img/OwO/huaji/huaji6.gif b/others/img/OwO/huaji/huaji6.gif new file mode 100644 index 0000000..d983b4e Binary files /dev/null and b/others/img/OwO/huaji/huaji6.gif differ diff --git a/others/img/OwO/huaji/huaji7.gif b/others/img/OwO/huaji/huaji7.gif new file mode 100644 index 0000000..7630a62 Binary files /dev/null and b/others/img/OwO/huaji/huaji7.gif differ diff --git a/others/img/OwO/huaji/huaji8.gif b/others/img/OwO/huaji/huaji8.gif new file mode 100644 index 0000000..2bacd11 Binary files /dev/null and b/others/img/OwO/huaji/huaji8.gif differ diff --git a/others/img/OwO/huaji/huaji9.gif b/others/img/OwO/huaji/huaji9.gif new file mode 100644 index 0000000..8b5a9d4 Binary files /dev/null and b/others/img/OwO/huaji/huaji9.gif differ diff --git a/others/img/OwO/tieba/OK.png b/others/img/OwO/tieba/OK.png new file mode 100644 index 0000000..fe63abd Binary files /dev/null and b/others/img/OwO/tieba/OK.png differ diff --git a/others/img/OwO/tieba/a.png b/others/img/OwO/tieba/a.png new file mode 100644 index 0000000..72e8f41 Binary files /dev/null and b/others/img/OwO/tieba/a.png differ diff --git a/others/img/OwO/tieba/aixin.png b/others/img/OwO/tieba/aixin.png new file mode 100644 index 0000000..d9a16b1 Binary files /dev/null and b/others/img/OwO/tieba/aixin.png differ diff --git a/others/img/OwO/tieba/bianbian.png b/others/img/OwO/tieba/bianbian.png new file mode 100644 index 0000000..585156a Binary files /dev/null and b/others/img/OwO/tieba/bianbian.png differ diff --git a/others/img/OwO/tieba/bishi.png b/others/img/OwO/tieba/bishi.png new file mode 100644 index 0000000..44e0baa Binary files /dev/null and b/others/img/OwO/tieba/bishi.png differ diff --git a/others/img/OwO/tieba/bugaoxing.png b/others/img/OwO/tieba/bugaoxing.png new file mode 100644 index 0000000..6e247e6 Binary files /dev/null and b/others/img/OwO/tieba/bugaoxing.png differ diff --git a/others/img/OwO/tieba/caihong.png b/others/img/OwO/tieba/caihong.png new file mode 100644 index 0000000..0b2d542 Binary files /dev/null and b/others/img/OwO/tieba/caihong.png differ diff --git a/others/img/OwO/tieba/damuzhi.png b/others/img/OwO/tieba/damuzhi.png new file mode 100644 index 0000000..a3adb0d Binary files /dev/null and b/others/img/OwO/tieba/damuzhi.png differ diff --git a/others/img/OwO/tieba/dangao.png b/others/img/OwO/tieba/dangao.png new file mode 100644 index 0000000..57e1a21 Binary files /dev/null and b/others/img/OwO/tieba/dangao.png differ diff --git a/others/img/OwO/tieba/dengpao.png b/others/img/OwO/tieba/dengpao.png new file mode 100644 index 0000000..475ddac Binary files /dev/null and b/others/img/OwO/tieba/dengpao.png differ diff --git a/others/img/OwO/tieba/guai.png b/others/img/OwO/tieba/guai.png new file mode 100644 index 0000000..c0e1490 Binary files /dev/null and b/others/img/OwO/tieba/guai.png differ diff --git a/others/img/OwO/tieba/haha.png b/others/img/OwO/tieba/haha.png new file mode 100644 index 0000000..732b970 Binary files /dev/null and b/others/img/OwO/tieba/haha.png differ diff --git a/others/img/OwO/tieba/han.png b/others/img/OwO/tieba/han.png new file mode 100644 index 0000000..6a9a392 Binary files /dev/null and b/others/img/OwO/tieba/han.png differ diff --git a/others/img/OwO/tieba/hehe.png b/others/img/OwO/tieba/hehe.png new file mode 100644 index 0000000..ea1dae4 Binary files /dev/null and b/others/img/OwO/tieba/hehe.png differ diff --git a/others/img/OwO/tieba/heixian.png b/others/img/OwO/tieba/heixian.png new file mode 100644 index 0000000..919413f Binary files /dev/null and b/others/img/OwO/tieba/heixian.png differ diff --git a/others/img/OwO/tieba/honglingjin.png b/others/img/OwO/tieba/honglingjin.png new file mode 100644 index 0000000..2fcdb37 Binary files /dev/null and b/others/img/OwO/tieba/honglingjin.png differ diff --git a/others/img/OwO/tieba/huaji.png b/others/img/OwO/tieba/huaji.png new file mode 100644 index 0000000..a1a1081 Binary files /dev/null and b/others/img/OwO/tieba/huaji.png differ diff --git a/others/img/OwO/tieba/huaxin.png b/others/img/OwO/tieba/huaxin.png new file mode 100644 index 0000000..6c3c4c5 Binary files /dev/null and b/others/img/OwO/tieba/huaxin.png differ diff --git a/others/img/OwO/tieba/jingku.png b/others/img/OwO/tieba/jingku.png new file mode 100644 index 0000000..5e3aa35 Binary files /dev/null and b/others/img/OwO/tieba/jingku.png differ diff --git a/others/img/OwO/tieba/jingya.png b/others/img/OwO/tieba/jingya.png new file mode 100644 index 0000000..e379418 Binary files /dev/null and b/others/img/OwO/tieba/jingya.png differ diff --git a/others/img/OwO/tieba/landeli.png b/others/img/OwO/tieba/landeli.png new file mode 100644 index 0000000..ffa587e Binary files /dev/null and b/others/img/OwO/tieba/landeli.png differ diff --git a/others/img/OwO/tieba/lazhu.png b/others/img/OwO/tieba/lazhu.png new file mode 100644 index 0000000..21c5c4d Binary files /dev/null and b/others/img/OwO/tieba/lazhu.png differ diff --git a/others/img/OwO/tieba/lei.png b/others/img/OwO/tieba/lei.png new file mode 100644 index 0000000..2815085 Binary files /dev/null and b/others/img/OwO/tieba/lei.png differ diff --git a/others/img/OwO/tieba/liwu.png b/others/img/OwO/tieba/liwu.png new file mode 100644 index 0000000..0ad7f5c Binary files /dev/null and b/others/img/OwO/tieba/liwu.png differ diff --git a/others/img/OwO/tieba/meigui.png b/others/img/OwO/tieba/meigui.png new file mode 100644 index 0000000..53fa770 Binary files /dev/null and b/others/img/OwO/tieba/meigui.png differ diff --git a/others/img/OwO/tieba/mianqiang.png b/others/img/OwO/tieba/mianqiang.png new file mode 100644 index 0000000..601c9a9 Binary files /dev/null and b/others/img/OwO/tieba/mianqiang.png differ diff --git a/others/img/OwO/tieba/nidongde.png b/others/img/OwO/tieba/nidongde.png new file mode 100644 index 0000000..d6255d3 Binary files /dev/null and b/others/img/OwO/tieba/nidongde.png differ diff --git a/others/img/OwO/tieba/pen.png b/others/img/OwO/tieba/pen.png new file mode 100644 index 0000000..d8db8da Binary files /dev/null and b/others/img/OwO/tieba/pen.png differ diff --git a/others/img/OwO/tieba/shafa.png b/others/img/OwO/tieba/shafa.png new file mode 100644 index 0000000..f86d72d Binary files /dev/null and b/others/img/OwO/tieba/shafa.png differ diff --git a/others/img/OwO/tieba/shouzhi.png b/others/img/OwO/tieba/shouzhi.png new file mode 100644 index 0000000..a013155 Binary files /dev/null and b/others/img/OwO/tieba/shouzhi.png differ diff --git a/others/img/OwO/tieba/shuijiao.png b/others/img/OwO/tieba/shuijiao.png new file mode 100644 index 0000000..2971e14 Binary files /dev/null and b/others/img/OwO/tieba/shuijiao.png differ diff --git a/others/img/OwO/tieba/suanshuang.png b/others/img/OwO/tieba/suanshuang.png new file mode 100644 index 0000000..e4ceb63 Binary files /dev/null and b/others/img/OwO/tieba/suanshuang.png differ diff --git a/others/img/OwO/tieba/taikaixin.png b/others/img/OwO/tieba/taikaixin.png new file mode 100644 index 0000000..0a97498 Binary files /dev/null and b/others/img/OwO/tieba/taikaixin.png differ diff --git a/others/img/OwO/tieba/taiyang.png b/others/img/OwO/tieba/taiyang.png new file mode 100644 index 0000000..e729820 Binary files /dev/null and b/others/img/OwO/tieba/taiyang.png differ diff --git a/others/img/OwO/tieba/tushe.png b/others/img/OwO/tieba/tushe.png new file mode 100644 index 0000000..7e4ff86 Binary files /dev/null and b/others/img/OwO/tieba/tushe.png differ diff --git a/others/img/OwO/tieba/wabi.png b/others/img/OwO/tieba/wabi.png new file mode 100644 index 0000000..59759c6 Binary files /dev/null and b/others/img/OwO/tieba/wabi.png differ diff --git a/others/img/OwO/tieba/weiqu.png b/others/img/OwO/tieba/weiqu.png new file mode 100644 index 0000000..354c4b9 Binary files /dev/null and b/others/img/OwO/tieba/weiqu.png differ diff --git a/others/img/OwO/tieba/what.png b/others/img/OwO/tieba/what.png new file mode 100644 index 0000000..d71783c Binary files /dev/null and b/others/img/OwO/tieba/what.png differ diff --git a/others/img/OwO/tieba/wuzuixiao.png b/others/img/OwO/tieba/wuzuixiao.png new file mode 100644 index 0000000..494a2ec Binary files /dev/null and b/others/img/OwO/tieba/wuzuixiao.png differ diff --git a/others/img/OwO/tieba/xiangjiao.png b/others/img/OwO/tieba/xiangjiao.png new file mode 100644 index 0000000..b4766b3 Binary files /dev/null and b/others/img/OwO/tieba/xiangjiao.png differ diff --git a/others/img/OwO/tieba/xiaoguai.png b/others/img/OwO/tieba/xiaoguai.png new file mode 100644 index 0000000..0ee6667 Binary files /dev/null and b/others/img/OwO/tieba/xiaoguai.png differ diff --git a/others/img/OwO/tieba/xiaohonglian.png b/others/img/OwO/tieba/xiaohonglian.png new file mode 100644 index 0000000..dd28bbf Binary files /dev/null and b/others/img/OwO/tieba/xiaohonglian.png differ diff --git a/others/img/OwO/tieba/xiaoniao.png b/others/img/OwO/tieba/xiaoniao.png new file mode 100644 index 0000000..64ad9df Binary files /dev/null and b/others/img/OwO/tieba/xiaoniao.png differ diff --git a/others/img/OwO/tieba/xiaoyan.png b/others/img/OwO/tieba/xiaoyan.png new file mode 100644 index 0000000..4ac2b73 Binary files /dev/null and b/others/img/OwO/tieba/xiaoyan.png differ diff --git a/others/img/OwO/tieba/xili.png b/others/img/OwO/tieba/xili.png new file mode 100644 index 0000000..e629a0c Binary files /dev/null and b/others/img/OwO/tieba/xili.png differ diff --git a/others/img/OwO/tieba/xingxingyueliang.png b/others/img/OwO/tieba/xingxingyueliang.png new file mode 100644 index 0000000..89b347d Binary files /dev/null and b/others/img/OwO/tieba/xingxingyueliang.png differ diff --git a/others/img/OwO/tieba/xinsui.png b/others/img/OwO/tieba/xinsui.png new file mode 100644 index 0000000..88195b3 Binary files /dev/null and b/others/img/OwO/tieba/xinsui.png differ diff --git a/others/img/OwO/tieba/yamaidei.png b/others/img/OwO/tieba/yamaidei.png new file mode 100644 index 0000000..071e056 Binary files /dev/null and b/others/img/OwO/tieba/yamaidei.png differ diff --git a/others/img/OwO/tieba/yaowan.png b/others/img/OwO/tieba/yaowan.png new file mode 100644 index 0000000..e02953d Binary files /dev/null and b/others/img/OwO/tieba/yaowan.png differ diff --git a/others/img/OwO/tieba/yinxian.png b/others/img/OwO/tieba/yinxian.png new file mode 100644 index 0000000..62e36ca Binary files /dev/null and b/others/img/OwO/tieba/yinxian.png differ diff --git a/others/img/OwO/tieba/yinyue.png b/others/img/OwO/tieba/yinyue.png new file mode 100644 index 0000000..1201de1 Binary files /dev/null and b/others/img/OwO/tieba/yinyue.png differ diff --git a/others/img/OwO/tieba/yiwen.png b/others/img/OwO/tieba/yiwen.png new file mode 100644 index 0000000..a44ed28 Binary files /dev/null and b/others/img/OwO/tieba/yiwen.png differ diff --git a/others/img/OwO/tieba/zhenbang.png b/others/img/OwO/tieba/zhenbang.png new file mode 100644 index 0000000..65168ff Binary files /dev/null and b/others/img/OwO/tieba/zhenbang.png differ diff --git a/others/img/headimg.png b/others/img/headimg.png new file mode 100644 index 0000000..d03e7b3 Binary files /dev/null and b/others/img/headimg.png differ diff --git a/others/img/huaji.png b/others/img/huaji.png new file mode 100644 index 0000000..ec1e883 Binary files /dev/null and b/others/img/huaji.png differ diff --git a/others/img/loading.gif b/others/img/loading.gif new file mode 100644 index 0000000..416d477 Binary files /dev/null and b/others/img/loading.gif differ diff --git a/others/img/search.png b/others/img/search.png new file mode 100644 index 0000000..7342960 Binary files /dev/null and b/others/img/search.png differ diff --git a/others/img/sidebar.jpg b/others/img/sidebar.jpg new file mode 100644 index 0000000..9316cdb Binary files /dev/null and b/others/img/sidebar.jpg differ diff --git a/others/js/castle.min.js b/others/js/castle.min.js new file mode 100644 index 0000000..99720e9 --- /dev/null +++ b/others/js/castle.min.js @@ -0,0 +1,8 @@ +/** + * Castle + * Author ohmyga ( https://ohmyga.cn ) + * Github https://github.com/ohmyga233/castle-Typecho-Theme + * Version 0.1.0 + * 至于JS为什么要加密 因为某些版权狗喜欢乱删版权,迫不得已才加密。 + **/ + ;var encode_version = 'sojson.v5', widrc = '__0x36c60', __0x36c60=['\x77\x6f\x59\x44\x77\x6f\x73\x3d','\x77\x34\x2f\x44\x67\x63\x4b\x5a\x4b\x38\x4b\x57\x77\x71\x4a\x72\x66\x45\x30\x2f\x77\x71\x2f\x43\x6d\x53\x48\x43\x6e\x63\x4b\x52','\x77\x72\x62\x43\x76\x38\x4b\x79\x58\x4d\x4f\x66','\x54\x4d\x4b\x54\x77\x6f\x66\x43\x69\x73\x4f\x35','\x41\x56\x33\x43\x6a\x63\x4b\x50\x46\x67\x3d\x3d','\x4b\x46\x4d\x4b\x77\x35\x73\x52','\x62\x6b\x62\x44\x6c\x73\x4f\x74\x4e\x41\x3d\x3d','\x77\x70\x64\x36\x77\x71\x4e\x65','\x77\x72\x44\x43\x72\x63\x4b\x72\x4f\x54\x67\x3d','\x4a\x52\x48\x43\x70\x38\x4b\x71\x52\x67\x3d\x3d','\x77\x35\x51\x72\x53\x67\x3d\x3d','\x77\x34\x34\x6c\x52\x63\x4f\x72\x5a\x55\x2f\x43\x6a\x73\x4f\x41','\x51\x58\x50\x44\x71\x73\x4f\x4d','\x77\x34\x34\x31\x57\x48\x66\x43\x67\x51\x3d\x3d','\x77\x70\x64\x6b\x77\x72\x5a\x55','\x77\x34\x42\x2f\x42\x6a\x38\x6e','\x47\x46\x41\x31\x77\x34\x6b\x35','\x43\x73\x4b\x56\x77\x72\x44\x43\x67\x73\x4b\x48\x51\x4d\x4f\x71\x77\x37\x5a\x54\x77\x70\x33\x43\x6a\x4d\x4b\x64\x65\x63\x4b\x51\x49\x38\x4f\x44\x77\x34\x41\x41\x77\x71\x52\x67\x77\x34\x6b\x6b\x77\x34\x50\x43\x6e\x63\x4f\x41','\x77\x35\x76\x43\x69\x73\x4f\x76','\x77\x34\x49\x6e\x45\x30\x48\x44\x69\x77\x3d\x3d','\x42\x4d\x4f\x64\x42\x45\x33\x43\x74\x51\x3d\x3d','\x42\x4d\x4b\x43\x5a\x68\x6b\x3d','\x4a\x38\x4f\x66\x4f\x6a\x72\x43\x74\x67\x3d\x3d','\x53\x6b\x58\x43\x73\x4d\x4b\x44\x4e\x38\x4b\x71\x77\x6f\x39\x53\x48\x67\x41\x6f\x77\x36\x6e\x44\x70\x41\x55\x3d','\x49\x58\x4d\x2b\x77\x37\x59\x79\x59\x41\x3d\x3d','\x61\x33\x2f\x44\x69\x51\x3d\x3d','\x77\x34\x39\x30\x50\x67\x3d\x3d','\x77\x36\x70\x73\x44\x78\x6b\x42\x50\x77\x3d\x3d','\x45\x4d\x4b\x55\x77\x71\x44\x44\x6b\x69\x4d\x3d','\x66\x4d\x4f\x37\x77\x70\x78\x49\x77\x71\x30\x47\x61\x38\x4f\x74','\x77\x6f\x41\x38\x77\x70\x34\x4a\x77\x34\x73\x3d','\x77\x34\x76\x44\x73\x63\x4f\x49\x77\x70\x37\x44\x69\x77\x3d\x3d','\x43\x56\x33\x44\x69\x38\x4f\x6a\x77\x6f\x6b\x3d','\x77\x34\x6a\x43\x6b\x30\x76\x44\x69\x38\x4b\x57','\x77\x71\x48\x44\x6a\x67\x31\x70\x62\x77\x3d\x3d','\x77\x35\x7a\x43\x6c\x38\x4f\x72\x77\x37\x4c\x43\x74\x73\x4f\x70','\x77\x35\x66\x43\x70\x38\x4b\x72\x77\x37\x5a\x76','\x77\x34\x34\x6c\x51\x51\x3d\x3d','\x46\x6e\x63\x33\x77\x37\x62\x43\x74\x63\x4f\x68\x54\x4d\x4b\x6f\x53\x33\x73\x50','\x77\x72\x4c\x44\x67\x55\x62\x43\x72\x73\x4f\x79\x77\x72\x34\x30\x44\x48\x48\x43\x71\x30\x62\x43\x72\x45\x46\x61\x45\x38\x4b\x47\x45\x73\x4f\x72\x77\x35\x59\x47\x62\x43\x4e\x6f\x77\x34\x45\x58\x77\x71\x49\x2f\x4e\x38\x4f\x69\x64\x73\x4b\x7a\x77\x36\x66\x43\x76\x43\x54\x43\x6d\x41\x3d\x3d','\x77\x35\x66\x44\x74\x68\x31\x65\x4a\x53\x5a\x41\x77\x37\x46\x4d\x77\x70\x52\x4f\x64\x43\x54\x43\x6d\x32\x67\x6f\x59\x63\x4f\x6d\x4b\x38\x4b\x47\x77\x70\x2f\x43\x68\x52\x4a\x4a\x77\x72\x6a\x44\x6e\x63\x4b\x50\x77\x6f\x68\x74\x4f\x6a\x73\x73\x56\x55\x58\x43\x68\x4d\x4b\x30\x77\x72\x54\x44\x76\x44\x4a\x7a\x77\x36\x52\x66\x77\x70\x62\x44\x6b\x33\x62\x43\x6b\x4d\x4f\x78\x4b\x45\x34\x3d','\x43\x6c\x6e\x43\x75\x63\x4b\x4e\x4e\x38\x4f\x7a\x77\x34\x64\x63\x50\x43\x38\x50\x77\x34\x50\x44\x6a\x53\x51\x38\x77\x71\x58\x43\x6d\x4d\x4b\x74\x64\x73\x4b\x41\x51\x77\x46\x72\x77\x70\x70\x31\x77\x34\x78\x61\x77\x70\x66\x44\x70\x38\x4f\x47\x77\x35\x46\x33\x56\x56\x48\x43\x6b\x63\x4b\x32\x77\x70\x31\x38\x46\x54\x4d\x7a\x77\x34\x58\x44\x6f\x42\x6e\x44\x67\x68\x4c\x43\x72\x4d\x4b\x48\x63\x67\x3d\x3d','\x77\x36\x37\x43\x68\x41\x58\x44\x6b\x4d\x4f\x53\x77\x70\x67\x3d','\x77\x35\x4e\x74\x36\x61\x4b\x69\x36\x5a\x32\x4f\x35\x59\x6d\x5a\x36\x4c\x2b\x55\x35\x61\x79\x53\x35\x71\x32\x4e\x35\x72\x53\x49\x36\x49\x4f\x71\x35\x4c\x6d\x79','\x43\x31\x66\x43\x74\x73\x4b\x4a\x49\x73\x4b\x37\x77\x6f\x67\x4b\x46\x41\x31\x7a\x77\x71\x58\x43\x71\x41\x52\x68\x77\x36\x50\x44\x67\x63\x4b\x76\x65\x73\x4b\x48\x53\x77\x45\x2b\x77\x34\x38\x34\x77\x70\x74\x54\x77\x6f\x54\x44\x76\x38\x4b\x46\x77\x6f\x45\x34\x46\x45\x76\x44\x6c\x38\x4f\x6c\x77\x35\x78\x6f\x47\x79\x42\x74\x77\x6f\x7a\x43\x76\x6c\x37\x44\x69\x41\x54\x44\x72\x73\x4b\x50\x4d\x56\x34\x66\x53\x31\x35\x48\x50\x38\x4f\x51\x49\x55\x58\x43\x72\x52\x50\x43\x6b\x41\x59\x34\x77\x34\x67\x74\x45\x6a\x44\x43\x6b\x58\x49\x4b\x4b\x6a\x48\x43\x6a\x4d\x4b\x65\x63\x73\x4b\x70\x46\x38\x4b\x35\x77\x34\x64\x59\x62\x73\x4b\x2f\x61\x6a\x50\x44\x6d\x63\x4b\x46\x49\x73\x4b\x54\x77\x71\x6e\x44\x70\x4d\x4f\x38\x4f\x42\x38\x44\x48\x41\x2f\x44\x74\x69\x55\x41\x77\x70\x50\x44\x6f\x69\x73\x37\x77\x70\x51\x51\x77\x35\x35\x77\x58\x47\x68\x54\x77\x36\x45\x3d','\x77\x34\x6e\x44\x6a\x73\x4b\x4d\x42\x38\x4b\x67\x77\x71\x35\x34','\x53\x6e\x44\x44\x72\x38\x4f\x49\x46\x41\x3d\x3d','\x4a\x4d\x4f\x41\x49\x68\x4c\x44\x76\x48\x4d\x3d','\x49\x41\x2f\x43\x69\x38\x4b\x78\x77\x36\x4e\x65\x77\x34\x50\x43\x68\x57\x62\x44\x6e\x6c\x37\x44\x76\x38\x4b\x32\x77\x37\x68\x6c','\x77\x71\x30\x70\x77\x72\x67\x3d','\x50\x4d\x4f\x34\x47\x57\x50\x43\x68\x77\x3d\x3d','\x4c\x52\x78\x54\x77\x36\x78\x77','\x77\x34\x6b\x42\x4c\x4d\x4f\x6c\x4e\x41\x3d\x3d','\x77\x36\x6a\x43\x6a\x58\x50\x44\x6c\x73\x4f\x6e','\x49\x33\x72\x44\x73\x38\x4f\x43\x77\x71\x67\x3d','\x77\x37\x49\x6b\x62\x38\x4f\x4c\x59\x51\x3d\x3d','\x43\x38\x4b\x5a\x5a\x51\x3d\x3d','\x77\x71\x6b\x43\x77\x70\x55\x6f\x77\x37\x34\x3d','\x35\x4c\x6d\x78\x36\x49\x4b\x63\x35\x59\x75\x64\x36\x5a\x71\x2b\x55\x57\x48\x43\x6d\x38\x4b\x78\x77\x34\x42\x67\x77\x72\x5a\x31\x77\x34\x38\x3d','\x4a\x4d\x4b\x78\x59\x41\x3d\x3d','\x65\x38\x4b\x6f\x77\x70\x45\x3d','\x77\x72\x76\x43\x6f\x51\x73\x3d','\x77\x36\x38\x72\x77\x72\x41\x6b\x77\x71\x58\x44\x6e\x43\x30\x63\x55\x63\x4b\x70\x64\x6e\x58\x44\x6e\x38\x4f\x33\x44\x32\x37\x44\x73\x73\x4b\x44\x59\x7a\x42\x51\x45\x4d\x4b\x58\x45\x4d\x4f\x5a','\x57\x6d\x37\x44\x75\x67\x3d\x3d','\x4a\x4d\x4f\x79\x41\x44\x37\x43\x6c\x52\x77\x3d','\x49\x38\x4f\x31\x42\x51\x3d\x3d','\x77\x34\x78\x6b\x53\x41\x3d\x3d','\x65\x38\x4f\x6e\x77\x72\x41\x38\x77\x36\x52\x33\x77\x34\x58\x44\x6f\x63\x4f\x52\x61\x58\x51\x3d','\x77\x36\x52\x43\x48\x63\x4f\x77\x62\x63\x4b\x48\x4c\x73\x4b\x68\x64\x48\x76\x43\x73\x56\x62\x43\x71\x38\x4b\x4b\x5a\x31\x4c\x44\x76\x4d\x4b\x45\x4c\x63\x4b\x78\x46\x57\x76\x43\x6d\x44\x7a\x44\x70\x41\x3d\x3d','\x77\x34\x49\x69\x5a\x47\x45\x3d','\x77\x36\x4c\x43\x68\x51\x54\x44\x6b\x73\x4f\x57\x77\x70\x4c\x44\x6c\x43\x54\x44\x76\x55\x78\x48\x77\x70\x54\x44\x69\x4d\x4f\x4c\x5a\x4d\x4f\x77\x77\x6f\x66\x43\x75\x31\x70\x6a\x4e\x6d\x39\x36\x50\x67\x59\x3d','\x45\x43\x7a\x43\x71\x73\x4f\x7a\x56\x6c\x76\x43\x72\x69\x68\x42\x77\x71\x44\x43\x70\x4d\x4f\x63\x77\x70\x76\x43\x69\x67\x3d\x3d','\x77\x37\x48\x43\x6c\x58\x48\x44\x67\x38\x4b\x68\x52\x77\x3d\x3d','\x42\x6d\x7a\x44\x76\x67\x3d\x3d','\x42\x4d\x4f\x41\x46\x51\x3d\x3d','\x77\x70\x63\x68\x77\x70\x6b\x4a\x77\x37\x30\x3d','\x77\x37\x51\x39\x77\x6f\x35\x57\x77\x35\x30\x3d','\x77\x36\x52\x69\x48\x44\x34\x47','\x77\x36\x54\x43\x6b\x4d\x4f\x72\x77\x37\x50\x43\x6a\x67\x3d\x3d','\x77\x70\x66\x43\x75\x4d\x4b\x76\x4c\x43\x59\x3d','\x45\x63\x4b\x4a\x77\x36\x4d\x65','\x77\x72\x2f\x44\x68\x43\x70\x35\x56\x51\x3d\x3d','\x58\x6b\x76\x44\x6e\x73\x4f\x78\x4b\x67\x3d\x3d','\x77\x34\x62\x44\x6b\x67\x68\x6a\x49\x51\x3d\x3d','\x4a\x6b\x4c\x44\x67\x63\x4f\x6c\x77\x72\x55\x3d','\x77\x34\x35\x61\x54\x4d\x4b\x75\x55\x41\x3d\x3d','\x77\x37\x31\x79\x4f\x7a\x38\x61','\x44\x44\x6f\x78\x77\x35\x55\x53','\x41\x38\x4b\x4e\x77\x37\x73\x46\x4b\x41\x3d\x3d','\x59\x73\x4f\x32\x77\x70\x33\x43\x75\x47\x62\x44\x73\x68\x6c\x32\x77\x70\x39\x65','\x77\x6f\x64\x4f\x65\x45\x51\x39\x77\x70\x72\x44\x6a\x38\x4f\x77\x45\x38\x4b\x6d\x41\x73\x4b\x44','\x77\x71\x66\x44\x6a\x63\x4b\x4e\x77\x34\x6f\x76','\x77\x34\x6b\x6e\x51\x38\x4f\x2b\x56\x41\x3d\x3d','\x77\x37\x4c\x43\x6e\x68\x44\x44\x6b\x38\x4f\x57','\x77\x35\x44\x44\x73\x41\x4a\x42\x4f\x33\x30\x5a','\x50\x73\x4f\x54\x50\x52\x44\x43\x69\x67\x3d\x3d','\x50\x52\x4a\x33','\x77\x36\x33\x43\x6b\x31\x33\x44\x67\x73\x4b\x57','\x61\x38\x4b\x74\x77\x71\x2f\x43\x6e\x38\x4f\x2b','\x63\x30\x72\x44\x6b\x52\x45\x48','\x41\x4d\x4b\x63\x77\x36\x55\x4a\x4d\x73\x4f\x58\x4f\x38\x4f\x32\x77\x70\x2f\x43\x6e\x41\x3d\x3d','\x56\x73\x4b\x64\x77\x72\x4c\x43\x69\x4d\x4f\x63\x52\x73\x4f\x47\x77\x37\x4e\x58\x77\x70\x54\x43\x68\x67\x3d\x3d','\x77\x35\x4c\x43\x70\x63\x4b\x72\x57\x4d\x4b\x64\x77\x72\x33\x44\x76\x6a\x31\x78','\x50\x77\x50\x43\x76\x41\x3d\x3d','\x49\x73\x4f\x73\x4a\x41\x3d\x3d','\x46\x73\x4b\x44\x63\x41\x5a\x42\x57\x67\x3d\x3d','\x62\x58\x41\x2b\x77\x37\x6b\x6c\x5a\x78\x41\x3d','\x52\x63\x4b\x6a\x77\x72\x66\x43\x6c\x63\x4f\x50\x52\x63\x4f\x62\x77\x71\x59\x63','\x4f\x63\x4f\x44\x77\x35\x4a\x31\x77\x72\x59\x54\x4e\x38\x4f\x70\x4b\x4d\x4f\x79\x4e\x38\x4f\x4c\x59\x42\x66\x44\x70\x63\x4f\x6a\x77\x6f\x5a\x58\x61\x57\x37\x44\x6c\x30\x4e\x54\x77\x6f\x54\x44\x74\x4d\x4f\x55\x51\x6b\x56\x54\x48\x4d\x4b\x34\x53\x63\x4f\x46\x48\x73\x4b\x70\x45\x63\x4f\x6d\x62\x77\x3d\x3d','\x77\x36\x70\x63\x57\x51\x48\x44\x76\x6b\x62\x43\x76\x33\x46\x2b','\x4a\x4d\x4f\x62\x41\x43\x56\x65\x77\x70\x45\x31\x45\x69\x38\x71\x56\x38\x4f\x4b\x77\x6f\x45\x3d','\x77\x37\x39\x48\x54\x53\x48\x43\x76\x51\x3d\x3d','\x77\x35\x76\x44\x69\x68\x39\x7a\x47\x41\x3d\x3d','\x77\x34\x4d\x65\x5a\x45\x62\x43\x67\x51\x3d\x3d','\x45\x33\x6e\x44\x6c\x4d\x4f\x5a\x77\x70\x34\x3d','\x77\x72\x33\x43\x67\x79\x5a\x37\x57\x67\x3d\x3d','\x4a\x4d\x4b\x4d\x77\x37\x51\x67\x44\x77\x3d\x3d','\x77\x34\x6e\x43\x73\x63\x4f\x46\x77\x35\x6a\x43\x6b\x67\x3d\x3d','\x77\x37\x49\x6a\x5a\x63\x4f\x35\x57\x51\x3d\x3d','\x77\x72\x49\x49\x77\x71\x73\x45\x77\x37\x30\x3d','\x50\x67\x54\x43\x6e\x4d\x4b\x67','\x77\x35\x38\x34\x61\x47\x6e\x43\x70\x38\x4b\x4f','\x77\x35\x52\x5a\x65\x7a\x7a\x43\x67\x51\x3d\x3d','\x48\x73\x4f\x47\x44\x44\x37\x44\x6c\x77\x3d\x3d','\x42\x4d\x4b\x2f\x57\x79\x5a\x67','\x49\x58\x2f\x44\x70\x38\x4f\x55','\x77\x34\x6c\x2b\x51\x4d\x4b\x42\x54\x51\x3d\x3d','\x4a\x73\x4b\x30\x77\x35\x49\x41\x46\x77\x3d\x3d','\x77\x36\x44\x43\x67\x38\x4b\x69\x77\x34\x74\x75','\x77\x35\x44\x43\x6b\x32\x2f\x44\x75\x73\x4f\x6e','\x4a\x31\x6e\x43\x6c\x73\x4b\x6e\x41\x41\x3d\x3d','\x41\x47\x77\x59\x77\x35\x30\x53','\x77\x34\x6a\x43\x6a\x57\x37\x43\x6b\x73\x4b\x33','\x77\x35\x33\x44\x6b\x38\x4b\x55\x45\x73\x4b\x4e','\x50\x77\x74\x70\x77\x35\x64\x58','\x77\x37\x48\x43\x71\x63\x4f\x70\x77\x35\x33\x43\x6f\x67\x3d\x3d','\x77\x70\x7a\x43\x6e\x73\x4b\x33\x54\x63\x4f\x4b','\x4a\x55\x63\x4f\x77\x36\x6b\x30','\x77\x34\x78\x36\x4a\x38\x4f\x47\x63\x41\x3d\x3d','\x4a\x44\x63\x4a\x77\x37\x6f\x4d','\x77\x71\x76\x43\x70\x53\x42\x2b\x57\x41\x3d\x3d','\x77\x36\x74\x59\x64\x51\x3d\x3d','\x4f\x7a\x72\x43\x74\x4d\x4b\x66\x77\x34\x73\x3d','\x77\x70\x55\x57\x77\x72\x73\x37\x77\x37\x34\x3d','\x62\x63\x4f\x4b\x77\x6f\x74\x77\x77\x6f\x67\x3d','\x55\x46\x2f\x44\x6d\x43\x30\x73','\x77\x35\x72\x43\x6b\x63\x4b\x78\x77\x36\x78\x51','\x77\x35\x2f\x43\x72\x38\x4f\x4c\x77\x35\x7a\x43\x6f\x77\x3d\x3d','\x77\x6f\x50\x43\x68\x38\x4b\x30\x61\x4d\x4f\x55','\x77\x71\x50\x43\x6b\x53\x5a\x2f\x5a\x41\x3d\x3d','\x48\x38\x4b\x69\x56\x67\x42\x4c','\x42\x38\x4f\x64\x4c\x68\x6a\x44\x75\x51\x3d\x3d','\x61\x6a\x4d\x55\x77\x37\x6f\x71\x47\x38\x4f\x4f\x42\x67\x3d\x3d','\x77\x6f\x58\x44\x75\x4d\x4b\x58\x77\x36\x41\x3d','\x77\x34\x2f\x44\x68\x63\x4b\x52\x50\x73\x4b\x6f\x77\x72\x64\x34','\x52\x54\x63\x67\x77\x71\x4c\x43\x6e\x38\x4f\x75\x57\x41\x3d\x3d','\x77\x35\x39\x64\x50\x38\x4b\x48\x64\x54\x2f\x43\x75\x58\x76\x44\x68\x6c\x48\x43\x68\x33\x45\x3d','\x61\x4d\x4f\x71\x77\x6f\x6c\x76\x77\x72\x77\x3d','\x77\x34\x76\x44\x73\x4d\x4f\x65\x77\x71\x37\x44\x74\x41\x3d\x3d','\x77\x37\x66\x43\x72\x77\x72\x44\x6c\x63\x4f\x31','\x47\x63\x4b\x51\x77\x37\x59\x57\x48\x67\x3d\x3d','\x49\x7a\x4c\x43\x70\x4d\x4f\x39\x61\x67\x3d\x3d','\x77\x70\x45\x33\x77\x72\x77\x69\x77\x35\x45\x3d','\x77\x71\x49\x31\x77\x71\x77\x3d','\x77\x34\x58\x43\x6b\x45\x33\x43\x76\x73\x4b\x74','\x77\x6f\x50\x43\x6c\x41\x6c\x5a\x59\x77\x3d\x3d','\x4b\x38\x4f\x6a\x46\x77\x3d\x3d','\x77\x34\x67\x4f\x51\x77\x3d\x3d','\x77\x35\x44\x43\x67\x46\x66\x44\x67\x38\x4b\x62','\x43\x31\x50\x44\x74\x63\x4f\x30\x77\x70\x59\x3d','\x63\x31\x72\x44\x71\x73\x4f\x67\x43\x51\x3d\x3d','\x4a\x63\x4b\x58\x77\x37\x49\x4e\x43\x67\x3d\x3d','\x77\x34\x50\x43\x6a\x77\x66\x44\x71\x38\x4f\x69','\x77\x37\x74\x5a\x4e\x63\x4b\x32\x51\x41\x3d\x3d','\x77\x72\x4c\x43\x75\x63\x4b\x79\x4d\x51\x73\x3d','\x4c\x33\x4d\x72\x77\x37\x51\x75','\x77\x37\x31\x49\x4e\x67\x3d\x3d','\x77\x36\x59\x57\x77\x6f\x6f\x3d','\x77\x71\x33\x43\x6a\x43\x76\x44\x6d\x4d\x4f\x6b\x55\x31\x37\x43\x6a\x45\x45\x3d','\x77\x37\x62\x43\x69\x78\x76\x44\x6b\x63\x4f\x61\x77\x70\x4c\x44\x68\x77\x3d\x3d','\x77\x72\x48\x43\x68\x30\x72\x44\x6f\x38\x4f\x64\x77\x71\x4a\x36\x46\x32\x72\x43\x6c\x55\x72\x43\x69\x56\x51\x4f','\x51\x4d\x4b\x52\x77\x71\x7a\x43\x68\x73\x4f\x49\x54\x38\x4f\x67\x77\x37\x38\x3d','\x55\x38\x4b\x4b\x77\x72\x6b\x75\x50\x38\x4b\x39\x59\x73\x4f\x39\x77\x35\x39\x2f\x65\x4d\x4b\x75','\x62\x54\x4d\x55\x77\x37\x6b\x7a\x44\x4d\x4f\x50\x48\x67\x37\x43\x72\x45\x34\x51','\x77\x36\x70\x4d\x46\x73\x4b\x2b\x61\x38\x4b\x45\x62\x73\x4b\x76\x66\x6e\x6a\x43\x71\x45\x44\x44\x71\x4d\x4b\x4e\x50\x30\x4c\x44\x74\x4d\x4b\x64\x4e\x63\x4f\x6c\x56\x47\x6a\x43\x6b\x44\x62\x44\x70\x73\x4b\x30\x77\x72\x30\x3d','\x77\x34\x72\x43\x67\x4d\x4f\x37\x77\x35\x2f\x43\x76\x51\x3d\x3d','\x77\x34\x44\x44\x72\x42\x5a\x4c\x41\x77\x3d\x3d','\x54\x48\x62\x44\x67\x4d\x4f\x49\x43\x67\x3d\x3d','\x77\x37\x33\x43\x67\x45\x37\x44\x68\x4d\x4f\x34','\x59\x63\x4f\x6e\x77\x6f\x50\x43\x74\x48\x77\x3d','\x77\x70\x39\x67\x77\x72\x6c\x4a\x77\x6f\x76\x44\x6f\x63\x4f\x4b\x77\x35\x58\x44\x6a\x41\x3d\x3d','\x4d\x78\x35\x64\x77\x35\x5a\x6a','\x77\x70\x6c\x48\x54\x45\x41\x4a','\x77\x35\x52\x73\x41\x73\x4b\x74\x53\x77\x3d\x3d','\x77\x70\x44\x43\x76\x4d\x4b\x77\x54\x77\x3d\x3d','\x77\x36\x35\x75\x48\x4d\x4b\x53\x52\x51\x3d\x3d','\x4f\x38\x4f\x33\x4d\x55\x6a\x43\x71\x58\x39\x57\x50\x51\x3d\x3d','\x77\x6f\x5a\x55\x5a\x6b\x30\x3d','\x42\x63\x4f\x56\x50\x52\x4c\x43\x6e\x51\x3d\x3d','\x77\x37\x51\x32\x45\x58\x4c\x44\x76\x51\x3d\x3d','\x77\x71\x52\x41\x48\x4d\x4f\x2b\x5a\x63\x4b\x4f\x62\x63\x4b\x32\x53\x47\x50\x43\x6e\x6b\x63\x3d','\x42\x46\x6e\x43\x73\x4d\x4f\x50\x4a\x73\x4b\x6f\x77\x70\x55\x62\x56\x77\x67\x3d','\x41\x38\x4b\x59\x77\x37\x6b\x49','\x77\x72\x59\x4a\x77\x72\x55\x79\x77\x36\x6b\x3d','\x56\x38\x4f\x58\x77\x71\x35\x35\x77\x71\x6f\x3d','\x77\x36\x5a\x48\x46\x38\x4f\x51\x5a\x4d\x4b\x4b\x63\x4d\x4b\x78','\x77\x37\x48\x43\x6e\x38\x4f\x42\x77\x35\x2f\x43\x6f\x41\x3d\x3d','\x77\x6f\x44\x43\x6e\x43\x74\x53\x65\x78\x62\x44\x74\x52\x68\x59','\x65\x54\x34\x43\x77\x70\x54\x43\x72\x67\x3d\x3d','\x4b\x6a\x38\x34\x77\x35\x6f\x4e','\x77\x34\x33\x43\x6f\x79\x2f\x44\x6e\x63\x4f\x41','\x59\x4d\x4f\x79\x77\x6f\x4c\x43\x73\x6e\x37\x44\x6f\x78\x52\x31\x77\x70\x70\x49\x77\x72\x30\x3d','\x77\x37\x55\x71\x52\x30\x37\x43\x74\x41\x3d\x3d','\x77\x70\x72\x44\x74\x73\x4b\x57\x77\x37\x73\x53','\x56\x73\x4b\x45\x77\x70\x6b\x6e\x44\x51\x3d\x3d','\x77\x36\x38\x70\x77\x6f\x31\x77\x77\x37\x63\x3d','\x44\x4d\x4b\x63\x77\x71\x48\x44\x76\x44\x41\x6f\x43\x54\x34\x70\x77\x34\x4c\x43\x6b\x51\x3d\x3d','\x66\x73\x4b\x55\x77\x70\x54\x43\x69\x38\x4f\x48','\x77\x34\x30\x34\x44\x73\x4f\x4c\x4e\x43\x6f\x33\x49\x4d\x4b\x4a\x77\x71\x66\x44\x73\x47\x6f\x77\x77\x34\x46\x70\x77\x36\x55\x3d','\x77\x72\x49\x4c\x56\x77\x70\x76\x77\x34\x54\x43\x70\x63\x4b\x71\x54\x38\x4b\x57\x51\x4d\x4b\x65\x4c\x78\x67\x35\x77\x37\x6b\x73\x48\x46\x76\x44\x73\x38\x4f\x6c\x77\x34\x4d\x56\x77\x36\x55\x58\x77\x35\x6f\x30\x77\x70\x54\x43\x73\x32\x77\x76\x54\x73\x4f\x4c\x77\x37\x33\x43\x69\x43\x31\x75\x42\x4d\x4f\x6f\x77\x6f\x2f\x44\x72\x38\x4f\x46\x77\x36\x2f\x44\x6c\x68\x67\x53\x52\x63\x4f\x6b\x77\x35\x31\x62\x51\x55\x6c\x5a\x77\x6f\x6b\x6f\x65\x4d\x4f\x34\x4c\x44\x4c\x44\x6a\x45\x2f\x43\x74\x67\x3d\x3d','\x49\x63\x4f\x31\x77\x36\x77\x30','\x77\x36\x52\x4c\x45\x73\x4f\x36\x5a\x67\x3d\x3d','\x77\x34\x64\x72\x48\x67\x41\x61','\x42\x78\x62\x43\x73\x4d\x4b\x70\x77\x37\x63\x3d','\x77\x70\x39\x50\x77\x72\x6c\x4f\x77\x6f\x6b\x3d','\x77\x37\x30\x2b\x58\x45\x4c\x43\x67\x41\x3d\x3d','\x77\x36\x4e\x7a\x63\x42\x50\x43\x6f\x41\x3d\x3d','\x61\x73\x4f\x67\x77\x72\x37\x43\x76\x48\x6b\x3d','\x50\x4d\x4f\x2b\x77\x37\x59\x30','\x77\x36\x2f\x43\x6b\x38\x4f\x70\x77\x37\x72\x43\x69\x51\x3d\x3d','\x77\x37\x6e\x43\x6f\x4d\x4b\x57\x77\x37\x4e\x5a','\x77\x36\x35\x54\x53\x77\x30\x3d','\x77\x72\x46\x6c\x77\x72\x4a\x44\x77\x71\x6f\x3d','\x77\x36\x51\x53\x56\x73\x4f\x64\x52\x67\x3d\x3d','\x4e\x78\x55\x7a\x77\x37\x34\x36','\x42\x6c\x45\x53\x77\x37\x6b\x30','\x77\x70\x74\x4f\x62\x30\x51\x70\x77\x6f\x66\x44\x6f\x38\x4f\x77\x45\x51\x3d\x3d','\x57\x6e\x50\x44\x73\x38\x4f\x4c\x50\x43\x4d\x4d\x77\x6f\x77\x75','\x66\x68\x4c\x44\x69\x73\x4b\x6b\x77\x72\x46\x44\x77\x6f\x58\x43\x6b\x44\x33\x44\x6a\x44\x37\x44\x74\x38\x4f\x68\x77\x37\x59\x67','\x64\x30\x54\x44\x6d\x6a\x46\x46\x42\x63\x4b\x73\x77\x6f\x67\x68\x65\x77\x3d\x3d','\x42\x53\x72\x43\x74\x4d\x4f\x33\x55\x56\x7a\x43\x74\x6d\x78\x46\x77\x72\x6a\x43\x74\x63\x4f\x52\x77\x70\x54\x43\x6b\x4d\x4f\x37\x77\x6f\x6b\x3d','\x58\x73\x4f\x42\x77\x71\x4d\x3d','\x58\x63\x4b\x55\x77\x71\x50\x44\x74\x6d\x73\x76\x4a\x54\x59\x78','\x49\x63\x4b\x44\x66\x41\x3d\x3d','\x77\x34\x30\x64\x77\x71\x35\x59\x77\x34\x76\x44\x70\x4d\x4b\x67\x4d\x77\x6a\x43\x71\x58\x33\x44\x6e\x41\x3d\x3d','\x56\x56\x54\x43\x6f\x4d\x4b\x57\x4d\x63\x4b\x6d\x77\x6f\x6c\x66\x47\x51\x55\x6f\x77\x37\x62\x44\x75\x46\x38\x6c\x77\x36\x6a\x43\x6e\x73\x4b\x35\x66\x4d\x4f\x47\x51\x68\x4a\x6d\x77\x34\x39\x32\x77\x34\x77\x56\x77\x35\x37\x44\x71\x63\x4b\x44\x77\x6f\x30\x77\x45\x41\x72\x44\x67\x63\x4b\x74\x77\x35\x42\x6f\x41\x54\x35\x36\x77\x34\x2f\x44\x6f\x52\x4c\x43\x6c\x31\x62\x44\x73\x63\x4b\x4c\x49\x52\x74\x52\x53\x78\x5a\x44\x63\x4d\x4b\x54\x64\x41\x76\x44\x71\x52\x48\x43\x6e\x55\x6f\x70\x77\x34\x68\x74\x47\x7a\x54\x43\x68\x79\x30\x58\x4f\x48\x7a\x44\x6d\x4d\x4f\x4c\x4b\x4d\x4f\x30\x42\x73\x4f\x36\x77\x6f\x74\x54\x4b\x38\x4b\x33\x4a\x32\x66\x43\x6a\x4d\x4f\x58\x65\x38\x4f\x53\x77\x37\x66\x43\x75\x63\x4f\x74\x65\x31\x4d\x49\x43\x6b\x6a\x44\x70\x47\x52\x43\x77\x34\x48\x43\x76\x58\x78\x58\x77\x70\x45\x59\x77\x6f\x6b\x79\x53\x32\x6b\x4b\x77\x37\x55\x70\x62\x63\x4b\x39\x45\x31\x54\x43\x75\x79\x6b\x75\x5a\x6c\x66\x44\x76\x51\x3d\x3d','\x48\x56\x50\x44\x6d\x69\x38\x3d','\x4f\x67\x76\x43\x68\x63\x4b\x73\x77\x36\x56\x4e\x77\x35\x4c\x43\x6a\x56\x4c\x44\x6d\x57\x6e\x43\x74\x73\x4b\x36\x77\x36\x56\x30\x41\x38\x4b\x4d\x77\x36\x4c\x44\x67\x55\x72\x44\x6f\x78\x42\x36\x42\x4d\x4b\x61\x4d\x54\x6a\x44\x76\x77\x3d\x3d','\x4f\x38\x4f\x73\x4d\x6b\x62\x43\x71\x32\x6b\x3d','\x65\x67\x35\x2f\x77\x34\x56\x48\x77\x35\x37\x44\x6c\x67\x3d\x3d','\x77\x70\x64\x56\x77\x72\x39\x65\x77\x70\x7a\x44\x6a\x38\x4f\x41\x77\x71\x58\x43\x6f\x67\x3d\x3d','\x65\x79\x41\x67\x77\x34\x70\x61\x77\x34\x6e\x43\x6c\x6e\x67\x30\x4c\x6d\x56\x4a\x77\x37\x62\x43\x69\x48\x50\x43\x6f\x38\x4b\x6e\x4a\x73\x4b\x72\x77\x71\x44\x44\x75\x4d\x4f\x4a\x43\x38\x4f\x43\x77\x35\x45\x30\x4d\x31\x46\x6a\x77\x37\x58\x43\x72\x73\x4f\x43\x57\x4d\x4f\x63\x58\x73\x4b\x45\x43\x33\x73\x3d','\x49\x58\x2f\x44\x70\x38\x4f\x55\x77\x37\x62\x44\x6e\x73\x4b\x62\x77\x37\x41\x70','\x56\x4d\x4b\x53\x77\x72\x37\x43\x6e\x38\x4b\x51\x51\x4d\x4f\x71\x77\x37\x5a\x4f\x77\x70\x54\x43\x68\x38\x4b\x64\x4d\x51\x3d\x3d','\x77\x36\x78\x59\x56\x63\x4b\x38\x55\x67\x3d\x3d','\x4f\x38\x4f\x72\x77\x36\x6b\x70\x77\x71\x45\x3d','\x44\x38\x4b\x65\x77\x6f\x33\x44\x6f\x77\x73\x3d','\x77\x72\x2f\x44\x69\x77\x68\x36\x61\x41\x3d\x3d','\x77\x36\x49\x6d\x77\x71\x4a\x31\x77\x34\x41\x3d','\x65\x47\x72\x44\x73\x63\x4f\x4e\x43\x51\x3d\x3d','\x77\x37\x48\x43\x6e\x48\x50\x44\x6e\x73\x4f\x31','\x77\x70\x54\x43\x67\x63\x4b\x36','\x77\x34\x54\x43\x69\x6c\x45\x3d','\x46\x32\x58\x44\x6e\x4d\x4f\x37\x77\x71\x55\x3d','\x42\x38\x4b\x79\x77\x37\x6f\x39\x4c\x41\x3d\x3d','\x61\x73\x4b\x54\x77\x72\x66\x43\x72\x63\x4f\x65','\x77\x34\x7a\x44\x69\x4d\x4b\x37\x46\x38\x4b\x61','\x77\x71\x66\x43\x6f\x4d\x4b\x32\x4d\x52\x63\x3d','\x66\x4d\x4f\x37\x77\x70\x78\x65\x77\x72\x55\x43\x63\x73\x4f\x74\x48\x63\x4f\x79\x46\x4d\x4f\x41\x54\x68\x59\x3d','\x77\x72\x59\x4b\x77\x70\x49\x78\x77\x34\x55\x3d','\x62\x38\x4f\x33\x77\x70\x78\x33\x77\x72\x77\x3d','\x77\x34\x30\x70\x62\x6b\x48\x43\x75\x4d\x4b\x66\x77\x70\x62\x44\x70\x63\x4f\x65\x77\x36\x46\x39\x77\x34\x6e\x43\x75\x63\x4b\x31\x77\x70\x37\x43\x6f\x67\x3d\x3d','\x77\x34\x46\x37\x47\x4d\x4f\x4a\x61\x77\x3d\x3d','\x42\x67\x37\x43\x72\x67\x3d\x3d','\x77\x37\x34\x4c\x44\x77\x3d\x3d','\x77\x34\x34\x37\x45\x41\x3d\x3d','\x42\x32\x2f\x43\x73\x67\x3d\x3d','\x77\x70\x72\x44\x71\x63\x4b\x57\x77\x37\x63\x33\x50\x77\x3d\x3d','\x77\x34\x73\x6e\x52\x38\x4f\x74\x64\x41\x6e\x43\x6d\x63\x4b\x44\x54\x73\x4b\x68\x44\x63\x4b\x68','\x49\x4d\x4f\x69\x49\x41\x3d\x3d','\x77\x37\x4a\x43\x54\x41\x6e\x43\x74\x77\x2f\x44\x74\x54\x42\x31\x77\x36\x31\x6b\x77\x37\x31\x4a\x46\x41\x37\x44\x68\x73\x4f\x56\x51\x38\x4f\x30\x5a\x4d\x4f\x68\x77\x36\x72\x43\x70\x4d\x4b\x4b\x4c\x51\x7a\x43\x69\x73\x4b\x30\x77\x71\x46\x51\x77\x70\x33\x44\x71\x38\x4f\x4e\x4f\x43\x45\x58\x4e\x4d\x4f\x75\x58\x32\x62\x44\x73\x42\x6b\x4e\x77\x70\x78\x4f\x61\x4d\x4f\x57\x66\x48\x4e\x31\x52\x68\x59\x49\x4d\x63\x4f\x41\x77\x36\x38\x4a\x77\x37\x52\x79\x41\x53\x72\x44\x6f\x31\x46\x72','\x77\x34\x67\x6b\x66\x41\x3d\x3d','\x77\x35\x50\x43\x6a\x73\x4b\x32\x77\x37\x42\x66\x77\x36\x72\x43\x72\x79\x59\x4c\x49\x68\x77\x6a\x77\x6f\x4a\x38\x77\x37\x6e\x43\x70\x63\x4b\x57\x77\x36\x4c\x44\x76\x4d\x4f\x75\x77\x37\x52\x70\x44\x63\x4b\x5a\x53\x67\x3d\x3d','\x77\x72\x35\x4f\x55\x6d\x59\x73','\x61\x38\x4f\x69\x77\x6f\x44\x43\x72\x6d\x77\x3d','\x42\x4d\x4b\x66\x77\x6f\x72\x44\x6f\x7a\x63\x3d','\x77\x70\x45\x6b\x77\x70\x63\x4c\x77\x34\x45\x3d','\x77\x72\x76\x43\x6f\x4d\x4b\x6d\x4f\x52\x63\x42','\x49\x79\x33\x43\x6e\x73\x4f\x5a\x55\x41\x3d\x3d','\x77\x36\x72\x43\x6c\x6e\x72\x43\x6d\x38\x4b\x4b','\x77\x35\x35\x59\x63\x73\x4b\x4b\x54\x67\x3d\x3d','\x77\x35\x6c\x6e\x50\x68\x41\x69','\x56\x63\x4b\x7a\x77\x71\x72\x43\x76\x63\x4f\x4a','\x77\x34\x51\x31\x57\x32\x7a\x43\x69\x51\x3d\x3d','\x59\x4d\x4f\x39\x77\x72\x37\x43\x69\x30\x55\x3d','\x47\x4d\x4f\x33\x43\x57\x7a\x43\x6f\x51\x3d\x3d','\x42\x33\x63\x78\x77\x37\x38\x62','\x77\x34\x62\x43\x6b\x46\x33\x43\x70\x73\x4b\x67','\x47\x42\x33\x43\x71\x63\x4b\x4b\x77\x37\x77\x3d','\x77\x37\x58\x43\x67\x6e\x72\x44\x67\x67\x3d\x3d','\x77\x72\x72\x44\x6c\x54\x6c\x76','\x48\x73\x4f\x69\x45\x79\x2f\x43\x73\x51\x3d\x3d','\x77\x34\x4e\x75\x46\x44\x34\x4e','\x77\x72\x54\x44\x76\x4d\x4b\x72\x77\x36\x55\x74','\x77\x6f\x7a\x44\x6e\x42\x70\x2f\x53\x77\x3d\x3d','\x55\x4d\x4b\x52\x77\x71\x76\x43\x69\x38\x4f\x50','\x77\x70\x37\x44\x76\x73\x4b\x64\x77\x37\x59\x3d','\x77\x36\x31\x64\x4d\x63\x4b\x6d\x55\x77\x3d\x3d','\x4f\x69\x6b\x4c\x77\x37\x45\x3d','\x77\x72\x2f\x44\x71\x4d\x4b\x5a\x77\x36\x67\x4a','\x77\x6f\x48\x43\x73\x43\x4a\x63\x55\x51\x3d\x3d','\x54\x63\x4b\x56\x77\x72\x37\x43\x67\x4d\x4f\x50\x44\x4d\x4f\x39\x77\x72\x5a\x58\x77\x70\x76\x43\x6a\x63\x4b\x48','\x77\x34\x31\x56\x4c\x38\x4b\x4f\x64\x41\x3d\x3d','\x56\x6c\x58\x44\x6b\x44\x6b\x3d','\x77\x70\x70\x5a\x65\x30\x51\x3d','\x4f\x38\x4b\x6f\x77\x37\x77\x36\x4d\x77\x3d\x3d','\x77\x35\x48\x43\x69\x30\x7a\x43\x71\x38\x4b\x78\x62\x41\x3d\x3d','\x77\x34\x38\x36\x4f\x63\x4f\x67\x43\x77\x3d\x3d','\x4e\x6a\x78\x53\x77\x36\x35\x6d','\x77\x35\x4d\x4f\x4e\x33\x58\x44\x68\x73\x4f\x6e\x54\x38\x4b\x7a\x77\x37\x56\x76','\x77\x34\x6f\x42\x4e\x6e\x58\x44\x6d\x73\x4f\x6e\x51\x38\x4b\x35\x77\x37\x64\x6c\x4b\x4d\x4f\x30','\x77\x36\x4c\x43\x68\x51\x54\x44\x6b\x73\x4f\x57\x77\x70\x4c\x44\x6c\x45\x6a\x44\x6b\x57\x4a\x74','\x4e\x4d\x4f\x70\x48\x7a\x72\x43\x6e\x68\x55\x79\x59\x79\x45\x56\x57\x6c\x44\x43\x72\x77\x3d\x3d','\x77\x36\x50\x43\x74\x63\x4f\x7a\x49\x55\x45\x54\x77\x70\x67\x63\x58\x42\x48\x44\x72\x73\x4f\x4b\x46\x67\x3d\x3d','\x4f\x68\x4a\x33\x77\x34\x6c\x51\x77\x35\x50\x44\x69\x6b\x6f\x61\x47\x48\x41\x3d','\x77\x34\x67\x73\x41\x38\x4f\x41\x4a\x53\x63\x3d','\x44\x38\x4b\x4f\x77\x72\x6f\x7a\x49\x73\x4b\x39\x64\x4d\x4f\x39\x77\x34\x52\x6e\x59\x38\x4b\x71\x55\x51\x3d\x3d','\x77\x35\x2f\x43\x6e\x56\x7a\x43\x6f\x38\x4f\x6f\x66\x54\x7a\x44\x6c\x4d\x4f\x47\x77\x70\x48\x44\x71\x38\x4f\x55\x54\x4d\x4f\x54\x77\x71\x72\x44\x6f\x73\x4f\x48','\x43\x6e\x2f\x44\x74\x73\x4f\x56\x50\x69\x68\x4d\x77\x6f\x35\x6f\x50\x38\x4f\x6e\x77\x72\x54\x44\x71\x73\x4b\x4c','\x77\x71\x55\x76\x77\x71\x77\x67\x77\x36\x72\x44\x6b\x79\x63\x56','\x64\x4d\x4f\x6c\x48\x54\x72\x43\x6c\x68\x34\x6f\x52\x41\x63\x43\x64\x55\x30\x3d','\x45\x38\x4b\x57\x77\x71\x6e\x43\x76\x69\x55\x69\x4a\x7a\x38\x74\x77\x35\x2f\x43\x6c\x73\x4b\x42\x77\x70\x6c\x64\x77\x36\x49\x78\x48\x63\x4b\x77\x77\x35\x68\x4f\x4c\x63\x4f\x4a\x58\x44\x5a\x61\x63\x38\x4b\x78','\x77\x70\x45\x4a\x77\x6f\x77\x56','\x77\x70\x66\x44\x75\x68\x35\x63\x4f\x6e\x6b\x4f\x77\x71\x5a\x35\x77\x6f\x46\x39\x55\x41\x2f\x43\x74\x43\x63\x6c\x52\x63\x4f\x6f\x4f\x73\x4b\x41','\x56\x4d\x4b\x30\x77\x71\x63\x32\x48\x77\x3d\x3d','\x77\x36\x6c\x47\x56\x42\x44\x43\x73\x41\x3d\x3d','\x77\x37\x58\x43\x67\x56\x48\x44\x69\x38\x4f\x63\x77\x71\x4a\x35\x42\x6e\x66\x43\x73\x6e\x33\x43\x73\x6d\x6b\x65','\x77\x72\x7a\x44\x70\x73\x4b\x31\x77\x34\x6b\x37','\x63\x73\x4f\x77\x77\x6f\x5a\x2b\x77\x71\x73\x76\x53\x38\x4f\x46\x50\x77\x3d\x3d','\x63\x30\x6e\x44\x75\x44\x41\x67','\x77\x70\x35\x58\x51\x6b\x6f\x46','\x50\x69\x72\x43\x75\x4d\x4b\x4d\x53\x67\x3d\x3d','\x77\x35\x59\x56\x77\x71\x4a\x51\x77\x35\x6a\x43\x72\x73\x4b\x62\x63\x67\x44\x43\x75\x57\x45\x3d','\x43\x4d\x4b\x30\x77\x71\x33\x44\x6c\x78\x34\x3d','\x63\x58\x72\x44\x6c\x4d\x4f\x37\x4f\x67\x3d\x3d','\x77\x35\x2f\x43\x72\x30\x7a\x44\x69\x38\x4f\x6c','\x4b\x63\x4f\x76\x77\x37\x45\x79','\x77\x37\x37\x43\x74\x6c\x33\x44\x76\x73\x4b\x67','\x77\x34\x64\x52\x53\x4d\x4b\x75\x62\x77\x3d\x3d','\x45\x73\x4f\x61\x77\x37\x51\x42\x77\x71\x30\x3d','\x56\x7a\x59\x77\x77\x70\x58\x43\x6d\x73\x4f\x68\x54\x4d\x4b\x76','\x77\x37\x62\x43\x6a\x79\x50\x44\x70\x38\x4f\x2f','\x48\x51\x76\x43\x6e\x4d\x4b\x69','\x48\x38\x4f\x36\x47\x6d\x62\x43\x6d\x67\x3d\x3d','\x77\x6f\x44\x43\x6e\x63\x4f\x71\x77\x36\x45\x49\x77\x37\x6a\x44\x72\x33\x64\x65','\x77\x70\x4a\x6e\x41\x52\x45\x58\x5a\x68\x2f\x44\x6c\x6c\x51\x32\x77\x37\x4d\x33\x77\x70\x34\x3d','\x59\x57\x6e\x43\x73\x73\x4f\x51\x77\x37\x2f\x44\x6b\x63\x4f\x4d\x77\x36\x4a\x38','\x77\x71\x4c\x43\x68\x77\x62\x44\x6d\x73\x4b\x65\x77\x70\x37\x44\x6a\x32\x33\x44\x6f\x67\x3d\x3d','\x36\x4b\x36\x4b\x36\x4b\x2b\x71\x35\x6f\x6d\x72\x35\x59\x69\x4c\x37\x37\x32\x66','\x77\x35\x6b\x6b\x42\x38\x4f\x41\x4e\x47\x34\x36\x49\x63\x4f\x64\x77\x37\x6e\x44\x67\x79\x38\x3d','\x77\x35\x58\x44\x72\x38\x4b\x58\x77\x37\x30\x75\x4d\x73\x4f\x62\x55\x4d\x4b\x2f\x77\x34\x67\x70\x77\x72\x42\x76\x4d\x77\x3d\x3d','\x77\x70\x4c\x44\x70\x63\x4b\x4c\x77\x37\x45\x68\x4f\x38\x4f\x51\x51\x41\x3d\x3d','\x46\x54\x45\x37\x77\x72\x76\x43\x6d\x38\x4f\x6c\x55\x63\x4b\x6f\x64\x47\x74\x74\x77\x70\x55\x3d','\x64\x73\x4f\x78\x77\x6f\x30\x32\x77\x72\x6f\x49\x63\x73\x4f\x6c\x46\x73\x4f\x6f\x49\x73\x4f\x4b\x4b\x67\x48\x44\x70\x4d\x4b\x38\x77\x34\x6c\x68\x66\x79\x2f\x44\x6d\x6b\x4a\x5a\x77\x34\x4c\x44\x67\x4d\x4b\x57\x42\x51\x3d\x3d','\x50\x57\x59\x31\x77\x37\x77\x3d','\x53\x4d\x4b\x68\x77\x71\x63\x3d','\x77\x70\x62\x43\x6f\x63\x4b\x50','\x4b\x4d\x4f\x69\x77\x35\x78\x6e\x77\x36\x67\x62\x4c\x38\x4f\x30\x51\x51\x3d\x3d','\x45\x73\x4b\x58\x59\x41\x56\x42\x51\x48\x41\x3d','\x65\x73\x4f\x53\x44\x6a\x4d\x51\x77\x70\x4d\x7a\x45\x54\x6f\x30','\x62\x73\x4b\x78\x77\x6f\x77\x43\x4a\x67\x3d\x3d','\x77\x35\x33\x44\x76\x63\x4f\x66\x77\x71\x72\x44\x6c\x51\x3d\x3d','\x77\x71\x46\x31\x53\x58\x41\x49','\x77\x34\x55\x41\x77\x72\x39\x61\x77\x34\x44\x43\x72\x77\x3d\x3d','\x77\x34\x68\x47\x4e\x63\x4b\x42\x65\x67\x3d\x3d','\x4f\x63\x4f\x2b\x4d\x6d\x6e\x43\x6d\x67\x3d\x3d','\x77\x35\x6a\x43\x6c\x63\x4b\x32\x77\x37\x45\x3d','\x77\x72\x76\x43\x6a\x4d\x4b\x4d\x55\x63\x4f\x63','\x55\x73\x4b\x54\x77\x72\x49\x76\x50\x77\x3d\x3d','\x77\x6f\x48\x43\x6f\x73\x4b\x6c\x52\x51\x3d\x3d','\x77\x35\x37\x44\x6f\x73\x4f\x64\x77\x71\x62\x44\x6e\x31\x51\x3d','\x77\x71\x63\x65\x77\x70\x55\x76\x77\x37\x6f\x3d','\x77\x34\x51\x53\x62\x4d\x4f\x6b\x59\x77\x3d\x3d','\x77\x34\x66\x44\x74\x78\x42\x53\x50\x48\x34\x42\x77\x71\x41\x3d','\x57\x33\x2f\x44\x6f\x41\x77\x48','\x77\x72\x78\x49\x65\x6b\x6f\x34','\x56\x4d\x4f\x6e\x77\x71\x56\x61\x77\x6f\x6b\x3d','\x77\x72\x66\x43\x71\x4d\x4b\x53\x44\x6a\x77\x3d','\x4d\x63\x4f\x64\x4f\x77\x6b\x3d','\x57\x56\x33\x44\x6c\x6a\x41\x6a','\x77\x34\x62\x43\x73\x6d\x50\x43\x73\x73\x4b\x57','\x50\x4d\x4f\x67\x41\x44\x48\x44\x6e\x77\x3d\x3d','\x56\x73\x4b\x64\x77\x72\x4c\x43\x69\x4d\x4f\x63\x52\x73\x4f\x47\x77\x37\x64\x66\x77\x6f\x76\x43\x6b\x51\x3d\x3d','\x77\x6f\x58\x44\x72\x73\x4b\x56\x77\x37\x4d\x4f','\x54\x63\x4b\x57\x77\x72\x48\x43\x67\x73\x4f\x59\x61\x38\x4f\x52\x77\x35\x5a\x79','\x77\x36\x66\x44\x6a\x6a\x56\x79\x42\x51\x3d\x3d','\x77\x71\x58\x44\x6e\x4d\x4b\x74\x77\x35\x4d\x6f','\x46\x79\x7a\x43\x6e\x73\x4b\x41\x77\x37\x59\x3d','\x4f\x7a\x66\x43\x6d\x38\x4b\x78\x59\x41\x3d\x3d','\x77\x34\x77\x36\x77\x6f\x4a\x61\x77\x37\x6f\x3d','\x49\x6d\x58\x44\x71\x73\x4f\x46\x77\x72\x67\x3d','\x65\x56\x4c\x44\x6e\x54\x6b\x4c','\x77\x71\x4c\x43\x69\x51\x62\x44\x6b\x73\x4f\x65\x77\x70\x6e\x44\x6a\x6e\x33\x44\x69\x46\x5a\x33\x77\x6f\x30\x3d','\x77\x34\x45\x69\x62\x79\x6e\x43\x72\x63\x4b\x62\x77\x6f\x72\x44\x74\x63\x4b\x2f\x77\x36\x6b\x3d','\x77\x34\x50\x43\x68\x4d\x4b\x31\x77\x37\x6b\x3d','\x54\x48\x50\x44\x6d\x38\x4f\x62\x4f\x51\x3d\x3d','\x45\x38\x4f\x4d\x47\x77\x44\x43\x6b\x51\x3d\x3d','\x77\x6f\x39\x45\x62\x32\x49\x6a\x77\x6f\x2f\x44\x76\x73\x4f\x6d','\x50\x51\x2f\x43\x71\x73\x4b\x49\x53\x67\x3d\x3d','\x49\x63\x4f\x31\x77\x36\x73\x6c\x77\x71\x64\x44\x77\x71\x50\x44\x6b\x4d\x4b\x74','\x50\x54\x62\x43\x6c\x73\x4b\x39\x65\x67\x3d\x3d','\x52\x4d\x4b\x4d\x77\x70\x77\x6c\x49\x51\x3d\x3d','\x77\x34\x4e\x70\x47\x73\x4f\x45\x59\x67\x3d\x3d','\x77\x35\x72\x43\x6e\x63\x4f\x68\x77\x37\x72\x43\x72\x4d\x4f\x70\x77\x72\x5a\x72\x4c\x38\x4b\x79\x45\x67\x3d\x3d','\x77\x72\x64\x67\x77\x6f\x42\x2b\x77\x70\x45\x3d','\x47\x41\x6e\x43\x71\x38\x4b\x73\x59\x51\x3d\x3d','\x77\x37\x4e\x6f\x4f\x63\x4f\x72\x57\x77\x3d\x3d','\x4d\x38\x4f\x6e\x49\x67\x54\x43\x74\x51\x3d\x3d','\x77\x34\x55\x45\x77\x72\x74\x4e','\x66\x4d\x4f\x6b\x77\x6f\x74\x30\x77\x70\x49\x3d','\x56\x38\x4b\x57\x77\x72\x37\x43\x68\x4d\x4f\x42\x51\x63\x4f\x6b\x77\x36\x6b\x3d','\x77\x34\x62\x44\x6e\x38\x4b\x56\x50\x77\x3d\x3d','\x77\x35\x50\x43\x67\x68\x6a\x44\x6c\x4d\x4f\x45','\x77\x37\x54\x43\x6e\x6e\x48\x44\x67\x63\x4b\x6e\x5a\x7a\x6e\x43\x76\x54\x38\x3d','\x77\x34\x41\x46\x4d\x48\x4c\x44\x70\x67\x3d\x3d','\x77\x6f\x48\x43\x72\x4d\x4b\x54\x4d\x7a\x4d\x3d','\x4f\x4d\x4f\x34\x4c\x68\x63\x70','\x55\x38\x4b\x47\x77\x72\x4d\x70\x50\x63\x4f\x31\x51\x38\x4f\x2b\x77\x34\x70\x34\x5a\x41\x3d\x3d','\x49\x6e\x66\x44\x71\x38\x4f\x50\x77\x6f\x45\x3d','\x44\x38\x4f\x73\x4f\x45\x33\x43\x6f\x51\x3d\x3d','\x45\x38\x4f\x52\x4a\x52\x2f\x44\x69\x77\x3d\x3d','\x77\x35\x58\x44\x73\x6a\x6c\x6d\x41\x51\x3d\x3d','\x77\x34\x72\x43\x73\x45\x4c\x43\x73\x73\x4b\x38','\x77\x36\x37\x43\x6c\x57\x33\x44\x6a\x63\x4b\x30\x51\x77\x54\x43\x69\x68\x59\x3d','\x77\x34\x63\x66\x77\x72\x39\x47\x77\x37\x37\x43\x75\x63\x4b\x33\x63\x78\x48\x43\x76\x67\x3d\x3d','\x4d\x73\x4f\x52\x41\x48\x37\x43\x74\x51\x3d\x3d','\x77\x37\x58\x44\x71\x4d\x4f\x56\x77\x72\x76\x44\x6b\x51\x3d\x3d','\x4a\x51\x37\x43\x6d\x63\x4b\x6f\x54\x51\x3d\x3d','\x77\x35\x7a\x44\x72\x63\x4f\x51\x77\x72\x45\x3d','\x77\x6f\x56\x37\x77\x72\x56\x42\x77\x70\x44\x44\x6e\x51\x3d\x3d','\x54\x73\x4b\x37\x77\x6f\x34\x68\x4d\x51\x3d\x3d','\x77\x34\x51\x56\x4d\x4d\x4f\x50\x4f\x67\x3d\x3d','\x4e\x63\x4f\x70\x46\x69\x34\x3d','\x77\x34\x30\x6b\x52\x63\x4f\x6c\x59\x56\x38\x3d','\x77\x37\x35\x62\x59\x4d\x4b\x66\x63\x67\x3d\x3d','\x66\x4d\x4f\x78\x77\x72\x78\x30\x77\x71\x6b\x3d','\x77\x35\x4c\x43\x73\x4d\x4f\x63\x77\x34\x44\x43\x72\x51\x3d\x3d','\x77\x37\x35\x30\x62\x51\x6a\x43\x6e\x41\x3d\x3d','\x4b\x6b\x45\x4f\x77\x36\x6b\x50','\x56\x63\x4b\x4b\x77\x71\x6f\x71\x4c\x67\x3d\x3d','\x77\x34\x44\x43\x69\x73\x4f\x70\x77\x37\x4d\x3d','\x77\x35\x59\x7a\x56\x73\x4f\x76','\x77\x71\x54\x43\x6d\x4d\x4b\x32\x4d\x44\x4d\x3d','\x65\x6a\x45\x6b\x77\x71\x58\x43\x6f\x51\x3d\x3d','\x48\x38\x4f\x45\x49\x69\x33\x43\x76\x67\x3d\x3d','\x77\x6f\x78\x4f\x66\x77\x3d\x3d','\x77\x36\x66\x43\x76\x55\x30\x3d','\x77\x36\x46\x57\x48\x63\x4f\x77\x66\x4d\x4b\x43\x62\x4d\x4b\x73\x4f\x7a\x7a\x43\x67\x42\x76\x44\x70\x63\x4f\x55\x46\x67\x6b\x3d','\x77\x71\x33\x44\x6f\x38\x4b\x59\x46\x73\x4b\x51\x77\x37\x58\x43\x75\x57\x59\x79\x77\x71\x6e\x44\x6d\x63\x4b\x64\x64\x55\x74\x66\x77\x70\x37\x43\x71\x4d\x4f\x4f\x48\x41\x42\x48\x77\x70\x7a\x44\x73\x43\x62\x43\x6e\x4d\x4f\x61\x77\x35\x6e\x44\x74\x4d\x4b\x48\x51\x73\x4b\x44\x56\x33\x4d\x62\x77\x71\x45\x42\x77\x72\x64\x6b\x58\x48\x34\x68\x77\x71\x72\x43\x68\x33\x31\x50\x42\x38\x4f\x67\x77\x70\x70\x4c\x77\x71\x2f\x44\x6b\x6d\x64\x67\x77\x70\x62\x43\x69\x63\x4b\x4e\x77\x37\x6a\x44\x74\x6c\x4a\x6d\x77\x36\x4e\x55','\x77\x37\x4e\x59\x55\x51\x30\x3d','\x48\x77\x6e\x43\x6e\x4d\x4b\x7a\x54\x41\x3d\x3d','\x77\x35\x6e\x43\x6a\x38\x4b\x72\x77\x36\x68\x4f','\x77\x37\x52\x58\x41\x63\x4f\x36\x5a\x73\x4b\x4d','\x51\x73\x4b\x51\x77\x71\x30\x67\x49\x73\x4f\x6f\x5a\x63\x4f\x32\x77\x35\x68\x2b\x5a\x38\x4b\x7a\x54\x6d\x76\x43\x73\x67\x3d\x3d','\x50\x43\x48\x43\x73\x4d\x4f\x79\x57\x51\x3d\x3d','\x77\x34\x6e\x44\x70\x63\x4f\x58\x77\x6f\x44\x44\x6e\x51\x3d\x3d','\x44\x73\x4f\x2b\x46\x7a\x72\x43\x72\x67\x3d\x3d','\x4b\x63\x4f\x4b\x77\x34\x73\x73\x77\x72\x6b\x3d','\x77\x35\x4d\x72\x4c\x38\x4f\x59\x47\x41\x3d\x3d','\x61\x63\x4f\x72\x77\x70\x6c\x71\x77\x6f\x45\x3d','\x77\x34\x45\x70\x49\x6c\x62\x44\x6f\x77\x3d\x3d','\x48\x56\x50\x43\x70\x73\x4b\x57','\x77\x36\x54\x44\x75\x63\x4b\x72\x4a\x38\x4b\x64','\x50\x33\x33\x43\x6a\x38\x4b\x72\x41\x77\x3d\x3d','\x55\x4d\x4b\x64\x77\x71\x7a\x43\x6b\x77\x3d\x3d','\x77\x35\x6e\x43\x6f\x4d\x4b\x38\x77\x35\x78\x4e','\x52\x73\x4b\x4d\x77\x6f\x62\x43\x71\x73\x4f\x41','\x77\x37\x58\x43\x6d\x47\x4c\x43\x6f\x38\x4b\x72','\x77\x37\x66\x43\x71\x73\x4b\x74\x4d\x77\x59\x64\x77\x34\x4d\x4d','\x4c\x53\x4d\x49','\x77\x36\x4d\x7a\x77\x70\x6c\x31\x77\x37\x67\x3d','\x77\x6f\x56\x72\x77\x71\x4e\x59\x77\x70\x44\x44\x68\x38\x4f\x35','\x57\x6e\x2f\x44\x71\x38\x4f\x58\x50\x79\x46\x57\x77\x70\x55\x3d','\x77\x35\x41\x4b\x4d\x57\x54\x44\x67\x63\x4f\x39\x5a\x67\x3d\x3d','\x77\x36\x78\x55\x64\x38\x4b\x43\x61\x6e\x6a\x43\x67\x69\x49\x3d','\x77\x37\x35\x2f\x44\x63\x4b\x6f\x52\x77\x3d\x3d','\x77\x6f\x4c\x43\x72\x63\x4b\x77\x53\x63\x4f\x5a\x77\x72\x48\x44\x74\x67\x3d\x3d','\x49\x6e\x62\x44\x74\x4d\x4f\x44\x77\x71\x44\x44\x67\x63\x4b\x4b\x77\x37\x45\x3d','\x48\x63\x4f\x79\x50\x6e\x4c\x43\x72\x41\x3d\x3d','\x77\x36\x51\x44\x58\x4d\x4f\x53\x51\x41\x3d\x3d','\x77\x35\x5a\x64\x46\x73\x4b\x79\x59\x41\x3d\x3d','\x77\x6f\x6e\x44\x72\x78\x39\x41\x63\x77\x3d\x3d','\x41\x4d\x4f\x4f\x50\x46\x50\x43\x6d\x77\x3d\x3d','\x52\x58\x6e\x44\x74\x38\x4f\x66\x4a\x79\x55\x3d','\x77\x71\x48\x43\x75\x69\x5a\x6c\x57\x41\x3d\x3d','\x77\x34\x66\x43\x6e\x73\x4f\x71\x77\x36\x62\x43\x76\x38\x4f\x34','\x77\x36\x6e\x43\x6e\x32\x38\x3d','\x56\x79\x48\x43\x71\x4d\x4f\x36\x53\x67\x3d\x3d','\x77\x34\x30\x6a\x59\x32\x6e\x43\x72\x38\x4b\x4f\x77\x70\x30\x3d','\x77\x35\x38\x75\x65\x47\x76\x43\x6f\x73\x4b\x57\x77\x70\x7a\x44\x70\x4d\x4f\x67\x77\x36\x6c\x36\x77\x35\x54\x43\x73\x38\x4b\x31','\x77\x72\x72\x44\x6d\x68\x35\x50\x5a\x67\x3d\x3d','\x77\x37\x73\x54\x51\x73\x4f\x6c\x57\x67\x3d\x3d','\x49\x38\x4b\x76\x77\x35\x59\x2b\x45\x51\x3d\x3d','\x77\x34\x59\x36\x77\x71\x4e\x57\x77\x37\x67\x3d','\x77\x37\x4c\x43\x69\x52\x76\x44\x6b\x4d\x4f\x66\x77\x70\x44\x44\x72\x47\x7a\x44\x76\x56\x63\x3d','\x50\x38\x4f\x77\x4e\x46\x2f\x43\x71\x67\x3d\x3d','\x47\x6b\x54\x44\x6d\x6a\x45\x63\x41\x38\x4b\x71\x77\x70\x41\x3d','\x77\x34\x66\x43\x69\x4d\x4b\x2f\x77\x36\x6c\x53','\x77\x35\x70\x54\x4e\x63\x4b\x57\x59\x79\x58\x43\x70\x33\x76\x44\x68\x6b\x7a\x43\x6d\x6d\x77\x3d','\x77\x34\x77\x4a\x49\x32\x50\x44\x6a\x63\x4f\x6e\x65\x51\x3d\x3d','\x41\x6b\x66\x44\x68\x38\x4f\x2b\x77\x6f\x45\x3d','\x4f\x6d\x54\x43\x6c\x4d\x4b\x77\x43\x41\x3d\x3d','\x77\x71\x4d\x4d\x77\x72\x4d\x6f\x77\x35\x34\x3d','\x41\x43\x44\x43\x74\x63\x4f\x78\x58\x31\x6e\x43\x6a\x6d\x70\x42','\x77\x34\x62\x44\x6a\x73\x4b\x52\x4e\x4d\x4b\x68\x77\x72\x63\x3d','\x77\x6f\x63\x4d\x4b\x6e\x37\x44\x6e\x4d\x4f\x68\x62\x73\x4b\x77','\x46\x41\x54\x43\x6c\x4d\x4b\x39\x53\x6e\x6f\x3d','\x4d\x38\x4f\x47\x49\x51\x2f\x44\x6f\x48\x73\x62\x77\x36\x59\x58\x63\x73\x4f\x49\x77\x35\x38\x3d','\x52\x6e\x72\x44\x76\x38\x4f\x4c\x4e\x6a\x6c\x62','\x77\x36\x72\x44\x6a\x79\x5a\x6b\x55\x52\x46\x47\x46\x67\x3d\x3d','\x77\x6f\x31\x54\x65\x41\x3d\x3d','\x77\x34\x4e\x6d\x4e\x38\x4f\x61\x61\x51\x3d\x3d','\x49\x63\x4b\x7a\x56\x69\x4a\x4a','\x77\x6f\x4e\x44\x55\x77\x3d\x3d','\x4f\x73\x4f\x53\x4d\x77\x3d\x3d','\x77\x6f\x48\x44\x6f\x41\x38\x3d','\x77\x36\x68\x5a\x4f\x51\x3d\x3d','\x77\x70\x6e\x43\x6f\x52\x42\x5a\x57\x41\x3d\x3d','\x49\x38\x4f\x6d\x47\x54\x59\x73','\x50\x38\x4f\x4f\x4b\x45\x44\x43\x69\x67\x3d\x3d','\x77\x6f\x7a\x43\x75\x7a\x4a\x30\x5a\x51\x3d\x3d','\x77\x34\x50\x43\x67\x73\x4b\x70\x77\x37\x4a\x57\x77\x36\x6a\x43\x6a\x32\x51\x64','\x48\x63\x4b\x4b\x77\x72\x2f\x44\x74\x53\x38\x31\x4c\x7a\x59\x37\x77\x34\x54\x43\x6b\x73\x4b\x43\x77\x35\x74\x63\x77\x36\x4d\x3d','\x77\x37\x34\x2f\x45\x73\x4f\x2f\x4e\x51\x3d\x3d','\x62\x79\x4d\x39\x77\x6f\x58\x43\x76\x51\x3d\x3d','\x77\x37\x64\x78\x54\x38\x4b\x59\x54\x41\x3d\x3d','\x49\x38\x4f\x38\x4e\x56\x76\x43\x70\x48\x52\x50\x4b\x6a\x34\x3d','\x56\x38\x4b\x64\x77\x71\x76\x43\x70\x73\x4f\x65\x56\x38\x4f\x33\x77\x37\x4a\x63\x77\x6f\x33\x43\x6c\x73\x4b\x4d','\x77\x35\x45\x2b\x52\x38\x4f\x2b\x64\x41\x3d\x3d','\x77\x34\x48\x43\x6b\x55\x62\x43\x76\x38\x4b\x70\x62\x53\x58\x44\x6b\x73\x4f\x5a\x77\x6f\x7a\x44\x6f\x4d\x4f\x49\x42\x41\x3d\x3d','\x46\x53\x76\x43\x73\x73\x4b\x64\x54\x41\x3d\x3d','\x77\x35\x38\x6f\x66\x6e\x44\x43\x70\x38\x4b\x55\x77\x70\x38\x3d','\x77\x36\x78\x44\x5a\x4d\x4b\x66\x63\x6e\x6a\x43\x6e\x79\x50\x43\x6b\x77\x3d\x3d','\x57\x6d\x6a\x44\x75\x4d\x4f\x4d\x4e\x67\x3d\x3d','\x44\x77\x6e\x43\x6b\x73\x4b\x76\x54\x6d\x72\x43\x68\x38\x4b\x72\x77\x35\x78\x6e\x77\x37\x70\x76\x77\x70\x38\x3d','\x44\x78\x58\x43\x6e\x4d\x4b\x75\x52\x77\x3d\x3d','\x77\x70\x39\x39\x77\x71\x46\x46\x77\x6f\x72\x44\x67\x4d\x4f\x38\x77\x37\x54\x44\x70\x51\x3d\x3d','\x77\x71\x4e\x41\x48\x4d\x4f\x39\x66\x4d\x4b\x5a\x62\x4d\x4b\x75','\x77\x35\x45\x2b\x53\x63\x4f\x36','\x4c\x32\x30\x79\x77\x37\x55\x32\x63\x42\x30\x3d','\x4b\x68\x68\x75\x77\x35\x42\x63\x77\x35\x50\x44\x6d\x51\x3d\x3d','\x77\x72\x58\x43\x71\x4d\x4b\x6d\x4f\x42\x59\x61\x77\x35\x34\x42\x47\x67\x54\x43\x74\x38\x4f\x59','\x77\x72\x72\x43\x75\x73\x4b\x30\x4e\x41\x45\x47\x77\x34\x34\x4d\x43\x77\x3d\x3d','\x4d\x38\x4f\x63\x4b\x52\x45\x6a','\x56\x38\x4b\x4d\x77\x72\x37\x43\x6b\x38\x4f\x50','\x55\x73\x4b\x4c\x77\x72\x45\x7a\x4a\x38\x4f\x30\x64\x73\x4f\x37\x77\x35\x68\x69\x64\x63\x4b\x76\x52\x41\x3d\x3d','\x46\x73\x4b\x43\x63\x78\x39\x4e','\x4a\x33\x41\x74\x77\x37\x45\x6b\x62\x52\x72\x43\x73\x57\x59\x3d','\x77\x37\x4d\x46\x56\x73\x4f\x4a\x66\x51\x3d\x3d','\x77\x35\x59\x39\x77\x6f\x42\x4e\x77\x35\x34\x3d','\x44\x69\x7a\x43\x73\x73\x4b\x6f\x55\x67\x3d\x3d','\x77\x35\x2f\x44\x76\x42\x52\x42\x4d\x58\x55\x59\x77\x72\x64\x75','\x77\x72\x74\x55\x61\x73\x4b\x44\x63\x6d\x62\x43\x6d\x53\x45\x3d','\x4a\x38\x4f\x46\x44\x69\x30\x3d','\x45\x69\x33\x43\x72\x73\x4f\x7a\x55\x6b\x48\x43\x76\x77\x3d\x3d','\x77\x36\x6c\x54\x54\x41\x33\x43\x72\x56\x76\x43\x76\x51\x3d\x3d','\x77\x35\x54\x43\x6d\x45\x33\x43\x72\x38\x4b\x68\x66\x43\x48\x44\x6d\x73\x4f\x65\x77\x6f\x7a\x44\x72\x63\x4f\x4b','\x47\x6b\x4c\x43\x74\x4d\x4b\x57\x49\x41\x3d\x3d','\x77\x70\x2f\x44\x76\x38\x4b\x4f\x77\x37\x6b\x77\x50\x73\x4f\x58\x53\x4d\x4b\x70','\x77\x34\x44\x44\x74\x68\x5a\x57\x4f\x33\x6b\x44\x77\x72\x31\x6b\x77\x71\x5a\x36\x58\x51\x34\x3d','\x77\x35\x33\x44\x74\x42\x42\x57\x4d\x6a\x4d\x59\x77\x37\x39\x6a\x77\x72\x46\x6e\x58\x41\x3d\x3d','\x41\x46\x44\x44\x71\x77\x3d\x3d','\x52\x68\x4d\x48','\x42\x4d\x4f\x6f\x77\x35\x30\x3d','\x77\x71\x64\x4c\x4d\x4d\x4b\x52\x4d\x6d\x6a\x44\x67\x54\x48\x44\x68\x38\x4f\x79\x53\x63\x4b\x57\x46\x73\x4b\x41\x77\x70\x41\x58\x57\x67\x3d\x3d','\x77\x70\x4c\x44\x6a\x38\x4b\x52\x4a\x63\x4f\x70\x77\x71\x70\x35\x49\x42\x73\x71\x77\x72\x4c\x43\x74\x69\x58\x43\x6c\x38\x4b\x4c\x77\x70\x4c\x44\x6d\x6b\x58\x44\x69\x4d\x4f\x6c\x4e\x63\x4f\x4e','\x54\x32\x7a\x43\x6f\x38\x4f\x33\x52\x51\x73\x3d','\x4d\x73\x4f\x59\x47\x54\x67\x41','\x4c\x32\x45\x6f\x77\x37\x63\x37\x63\x51\x7a\x43\x75\x41\x3d\x3d','\x77\x71\x39\x54\x56\x51\x3d\x3d','\x77\x70\x55\x56\x77\x71\x49\x3d','\x61\x38\x4f\x78\x77\x6f\x46\x31\x77\x71\x30\x43\x62\x51\x3d\x3d','\x42\x4d\x4b\x74\x65\x68\x6c\x4e\x53\x43\x72\x44\x73\x67\x3d\x3d','\x77\x72\x33\x44\x6a\x7a\x74\x6c\x53\x51\x38\x4a\x43\x44\x34\x7a\x4b\x4d\x4f\x4a\x50\x41\x3d\x3d','\x77\x36\x38\x65\x57\x54\x58\x43\x6a\x63\x4b\x56\x77\x70\x58\x44\x6f\x63\x4f\x7a\x77\x37\x77\x3d','\x4a\x68\x72\x43\x6b\x4d\x4b\x30','\x77\x34\x51\x35\x5a\x32\x6a\x44\x6f\x73\x4b\x59\x77\x70\x66\x44\x74\x63\x4f\x72','\x77\x34\x77\x45\x77\x72\x74\x50\x77\x35\x33\x44\x73\x63\x4f\x33\x4d\x51\x37\x43\x6f\x6e\x2f\x44\x69\x38\x4f\x39\x4e\x44\x6e\x44\x72\x58\x66\x43\x73\x38\x4b\x77\x45\x79\x70\x55\x77\x70\x37\x44\x71\x47\x44\x44\x6a\x38\x4f\x65\x51\x4d\x4b\x61\x43\x63\x4b\x36\x54\x38\x4b\x6c\x77\x6f\x74\x54\x4f\x63\x4f\x47\x64\x77\x48\x44\x6c\x73\x4f\x54\x77\x72\x44\x44\x74\x4d\x4b\x34\x64\x42\x73\x48\x48\x73\x4b\x67\x77\x35\x49\x32\x54\x38\x4b\x67\x77\x35\x66\x43\x75\x73\x4b\x6d\x53\x48\x6b\x61\x77\x34\x62\x43\x76\x67\x72\x43\x6a\x30\x34\x3d','\x77\x34\x73\x57\x77\x71\x68\x56\x77\x35\x67\x3d','\x77\x6f\x54\x44\x71\x63\x4b\x5a\x77\x37\x51\x36','\x77\x35\x39\x6d\x4e\x38\x4b\x54\x55\x67\x3d\x3d','\x51\x58\x33\x44\x6f\x38\x4f\x7a\x4b\x67\x3d\x3d','\x77\x35\x33\x44\x6e\x54\x68\x6b\x45\x51\x3d\x3d','\x50\x44\x58\x43\x6a\x38\x4f\x6b\x66\x77\x3d\x3d','\x4e\x38\x4f\x54\x4d\x42\x77\x42','\x45\x38\x4f\x72\x47\x51\x50\x44\x76\x51\x3d\x3d','\x5a\x38\x4b\x78\x77\x71\x67\x6b\x4b\x41\x3d\x3d','\x77\x35\x38\x39\x5a\x6d\x33\x43\x75\x67\x3d\x3d','\x4c\x7a\x77\x58','\x77\x34\x72\x43\x71\x57\x6e\x44\x68\x73\x4f\x45\x77\x72\x4e\x6b\x4d\x58\x7a\x43\x74\x30\x72\x43\x72\x6c\x4d\x4f','\x4c\x4d\x4f\x39\x77\x36\x73\x59\x77\x6f\x55\x3d','\x77\x72\x6e\x43\x6b\x33\x44\x44\x69\x73\x4b\x68\x58\x51\x4c\x43\x6e\x41\x3d\x3d','\x77\x6f\x4a\x72\x77\x71\x39\x59','\x77\x36\x55\x6c\x77\x72\x41\x76\x77\x37\x7a\x44\x6a\x53\x30\x64','\x77\x6f\x67\x75\x5a\x57\x72\x43\x75\x73\x4b\x49\x77\x70\x66\x44\x76\x51\x3d\x3d','\x49\x38\x4f\x59\x42\x53\x6b\x4d','\x65\x38\x4f\x54\x77\x71\x62\x43\x69\x45\x34\x3d','\x44\x33\x44\x43\x73\x38\x4b\x48\x45\x41\x3d\x3d','\x42\x6b\x34\x61\x77\x34\x77\x31','\x77\x6f\x70\x7a\x65\x58\x73\x63','\x77\x6f\x72\x43\x6e\x53\x74\x44\x65\x7a\x48\x44\x6a\x52\x31\x41\x77\x6f\x76\x44\x73\x41\x3d\x3d','\x48\x4d\x4f\x6b\x49\x67\x72\x44\x76\x51\x3d\x3d','\x4e\x4d\x4f\x31\x41\x51\x3d\x3d','\x65\x4d\x4f\x74\x77\x70\x74\x39\x77\x72\x41\x66\x65\x73\x4f\x73\x41\x4d\x4f\x7a\x4a\x73\x4f\x4a\x61\x41\x44\x44\x70\x51\x3d\x3d','\x51\x4d\x4b\x71\x77\x6f\x58\x43\x6f\x38\x4f\x50','\x77\x37\x48\x43\x6f\x57\x72\x43\x71\x38\x4b\x6e','\x77\x37\x62\x44\x68\x73\x4b\x7a\x4a\x73\x4b\x6e','\x77\x37\x37\x43\x69\x58\x66\x44\x76\x73\x4f\x53','\x77\x36\x76\x44\x68\x63\x4f\x57\x77\x71\x2f\x44\x6d\x41\x3d\x3d','\x77\x37\x7a\x43\x68\x47\x76\x44\x6c\x67\x3d\x3d','\x63\x63\x4f\x37\x77\x6f\x62\x43\x76\x6d\x4d\x3d','\x77\x34\x37\x43\x68\x77\x50\x44\x68\x73\x4f\x77','\x42\x57\x38\x33\x77\x36\x49\x43','\x77\x35\x2f\x44\x70\x4d\x4f\x44\x77\x71\x62\x44\x6b\x6c\x77\x58\x64\x41\x3d\x3d','\x54\x7a\x59\x2b\x77\x70\x37\x43\x67\x77\x3d\x3d','\x4d\x47\x58\x44\x74\x73\x4f\x4a\x77\x71\x4c\x44\x69\x63\x4b\x71\x77\x37\x45\x3d','\x77\x35\x58\x43\x71\x78\x6a\x44\x72\x63\x4f\x51','\x77\x6f\x44\x43\x72\x63\x4b\x52\x43\x43\x51\x3d','\x55\x38\x4f\x54\x77\x71\x6c\x50\x77\x72\x73\x3d','\x77\x70\x76\x43\x68\x4d\x4b\x44\x43\x52\x41\x3d','\x77\x71\x7a\x44\x71\x73\x4b\x36\x77\x36\x4d\x55','\x4d\x48\x76\x44\x70\x63\x4f\x45\x77\x71\x50\x44\x6e\x38\x4b\x56\x77\x37\x73\x30\x54\x4d\x4f\x62\x77\x71\x62\x43\x69\x41\x3d\x3d','\x4d\x38\x4f\x46\x4a\x68\x6a\x44\x75\x51\x3d\x3d','\x56\x4d\x4f\x7a\x77\x6f\x4a\x69\x77\x70\x6f\x3d','\x77\x35\x34\x6c\x77\x6f\x56\x32\x77\x35\x34\x3d','\x77\x6f\x78\x62\x77\x70\x31\x6c\x77\x6f\x6b\x3d','\x77\x36\x78\x55\x64\x38\x4b\x43\x61\x6e\x6a\x43\x67\x7a\x30\x3d','\x77\x34\x37\x44\x71\x4d\x4f\x56\x77\x72\x41\x3d','\x57\x54\x77\x33\x77\x72\x6e\x43\x68\x73\x4f\x35','\x4d\x48\x6e\x44\x6f\x38\x4f\x65\x77\x72\x67\x3d','\x77\x70\x48\x44\x6f\x38\x4b\x74\x77\x35\x45\x50','\x65\x63\x4f\x33\x77\x6f\x5a\x2f','\x77\x6f\x62\x43\x6c\x67\x6c\x6e\x55\x41\x3d\x3d','\x77\x34\x31\x54\x50\x4d\x4b\x46\x66\x53\x2f\x43\x71\x48\x58\x44\x6e\x45\x7a\x43\x6d\x6e\x44\x44\x6e\x51\x3d\x3d','\x77\x34\x38\x2b\x65\x57\x4c\x43\x70\x38\x4b\x43\x77\x70\x33\x44\x74\x63\x4f\x68\x77\x37\x31\x2b\x77\x34\x33\x43\x73\x38\x4b\x70\x77\x6f\x38\x3d','\x77\x35\x33\x43\x73\x38\x4b\x53\x77\x34\x64\x64','\x4b\x38\x4f\x30\x77\x36\x67\x77\x77\x72\x52\x2f\x77\x72\x72\x44\x73\x73\x4b\x46\x63\x41\x3d\x3d','\x4c\x54\x64\x74\x77\x34\x70\x67','\x77\x37\x54\x44\x69\x73\x4f\x39\x77\x6f\x48\x44\x69\x6b\x51\x53\x56\x6d\x58\x44\x6d\x73\x4b\x47\x48\x45\x7a\x44\x75\x41\x3d\x3d','\x4c\x77\x4c\x43\x6b\x51\x3d\x3d','\x4f\x6a\x38\x63\x77\x37\x4d\x79\x44\x4d\x4f\x43\x42\x54\x50\x43\x72\x58\x34\x4c\x48\x77\x3d\x3d','\x77\x35\x4c\x44\x72\x73\x4b\x58\x77\x37\x51\x36','\x77\x34\x66\x43\x69\x4d\x4f\x70\x77\x36\x66\x43\x75\x77\x3d\x3d','\x43\x4d\x4b\x6b\x57\x7a\x46\x50','\x43\x6c\x6e\x43\x75\x4d\x4b\x53\x4a\x4d\x4b\x39\x77\x71\x6f\x51\x48\x67\x77\x3d','\x5a\x73\x4f\x64\x77\x70\x6a\x43\x73\x31\x30\x3d','\x77\x35\x5a\x68\x4c\x43\x59\x70','\x4c\x52\x38\x30\x77\x35\x49\x4b','\x77\x36\x52\x41\x42\x38\x4f\x4c\x63\x41\x3d\x3d','\x42\x56\x54\x44\x74\x38\x4f\x2b\x77\x71\x38\x3d','\x4d\x73\x4f\x4a\x77\x35\x59\x6a\x77\x72\x4d\x3d','\x77\x37\x6a\x43\x6f\x69\x2f\x44\x6d\x4d\x4f\x58','\x77\x35\x72\x43\x6b\x45\x33\x43\x72\x73\x4b\x67\x5a\x77\x3d\x3d','\x4a\x58\x7a\x44\x73\x73\x4f\x41\x77\x71\x6b\x3d','\x77\x37\x73\x59\x4b\x47\x54\x44\x76\x67\x3d\x3d','\x58\x69\x41\x78\x77\x72\x41\x3d','\x77\x34\x31\x46\x4b\x38\x4b\x48','\x65\x57\x50\x44\x68\x68\x55\x70','\x77\x36\x35\x66\x54\x42\x58\x43\x6f\x51\x3d\x3d','\x49\x4d\x4f\x72\x4e\x55\x30\x3d','\x48\x78\x6e\x43\x6e\x73\x4b\x63\x59\x77\x3d\x3d','\x43\x52\x51\x49\x77\x35\x34\x66','\x53\x63\x4b\x71\x77\x72\x4d\x63\x44\x77\x3d\x3d','\x49\x4d\x4f\x59\x46\x54\x45\x42','\x49\x4d\x4f\x70\x77\x36\x41\x6d','\x44\x38\x4f\x66\x77\x37\x59\x4b\x77\x70\x51\x3d','\x77\x34\x6f\x42\x4c\x47\x51\x3d','\x4c\x52\x68\x69\x77\x35\x42\x55\x77\x34\x2f\x44\x6d\x33\x67\x6e\x44\x6b\x6c\x33','\x77\x34\x59\x37\x56\x4d\x4f\x69\x58\x41\x3d\x3d','\x77\x71\x4c\x43\x6a\x63\x4b\x4c\x65\x63\x4f\x68','\x77\x37\x66\x43\x69\x77\x55\x3d','\x77\x36\x54\x43\x68\x55\x6b\x3d','\x77\x36\x2f\x43\x72\x6a\x72\x44\x75\x73\x4f\x2f','\x77\x35\x70\x67\x46\x67\x45\x3d','\x63\x63\x4b\x70\x77\x70\x38\x65','\x77\x35\x7a\x43\x76\x58\x72\x43\x6a\x38\x4b\x4a','\x66\x4d\x4b\x32\x77\x6f\x37\x43\x69\x4d\x4f\x62','\x77\x37\x62\x43\x6b\x30\x62\x44\x76\x63\x4f\x64','\x77\x6f\x51\x52\x77\x70\x55\x3d','\x42\x38\x4b\x56\x77\x72\x44\x43\x67\x73\x4b\x48\x51\x63\x4f\x71\x77\x37\x39\x48','\x44\x4d\x4b\x59\x59\x68\x35\x63','\x41\x56\x2f\x43\x73\x63\x4b\x47\x49\x4d\x4b\x6e','\x77\x6f\x5a\x76\x77\x71\x56\x4a\x77\x70\x66\x44\x6e\x51\x3d\x3d','\x77\x37\x37\x43\x6e\x33\x4c\x44\x69\x63\x4b\x77\x51\x52\x6e\x44\x6e\x51\x4e\x56\x77\x6f\x4e\x6b\x77\x72\x54\x43\x6d\x51\x3d\x3d','\x77\x35\x4c\x44\x6b\x51\x46\x79\x4c\x67\x3d\x3d','\x46\x46\x66\x44\x74\x63\x4f\x63\x77\x6f\x30\x3d','\x77\x36\x76\x44\x71\x63\x4b\x4c\x49\x38\x4b\x49','\x77\x6f\x5a\x6b\x77\x72\x5a\x55','\x49\x38\x4f\x63\x4c\x52\x62\x44\x75\x32\x41\x3d','\x77\x35\x7a\x43\x72\x73\x4f\x63\x77\x36\x7a\x43\x67\x67\x3d\x3d','\x77\x34\x62\x43\x72\x33\x6e\x43\x73\x38\x4b\x64','\x77\x35\x50\x43\x6b\x38\x4b\x2b\x77\x37\x78\x4f\x77\x36\x45\x3d','\x77\x35\x63\x4b\x4b\x58\x2f\x44\x6f\x77\x3d\x3d','\x77\x36\x51\x4a\x4d\x58\x76\x44\x6f\x51\x3d\x3d','\x47\x6c\x50\x43\x67\x73\x4b\x79\x44\x67\x3d\x3d','\x4e\x73\x4b\x41\x56\x77\x56\x76','\x77\x70\x44\x43\x75\x4d\x4b\x30\x57\x4d\x4f\x65\x77\x72\x76\x44\x6b\x6a\x46\x68\x77\x70\x72\x43\x6a\x51\x3d\x3d','\x77\x6f\x66\x43\x74\x68\x5a\x79\x52\x51\x3d\x3d','\x59\x73\x4f\x39\x77\x6f\x37\x43\x70\x51\x3d\x3d','\x41\x78\x72\x43\x70\x63\x4b\x2b\x77\x34\x4d\x3d','\x77\x35\x6a\x43\x6d\x47\x62\x44\x72\x73\x4b\x64','\x77\x37\x62\x44\x6c\x52\x52\x6e\x4c\x77\x3d\x3d','\x77\x70\x41\x44\x77\x6f\x59\x6a\x77\x36\x63\x3d','\x77\x34\x46\x64\x50\x68\x49\x55','\x48\x38\x4b\x6c\x77\x34\x63\x4c\x4a\x67\x3d\x3d','\x4c\x77\x41\x77\x77\x35\x6f\x4b','\x77\x70\x64\x4c\x57\x77\x3d\x3d','\x43\x38\x4f\x38\x4f\x67\x3d\x3d','\x77\x70\x44\x43\x70\x4d\x4b\x72\x62\x38\x4f\x55','\x50\x38\x4f\x77\x48\x6a\x7a\x44\x67\x67\x3d\x3d','\x77\x72\x68\x30\x77\x6f\x42\x61\x77\x70\x38\x3d','\x77\x35\x55\x36\x4d\x32\x48\x44\x67\x41\x3d\x3d','\x77\x6f\x73\x49\x77\x70\x6f\x4d\x77\x36\x59\x3d','\x4c\x79\x6a\x43\x72\x63\x4b\x4e\x51\x51\x3d\x3d','\x77\x35\x37\x43\x74\x38\x4f\x67\x77\x37\x62\x43\x6e\x41\x3d\x3d','\x77\x70\x68\x76\x5a\x30\x49\x4a','\x77\x71\x76\x43\x6e\x38\x4b\x74\x4d\x53\x59\x3d','\x77\x34\x68\x61\x50\x4d\x4b\x70\x58\x77\x3d\x3d','\x59\x38\x4f\x78\x77\x6f\x6a\x43\x6c\x6b\x59\x3d','\x77\x70\x48\x43\x75\x63\x4b\x6f\x43\x78\x4d\x3d','\x77\x37\x4d\x36\x77\x72\x39\x57\x77\x36\x59\x3d','\x77\x34\x66\x44\x68\x73\x4b\x66','\x77\x6f\x2f\x43\x6b\x79\x46\x53\x51\x44\x41\x3d','\x50\x48\x54\x44\x72\x38\x4f\x43','\x56\x38\x4f\x61\x77\x71\x50\x43\x69\x6c\x77\x3d','\x49\x38\x4f\x32\x4d\x41\x33\x43\x73\x67\x3d\x3d','\x77\x34\x67\x52\x77\x72\x56\x47\x77\x34\x4c\x43\x70\x4d\x4b\x35\x65\x67\x3d\x3d','\x77\x34\x6a\x43\x73\x33\x54\x44\x70\x38\x4f\x41','\x4f\x38\x4b\x62\x77\x34\x63\x62\x4d\x51\x3d\x3d','\x51\x38\x4b\x56\x77\x72\x49\x70\x48\x77\x3d\x3d','\x4a\x4d\x4f\x34\x4b\x6c\x4c\x43\x72\x6e\x4a\x57\x4b\x77\x3d\x3d','\x77\x72\x72\x44\x70\x63\x4b\x57\x77\x37\x73\x77\x44\x77\x3d\x3d','\x77\x37\x4a\x59\x59\x4d\x4f\x41\x62\x33\x72\x43\x68\x6a\x6a\x43\x67\x73\x4b\x6a\x44\x4d\x4b\x59\x54\x41\x3d\x3d','\x44\x31\x66\x43\x75\x63\x4b\x52\x49\x41\x3d\x3d','\x77\x35\x6a\x44\x74\x63\x4f\x45\x77\x71\x77\x3d','\x4c\x4d\x4f\x79\x77\x37\x59\x77\x77\x72\x6c\x71\x77\x6f\x37\x43\x70\x38\x4f\x42\x64\x79\x78\x33\x4e\x38\x4f\x48\x58\x51\x3d\x3d','\x4d\x4d\x4f\x59\x45\x69\x30\x49\x77\x70\x4d\x6a\x52\x58\x38\x6f\x58\x63\x4f\x51\x77\x6f\x45\x67','\x4e\x6e\x44\x44\x73\x73\x4f\x70\x77\x71\x44\x44\x69\x4d\x4b\x54\x77\x37\x73\x6a\x54\x38\x4f\x32\x77\x71\x33\x43\x70\x63\x4b\x4e','\x77\x6f\x4c\x44\x67\x63\x4b\x6f\x77\x37\x51\x57','\x77\x72\x50\x43\x6e\x38\x4b\x4c\x55\x4d\x4f\x2b','\x47\x63\x4f\x64\x77\x35\x41\x36\x77\x6f\x51\x3d','\x48\x31\x66\x43\x75\x63\x4b\x58\x49\x41\x3d\x3d','\x77\x35\x48\x43\x6d\x46\x48\x44\x71\x38\x4b\x58','\x77\x70\x46\x72\x77\x71\x4e\x70\x77\x70\x58\x44\x6a\x4d\x4f\x7a\x77\x37\x33\x44\x72\x73\x4b\x4a\x77\x72\x59\x69\x52\x48\x59\x3d','\x4c\x54\x42\x4b\x77\x34\x42\x67','\x45\x38\x4f\x44\x47\x43\x37\x44\x70\x41\x3d\x3d','\x77\x34\x66\x44\x72\x51\x68\x64\x4d\x67\x3d\x3d','\x48\x63\x4b\x4b\x77\x72\x2f\x44\x68\x79\x4d\x31\x50\x67\x3d\x3d','\x45\x43\x7a\x43\x71\x63\x4b\x69\x55\x77\x3d\x3d','\x77\x34\x30\x31\x77\x70\x39\x4d\x77\x34\x67\x3d','\x77\x35\x68\x6b\x41\x67\x41\x4c','\x77\x37\x70\x57\x44\x4d\x4b\x33\x5a\x77\x3d\x3d','\x51\x68\x38\x45\x77\x72\x4c\x43\x6f\x77\x3d\x3d','\x77\x72\x6a\x44\x6a\x53\x56\x2f\x51\x41\x3d\x3d','\x77\x36\x38\x48\x43\x31\x2f\x44\x71\x67\x3d\x3d','\x4a\x4d\x4f\x79\x43\x7a\x76\x43\x6e\x67\x3d\x3d','\x77\x37\x37\x43\x67\x32\x7a\x44\x73\x4d\x4b\x77\x56\x78\x6b\x3d','\x77\x37\x72\x43\x71\x73\x4f\x41\x77\x37\x72\x43\x71\x77\x3d\x3d','\x5a\x4d\x4f\x4e\x55\x43\x46\x51\x77\x6f\x35\x70\x41\x32\x6f\x36\x41\x41\x3d\x3d','\x77\x70\x72\x44\x74\x42\x35\x55\x65\x6e\x38\x50\x77\x72\x39\x6e\x77\x72\x64\x6d\x52\x68\x48\x44\x73\x44\x39\x68\x63\x4d\x4f\x7a\x5a\x63\x4b\x42\x77\x70\x45\x3d','\x77\x37\x37\x43\x6e\x33\x4c\x44\x69\x63\x4b\x77\x51\x52\x6e\x44\x6e\x52\x39\x64\x77\x6f\x4a\x31','\x46\x42\x78\x43\x77\x37\x5a\x4e','\x77\x35\x63\x41\x77\x71\x4e\x57\x77\x35\x6f\x3d','\x77\x71\x62\x44\x68\x53\x4a\x70\x58\x51\x3d\x3d','\x48\x53\x62\x43\x76\x38\x4f\x71','\x52\x33\x44\x44\x72\x51\x34\x71','\x77\x36\x6e\x43\x67\x77\x4c\x44\x6e\x4d\x4f\x4c','\x77\x34\x38\x6c\x59\x32\x6a\x43\x71\x73\x4b\x49\x77\x70\x33\x44\x76\x77\x3d\x3d','\x77\x35\x6e\x44\x6a\x38\x4b\x68\x42\x63\x4b\x71','\x77\x36\x54\x43\x70\x30\x66\x44\x74\x63\x4b\x58','\x77\x35\x7a\x44\x75\x41\x4a\x79\x4f\x33\x30\x54\x77\x71\x45\x3d','\x4c\x79\x68\x38\x77\x34\x74\x34','\x56\x52\x34\x6b\x77\x72\x48\x43\x6d\x41\x3d\x3d','\x50\x58\x44\x44\x71\x4d\x4f\x4c\x77\x72\x6a\x44\x68\x51\x3d\x3d','\x77\x36\x33\x44\x6a\x79\x5a\x6e\x53\x41\x5a\x48\x44\x69\x68\x67\x66\x38\x4b\x54\x4e\x73\x4b\x50\x77\x71\x45\x6a\x77\x6f\x50\x43\x71\x41\x4d\x78\x49\x6a\x49\x70\x77\x37\x30\x59\x77\x36\x63\x66\x77\x37\x4c\x44\x6c\x38\x4f\x35\x56\x43\x76\x43\x74\x6b\x70\x37\x53\x78\x78\x34','\x49\x43\x6a\x43\x71\x77\x3d\x3d','\x61\x6b\x6e\x44\x74\x63\x4f\x30\x43\x67\x3d\x3d','\x77\x6f\x44\x44\x76\x73\x4b\x37\x77\x37\x67\x6c','\x41\x73\x4b\x6e\x77\x36\x59\x50\x45\x67\x3d\x3d','\x77\x72\x2f\x43\x72\x4d\x4b\x73\x4f\x67\x59\x48','\x77\x72\x37\x43\x75\x44\x46\x35\x5a\x67\x3d\x3d','\x44\x7a\x7a\x43\x75\x4d\x4b\x30\x77\x34\x45\x3d','\x50\x54\x50\x43\x75\x4d\x4b\x32\x5a\x77\x3d\x3d','\x77\x36\x55\x56\x44\x6e\x72\x44\x67\x67\x3d\x3d','\x42\x4d\x4b\x65\x77\x6f\x37\x44\x6c\x43\x55\x3d','\x77\x72\x4d\x43\x77\x72\x49\x70\x77\x35\x49\x3d','\x77\x37\x52\x31\x50\x73\x4f\x2b\x5a\x41\x3d\x3d','\x50\x57\x41\x70\x77\x37\x63\x37\x61\x44\x54\x43\x75\x47\x58\x43\x6c\x77\x3d\x3d','\x77\x35\x77\x6b\x42\x4d\x4f\x63\x4b\x41\x3d\x3d','\x42\x38\x4b\x55\x77\x37\x4d\x59\x4e\x41\x3d\x3d','\x4b\x38\x4f\x32\x50\x6c\x2f\x43\x73\x48\x4a\x62\x4c\x69\x35\x46\x77\x36\x35\x56','\x77\x34\x66\x43\x6e\x73\x4f\x71\x77\x36\x62\x43\x76\x38\x4f\x34\x77\x6f\x30\x3d','\x77\x35\x37\x44\x67\x38\x4f\x63\x77\x71\x48\x44\x70\x41\x3d\x3d','\x77\x35\x34\x4a\x5a\x32\x7a\x43\x6c\x41\x3d\x3d','\x77\x71\x44\x43\x68\x53\x52\x51\x5a\x41\x3d\x3d','\x77\x70\x31\x44\x65\x55\x34\x6a\x77\x6f\x4c\x44\x6d\x63\x4f\x36\x42\x51\x3d\x3d','\x54\x4d\x4b\x64\x77\x72\x62\x43\x67\x4d\x4f\x43\x56\x77\x3d\x3d','\x77\x6f\x38\x75\x44\x38\x4f\x47\x4e\x44\x45\x33\x49\x67\x3d\x3d','\x56\x6b\x4c\x44\x6e\x44\x67\x41\x42\x51\x3d\x3d','\x58\x55\x6a\x44\x6d\x79\x73\x61\x48\x73\x4b\x70\x77\x70\x30\x35\x61\x73\x4f\x51\x62\x67\x3d\x3d','\x77\x37\x56\x51\x58\x67\x72\x43\x6f\x55\x48\x43\x6f\x77\x3d\x3d','\x4e\x73\x4f\x30\x77\x6f\x44\x43\x73\x33\x7a\x44\x74\x44\x68\x31','\x77\x35\x70\x50\x4b\x41\x3d\x3d','\x42\x31\x6f\x43\x77\x36\x73\x53','\x77\x37\x42\x6c\x41\x73\x4b\x52\x56\x41\x3d\x3d','\x44\x69\x58\x43\x6b\x4d\x4b\x79\x65\x41\x3d\x3d','\x77\x6f\x58\x43\x6c\x79\x74\x51\x66\x54\x59\x3d','\x77\x37\x39\x47\x45\x4d\x4b\x49\x65\x77\x3d\x3d','\x77\x37\x5a\x6b\x63\x67\x3d\x3d','\x77\x37\x63\x57\x4e\x58\x58\x44\x69\x38\x4f\x37\x62\x73\x4b\x66\x77\x37\x35\x6e\x4e\x38\x4f\x30\x64\x63\x4f\x31','\x54\x6e\x6e\x44\x72\x63\x4f\x39\x50\x79\x68\x50\x77\x70\x39\x31\x47\x4d\x4f\x51\x77\x6f\x2f\x44\x6c\x38\x4b\x62','\x77\x71\x33\x44\x6e\x69\x78\x72\x55\x51\x5a\x73\x46\x6a\x34\x74\x4a\x4d\x4f\x64\x4c\x51\x3d\x3d','\x77\x37\x33\x44\x6b\x52\x42\x51\x41\x51\x3d\x3d','\x66\x63\x4f\x56\x77\x70\x35\x30\x77\x71\x6b\x3d','\x77\x72\x58\x43\x67\x73\x4b\x30\x4d\x67\x49\x3d','\x4b\x68\x68\x75\x77\x36\x56\x42\x77\x34\x6e\x44\x6a\x48\x41\x4e\x4c\x33\x42\x65','\x42\x30\x59\x7a','\x46\x63\x4b\x45\x77\x36\x72\x43\x6d\x38\x4b\x5a\x58\x38\x4b\x39\x77\x36\x63\x4f\x77\x6f\x54\x44\x6c\x4d\x4b\x56\x59\x4d\x4b\x4e\x65\x38\x4f\x65\x77\x6f\x38\x3d','\x77\x70\x4c\x43\x70\x38\x4b\x70\x55\x4d\x4f\x56\x77\x72\x48\x44\x70\x58\x52\x34\x77\x70\x66\x43\x6d\x38\x4b\x41\x4d\x77\x41\x3d','\x77\x72\x58\x43\x70\x73\x4b\x77\x4d\x41\x3d\x3d','\x77\x35\x70\x67\x46\x67\x45\x50\x4b\x6b\x62\x43\x6d\x41\x3d\x3d','\x77\x6f\x4c\x44\x71\x63\x4b\x41\x77\x36\x51\x3d','\x55\x73\x4b\x5a\x77\x72\x50\x43\x6b\x73\x4f\x50','\x56\x54\x4d\x36\x77\x72\x58\x43\x6b\x38\x4f\x73\x45\x73\x4b\x2f\x53\x48\x4e\x43\x77\x6f\x52\x39\x77\x34\x6e\x43\x76\x73\x4f\x4c\x77\x36\x6e\x44\x6f\x79\x56\x2f\x66\x67\x6b\x68\x58\x73\x4b\x52','\x46\x38\x4b\x58\x77\x72\x7a\x44\x70\x6a\x49\x3d','\x77\x34\x4d\x6b\x42\x4d\x4f\x4d\x4a\x53\x30\x3d','\x49\x4d\x4f\x49\x50\x52\x37\x44\x76\x47\x41\x3d','\x77\x37\x62\x44\x6b\x63\x4f\x7a','\x77\x6f\x38\x75\x5a\x57\x6e\x43\x6f\x38\x4b\x66\x77\x70\x62\x44\x70\x63\x4f\x68','\x77\x34\x45\x6c\x53\x38\x4f\x6e\x64\x45\x6a\x43\x6c\x63\x4b\x44\x51\x63\x4b\x74\x45\x4d\x4b\x69\x45\x67\x59\x54\x4d\x38\x4f\x4d\x4e\x38\x4f\x46\x44\x38\x4b\x52\x46\x73\x4f\x4c\x62\x56\x51\x3d','\x46\x79\x72\x43\x73\x51\x3d\x3d','\x77\x34\x44\x44\x69\x73\x4b\x35\x48\x38\x4b\x6d','\x58\x30\x7a\x44\x6c\x4d\x4f\x7a\x47\x67\x3d\x3d','\x49\x73\x4f\x68\x4c\x42\x59\x74','\x53\x4d\x4f\x53\x77\x71\x35\x44\x77\x72\x38\x3d','\x49\x7a\x37\x43\x75\x38\x4b\x50\x77\x34\x6b\x3d','\x77\x35\x41\x66\x4b\x58\x6e\x44\x6e\x41\x3d\x3d','\x77\x34\x78\x37\x51\x38\x4b\x31\x59\x41\x3d\x3d','\x77\x37\x6e\x43\x6e\x33\x49\x3d','\x44\x73\x4b\x59\x77\x72\x37\x44\x74\x69\x67\x35\x42\x44\x30\x73\x77\x35\x51\x3d','\x77\x37\x35\x5a\x56\x51\x3d\x3d','\x77\x70\x4a\x68\x77\x72\x6f\x3d','\x77\x35\x68\x6b\x61\x38\x4b\x4f\x53\x77\x3d\x3d','\x44\x41\x41\x75\x77\x35\x73\x2f','\x49\x63\x4f\x65\x4c\x41\x34\x6a','\x4a\x4d\x4f\x49\x4b\x44\x58\x44\x73\x33\x6b\x53','\x77\x37\x58\x43\x67\x56\x48\x44\x69\x38\x4f\x63\x77\x71\x4a\x35\x42\x6e\x66\x43\x73\x6b\x7a\x43\x69\x56\x6b\x75\x44\x73\x4f\x42\x4e\x4d\x4f\x2b\x77\x34\x38\x54','\x77\x35\x45\x66\x77\x6f\x4a\x73\x77\x36\x6b\x3d','\x77\x6f\x6c\x46\x66\x32\x51\x6a\x77\x6f\x76\x44\x6f\x4d\x4f\x77\x47\x38\x4b\x39\x41\x38\x4b\x6b\x66\x6e\x4e\x69\x77\x34\x55\x44\x55\x46\x44\x43\x70\x67\x3d\x3d','\x46\x38\x4f\x35\x43\x69\x33\x44\x6d\x77\x3d\x3d','\x77\x35\x52\x7a\x41\x52\x45\x36','\x77\x37\x5a\x73\x41\x73\x4f\x43\x61\x67\x3d\x3d','\x77\x70\x70\x70\x77\x70\x78\x63\x77\x6f\x73\x3d','\x53\x73\x4b\x5a\x77\x72\x4c\x43\x67\x67\x3d\x3d','\x4e\x73\x4f\x47\x4c\x41\x37\x44\x6f\x51\x3d\x3d','\x4f\x38\x4f\x38\x4a\x47\x72\x43\x74\x6d\x6c\x46\x4a\x6a\x68\x45\x77\x36\x68\x44','\x77\x37\x50\x43\x74\x73\x4b\x44\x77\x34\x74\x34','\x77\x34\x38\x69\x44\x51\x3d\x3d','\x45\x38\x4b\x30\x77\x37\x51\x74\x48\x67\x3d\x3d','\x59\x63\x4f\x6a\x77\x70\x62\x43\x73\x57\x30\x3d','\x4e\x58\x7a\x44\x74\x63\x4f\x63\x77\x71\x44\x44\x6a\x4d\x4b\x48','\x77\x70\x6a\x43\x76\x54\x52\x6d\x61\x77\x3d\x3d','\x77\x70\x4c\x43\x75\x73\x4b\x68\x58\x4d\x4f\x45\x77\x72\x6f\x3d','\x77\x36\x7a\x43\x69\x41\x54\x44\x72\x73\x4f\x37','\x77\x37\x6b\x47\x4a\x63\x4f\x77\x42\x77\x3d\x3d','\x77\x37\x5a\x51\x4f\x4d\x4b\x4a\x55\x77\x3d\x3d','\x4e\x42\x44\x43\x71\x63\x4f\x39\x66\x67\x3d\x3d','\x4d\x63\x4f\x5a\x50\x78\x37\x44\x76\x48\x41\x30\x77\x36\x38\x4b\x61\x73\x4f\x65','\x56\x63\x4b\x33\x77\x71\x37\x43\x74\x73\x4f\x49','\x45\x67\x44\x43\x76\x4d\x4b\x57\x54\x51\x3d\x3d','\x45\x4d\x4b\x41\x77\x70\x72\x44\x71\x69\x67\x3d','\x77\x36\x2f\x43\x6b\x7a\x2f\x44\x68\x73\x4f\x64','\x59\x38\x4b\x66\x77\x70\x58\x43\x6c\x73\x4f\x5a','\x77\x35\x68\x4d\x4b\x38\x4b\x48\x66\x79\x37\x43\x69\x48\x4c\x44\x6d\x31\x54\x43\x6a\x41\x3d\x3d','\x77\x72\x62\x44\x69\x43\x46\x67\x52\x77\x3d\x3d','\x46\x6e\x4c\x44\x6a\x4d\x4f\x64\x77\x72\x38\x3d','\x77\x37\x33\x43\x69\x38\x4b\x44\x77\x36\x64\x38','\x4c\x79\x41\x4c\x77\x37\x45\x77\x44\x63\x4f\x69\x41\x6a\x54\x43\x74\x57\x67\x3d','\x4b\x63\x4f\x70\x49\x45\x37\x43\x72\x48\x6c\x30\x4a\x7a\x4e\x64\x77\x37\x67\x3d','\x48\x63\x4b\x53\x65\x67\x46\x4b','\x4d\x4d\x4f\x65\x44\x41\x3d\x3d','\x77\x35\x68\x4b\x49\x53\x59\x4d','\x77\x70\x56\x38\x77\x72\x4a\x4e\x77\x6f\x33\x44\x6a\x41\x3d\x3d','\x4f\x73\x4f\x65\x4e\x55\x72\x43\x70\x77\x3d\x3d','\x77\x34\x39\x7a\x46\x4d\x4b\x78\x63\x77\x3d\x3d','\x77\x34\x44\x43\x67\x4d\x4b\x70\x77\x37\x68\x55\x77\x37\x44\x43\x6c\x57\x51\x4a\x4b\x41\x3d\x3d','\x4a\x7a\x34\x49\x77\x37\x45\x73\x48\x63\x4f\x6a\x44\x7a\x76\x43\x74\x6e\x34\x42','\x43\x4d\x4f\x4c\x49\x41\x3d\x3d','\x77\x70\x45\x54\x64\x47\x7a\x43\x6e\x4d\x4f\x76\x4d\x73\x4b\x67\x77\x71\x52\x32\x61\x67\x3d\x3d','\x65\x4d\x4f\x78\x77\x6f\x56\x32\x77\x72\x77\x4a\x61\x38\x4b\x6c\x46\x63\x4f\x70\x4a\x4d\x4f\x55\x4b\x67\x4c\x44\x76\x63\x4b\x2f\x77\x34\x64\x74\x4a\x6d\x72\x44\x6d\x55\x46\x63\x77\x34\x50\x44\x6d\x77\x3d\x3d','\x63\x63\x4f\x34\x77\x6f\x4c\x43\x73\x47\x33\x44\x71\x43\x4d\x30\x77\x6f\x74\x61\x77\x72\x7a\x43\x6b\x4d\x4b\x6d\x4f\x77\x3d\x3d','\x52\x38\x4b\x5a\x77\x72\x48\x43\x68\x4d\x4f\x50\x54\x38\x4b\x6f\x77\x37\x68\x52\x77\x70\x58\x43\x6a\x38\x4b\x4d\x4f\x73\x4b\x46\x5a\x4d\x4f\x51\x77\x35\x31\x64\x77\x71\x42\x38\x77\x6f\x55\x73\x77\x34\x50\x43\x6e\x73\x4f\x4d','\x52\x33\x50\x44\x74\x38\x4f\x64','\x77\x37\x6f\x35\x56\x4d\x4f\x79\x57\x67\x3d\x3d','\x4c\x4d\x4b\x73\x77\x72\x6a\x44\x6c\x52\x49\x3d','\x77\x72\x76\x43\x70\x7a\x46\x78\x58\x51\x3d\x3d','\x66\x4d\x4f\x53\x77\x6f\x78\x31\x77\x6f\x45\x3d','\x77\x36\x37\x43\x67\x48\x50\x44\x6a\x63\x4b\x68','\x44\x38\x4b\x5a\x66\x68\x78\x71','\x77\x35\x51\x52\x77\x72\x31\x61\x77\x34\x44\x43\x76\x38\x4b\x57\x63\x51\x58\x43\x72\x77\x3d\x3d','\x4a\x63\x4f\x6a\x48\x7a\x6a\x43\x6a\x52\x34\x46\x57\x44\x30\x62\x55\x77\x3d\x3d','\x4b\x67\x48\x43\x6b\x41\x3d\x3d','\x77\x37\x74\x59\x61\x41\x3d\x3d','\x49\x63\x4b\x75\x77\x35\x73\x50\x50\x67\x3d\x3d','\x77\x34\x72\x44\x68\x4d\x4b\x56','\x77\x72\x33\x43\x67\x7a\x52\x75\x55\x77\x3d\x3d','\x44\x56\x6e\x43\x75\x41\x3d\x3d','\x77\x70\x50\x43\x6f\x38\x4b\x78\x5a\x38\x4f\x69','\x54\x56\x50\x44\x6a\x44\x4d\x4e','\x77\x34\x59\x6a\x56\x63\x4f\x36\x66\x55\x66\x43\x6d\x41\x3d\x3d','\x77\x36\x6b\x38\x62\x31\x4c\x43\x76\x77\x3d\x3d','\x44\x4d\x4f\x78\x77\x36\x51\x35\x77\x6f\x41\x3d','\x41\x79\x4c\x43\x74\x63\x4f\x37\x58\x55\x48\x43\x6c\x47\x70\x56\x77\x71\x51\x3d','\x58\x7a\x77\x6e\x77\x72\x50\x43\x68\x4d\x4f\x30\x66\x63\x4b\x35\x51\x58\x46\x64\x77\x6f\x51\x3d','\x63\x38\x4f\x6e\x77\x70\x2f\x43\x75\x47\x62\x44\x6f\x68\x52\x78\x77\x70\x4a\x58\x77\x71\x6f\x3d','\x77\x35\x58\x43\x6f\x58\x45\x3d','\x77\x37\x7a\x43\x6d\x6e\x37\x44\x6e\x4d\x4b\x4b\x54\x68\x76\x43\x6b\x51\x64\x56\x77\x6f\x4e\x65\x77\x72\x33\x43\x69\x4d\x4b\x54','\x48\x55\x72\x44\x6d\x6a\x70\x46\x45\x73\x4b\x71\x77\x70\x45\x67\x65\x38\x4f\x4d\x61\x56\x76\x43\x69\x38\x4b\x34\x77\x36\x52\x78\x4c\x63\x4f\x2f\x48\x79\x6e\x43\x71\x4d\x4f\x41','\x45\x63\x4b\x33\x77\x70\x7a\x44\x6c\x79\x51\x3d','\x77\x70\x56\x38\x77\x6f\x56\x42\x77\x71\x34\x3d','\x58\x45\x76\x44\x67\x43\x30\x3d','\x77\x34\x35\x70\x43\x73\x4f\x35\x5a\x51\x3d\x3d','\x77\x34\x54\x43\x6d\x45\x55\x3d','\x55\x6b\x6a\x44\x6c\x6a\x34\x63\x47\x4d\x4b\x71\x77\x70\x49\x3d','\x4f\x58\x72\x44\x74\x63\x4f\x59','\x77\x35\x37\x43\x6a\x63\x4f\x44\x77\x37\x50\x43\x71\x41\x3d\x3d','\x77\x34\x6e\x43\x6b\x73\x4f\x74\x77\x36\x30\x3d','\x77\x6f\x4e\x47\x77\x72\x35\x6d\x77\x72\x73\x3d','\x41\x4d\x4f\x38\x43\x53\x6a\x44\x75\x41\x3d\x3d','\x45\x73\x4f\x70\x77\x36\x59\x3d','\x77\x34\x42\x4e\x5a\x45\x52\x69\x77\x6f\x33\x44\x6f\x73\x4f\x34\x47\x4d\x4b\x73\x48\x73\x4b\x53\x4b\x6b\x5a\x70\x77\x34\x4d\x31\x48\x46\x58\x43\x70\x73\x4b\x70\x77\x70\x34\x68\x77\x71\x45\x4c','\x50\x52\x7a\x43\x6e\x67\x3d\x3d'];(function(_0x185aa2,_0x2a1609){var _0x3d59de=function(_0x1649f0){while(--_0x1649f0){_0x185aa2['push'](_0x185aa2['shift']());}};var _0x231956=function(){var _0xa2b91d={'data':{'key':'cookie','value':'timeout'},'setCookie':function(_0xbbefbb,_0x7f6c3c,_0x3c7a72,_0x550f85){_0x550f85=_0x550f85||{};var _0x200af1=_0x7f6c3c+'='+_0x3c7a72;var _0x30e4c8=0x0;for(var _0x30e4c8=0x0,_0x55d9f4=_0xbbefbb['length'];_0x30e4c8<_0x55d9f4;_0x30e4c8++){var _0x24a720=_0xbbefbb[_0x30e4c8];_0x200af1+=';\x20'+_0x24a720;var _0x341730=_0xbbefbb[_0x24a720];_0xbbefbb['push'](_0x341730);_0x55d9f4=_0xbbefbb['length'];if(_0x341730!==!![]){_0x200af1+='='+_0x341730;}}_0x550f85['cookie']=_0x200af1;},'removeCookie':function(){return'dev';},'getCookie':function(_0x18d5ba,_0x501629){_0x18d5ba=_0x18d5ba||function(_0x29309d){return _0x29309d;};var _0x408379=_0x18d5ba(new RegExp('(?:^|;\x20)'+_0x501629['replace'](/([.$?*|{}()[]\/+^])/g,'$1')+'=([^;]*)'));var _0x1b36d4=function(_0x851fe1,_0xd34bf4){_0x851fe1(++_0xd34bf4);};_0x1b36d4(_0x3d59de,_0x2a1609);return _0x408379?decodeURIComponent(_0x408379[0x1]):undefined;}};var _0x34a85b=function(){var _0xdad1f6=new RegExp('\x5cw+\x20*\x5c(\x5c)\x20*{\x5cw+\x20*[\x27|\x22].+[\x27|\x22];?\x20*}');return _0xdad1f6['test'](_0xa2b91d['removeCookie']['toString']());};_0xa2b91d['updateCookie']=_0x34a85b;var _0x96b91f='';var _0x117f16=_0xa2b91d['updateCookie']();if(!_0x117f16){_0xa2b91d['setCookie'](['*'],'counter',0x1);}else if(_0x117f16){_0x96b91f=_0xa2b91d['getCookie'](null,'counter');}else{_0xa2b91d['removeCookie']();}};_0x231956();}(__0x36c60,0xa6));var _0x281f=function(_0x27f547,_0x22df20){_0x27f547=_0x27f547-0x0;var _0x3b20b4=__0x36c60[_0x27f547];if(_0x281f['initialized']===undefined){(function(){var _0x5aaa74=typeof window!=='undefined'?window:typeof process==='object'&&typeof require==='function'&&typeof global==='object'?global:this;var _0x365c56='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';_0x5aaa74['atob']||(_0x5aaa74['atob']=function(_0x23eaa0){var _0x1e7fdf=String(_0x23eaa0)['replace'](/=+$/,'');for(var _0x541ad2=0x0,_0x126d90,_0x3772eb,_0x58dafc=0x0,_0x26fcc6='';_0x3772eb=_0x1e7fdf['charAt'](_0x58dafc++);~_0x3772eb&&(_0x126d90=_0x541ad2%0x4?_0x126d90*0x40+_0x3772eb:_0x3772eb,_0x541ad2++%0x4)?_0x26fcc6+=String['fromCharCode'](0xff&_0x126d90>>(-0x2*_0x541ad2&0x6)):0x0){_0x3772eb=_0x365c56['indexOf'](_0x3772eb);}return _0x26fcc6;});}());var _0x12d602=function(_0x4889f4,_0x115851){var _0x22a0c8=[],_0x220f9a=0x0,_0x123eff,_0x3641ae='',_0x47349b='';_0x4889f4=atob(_0x4889f4);for(var _0x5afdf1=0x0,_0x44caca=_0x4889f4['length'];_0x5afdf1<_0x44caca;_0x5afdf1++){_0x47349b+='%'+('00'+_0x4889f4['charCodeAt'](_0x5afdf1)['toString'](0x10))['slice'](-0x2);}_0x4889f4=decodeURIComponent(_0x47349b);for(var _0x1819a5=0x0;_0x1819a5<0x100;_0x1819a5++){_0x22a0c8[_0x1819a5]=_0x1819a5;}for(_0x1819a5=0x0;_0x1819a5<0x100;_0x1819a5++){_0x220f9a=(_0x220f9a+_0x22a0c8[_0x1819a5]+_0x115851['charCodeAt'](_0x1819a5%_0x115851['length']))%0x100;_0x123eff=_0x22a0c8[_0x1819a5];_0x22a0c8[_0x1819a5]=_0x22a0c8[_0x220f9a];_0x22a0c8[_0x220f9a]=_0x123eff;}_0x1819a5=0x0;_0x220f9a=0x0;for(var _0x1a4462=0x0;_0x1a4462<_0x4889f4['length'];_0x1a4462++){_0x1819a5=(_0x1819a5+0x1)%0x100;_0x220f9a=(_0x220f9a+_0x22a0c8[_0x1819a5])%0x100;_0x123eff=_0x22a0c8[_0x1819a5];_0x22a0c8[_0x1819a5]=_0x22a0c8[_0x220f9a];_0x22a0c8[_0x220f9a]=_0x123eff;_0x3641ae+=String['fromCharCode'](_0x4889f4['charCodeAt'](_0x1a4462)^_0x22a0c8[(_0x22a0c8[_0x1819a5]+_0x22a0c8[_0x220f9a])%0x100]);}return _0x3641ae;};_0x281f['rc4']=_0x12d602;_0x281f['data']={};_0x281f['initialized']=!![];}var _0x133438=_0x281f['data'][_0x27f547];if(_0x133438===undefined){if(_0x281f['once']===undefined){var _0x24998d=function(_0x2de64d){this['rc4Bytes']=_0x2de64d;this['states']=[0x1,0x0,0x0];this['newState']=function(){return'newState';};this['firstState']='\x5cw+\x20*\x5c(\x5c)\x20*{\x5cw+\x20*';this['secondState']='[\x27|\x22].+[\x27|\x22];?\x20*}';};_0x24998d['prototype']['checkState']=function(){var _0x3b3e6c=new RegExp(this['firstState']+this['secondState']);return this['runState'](_0x3b3e6c['test'](this['newState']['toString']())?--this['states'][0x1]:--this['states'][0x0]);};_0x24998d['prototype']['runState']=function(_0x9a1673){if(!Boolean(~_0x9a1673)){return _0x9a1673;}return this['getState'](this['rc4Bytes']);};_0x24998d['prototype']['getState']=function(_0x500ee0){for(var _0x3bd032=0x0,_0x1cde5d=this['states']['length'];_0x3bd032<_0x1cde5d;_0x3bd032++){this['states']['push'](Math['round'](Math['random']()));_0x1cde5d=this['states']['length'];}return _0x500ee0(this['states'][0x0]);};new _0x24998d(_0x281f)['checkState']();_0x281f['once']=!![];}_0x3b20b4=_0x281f['rc4'](_0x3b20b4,_0x22df20);_0x281f['data'][_0x27f547]=_0x3b20b4;}else{_0x3b20b4=_0x133438;}return _0x3b20b4;};var _0x49c3f6=function(){var _0x4a3683=!![];return function(_0x36be33,_0xcb1d94){var _0x461263=_0x4a3683?function(){if(_0xcb1d94){var _0x22859a=_0xcb1d94['apply'](_0x36be33,arguments);_0xcb1d94=null;return _0x22859a;}}:function(){};_0x4a3683=![];return _0x461263;};}();var _0x582b04=_0x49c3f6(this,function(){var _0x26f3b3=function(){return'\x64\x65\x76';},_0x47ac18=function(){return'\x77\x69\x6e\x64\x6f\x77';};var _0x1067d9=function(){var _0x48485e=new RegExp('\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d');return!_0x48485e['\x74\x65\x73\x74'](_0x26f3b3['\x74\x6f\x53\x74\x72\x69\x6e\x67']());};var _0x1a071f=function(){var _0x2eebaa=new RegExp('\x28\x5c\x5c\x5b\x78\x7c\x75\x5d\x28\x5c\x77\x29\x7b\x32\x2c\x34\x7d\x29\x2b');return _0x2eebaa['\x74\x65\x73\x74'](_0x47ac18['\x74\x6f\x53\x74\x72\x69\x6e\x67']());};var _0x4d5f7a=function(_0x5ec815){var _0x1f2c44=~-0x1>>0x1+0xff%0x0;if(_0x5ec815['\x69\x6e\x64\x65\x78\x4f\x66']('\x69'===_0x1f2c44)){_0x5067fa(_0x5ec815);}};var _0x5067fa=function(_0xa58922){var _0xd97a33=~-0x4>>0x1+0xff%0x0;if(_0xa58922['\x69\x6e\x64\x65\x78\x4f\x66']((!![]+'')[0x3])!==_0xd97a33){_0x4d5f7a(_0xa58922);}};if(!_0x1067d9()){if(!_0x1a071f()){_0x4d5f7a('\x69\x6e\x64\u0435\x78\x4f\x66');}else{_0x4d5f7a('\x69\x6e\x64\x65\x78\x4f\x66');}}else{_0x4d5f7a('\x69\x6e\x64\u0435\x78\x4f\x66');}});_0x582b04();var _0x1e3af1=function(){var _0x5c4cbc=!![];return function(_0x475179,_0x1b6298){var _0x376e58=_0x5c4cbc?function(){var _0x4ef302={'MpHgN':function _0x59fb31(_0x5c2e01,_0x51eb6b){return _0x5c2e01===_0x51eb6b;},'ZFsXZ':_0x281f('0x0','\x51\x69\x42\x53'),'UjeaV':function _0x4cb95b(_0x4a4f07,_0x422784){return _0x4a4f07!==_0x422784;},'BenTQ':_0x281f('0x1','\x24\x29\x5d\x40')};if(_0x4ef302[_0x281f('0x2','\x65\x5d\x21\x71')](_0x4ef302[_0x281f('0x3','\x62\x6a\x21\x69')],_0x4ef302[_0x281f('0x4','\x47\x37\x39\x31')])){if(_0x1b6298){if(_0x4ef302[_0x281f('0x5','\x4a\x25\x70\x6a')](_0x4ef302[_0x281f('0x6','\x39\x52\x71\x6a')],_0x4ef302[_0x281f('0x7','\x7a\x42\x44\x2a')])){if(_0x1b6298){var _0xf16804=_0x1b6298[_0x281f('0x8','\x34\x4c\x5a\x38')](_0x475179,arguments);_0x1b6298=null;return _0xf16804;}}else{var _0x5aaca6=_0x1b6298[_0x281f('0x9','\x32\x4d\x38\x66')](_0x475179,arguments);_0x1b6298=null;return _0x5aaca6;}}}else{return node;}}:function(){var _0x510db7={'bxwJg':function _0x4936d4(_0x5f3159,_0x67f1c){return _0x5f3159!==_0x67f1c;},'tugzT':_0x281f('0xa','\x32\x55\x39\x51'),'ejYpY':_0x281f('0xb','\x63\x47\x7a\x5d'),'odkJH':_0x281f('0xc','\x65\x5d\x21\x71'),'jcGrV':_0x281f('0xd','\x39\x52\x71\x6a'),'wgGaF':function _0xe94eff(_0x4db91c,_0x3c134c){return _0x4db91c(_0x3c134c);},'mPYOZ':_0x281f('0xe','\x40\x74\x51\x6e'),'WRGpT':_0x281f('0xf','\x6a\x59\x6e\x32'),'RSOEf':_0x281f('0x10','\x50\x36\x6a\x72'),'WYTbU':function _0x3e19b8(_0x1f10ba,_0x26f4e7,_0x4896e6){return _0x1f10ba(_0x26f4e7,_0x4896e6);},'lznkQ':function _0x454d03(_0x2354b1,_0x2959a7){return _0x2354b1*_0x2959a7;},'KYBOY':_0x281f('0x11','\x31\x25\x38\x64'),'ZlKlm':_0x281f('0x12','\x32\x55\x39\x51')};if(_0x510db7[_0x281f('0x13','\x30\x2a\x54\x51')](_0x510db7[_0x281f('0x14','\x5e\x73\x36\x53')],_0x510db7[_0x281f('0x15','\x47\x37\x39\x31')])){}else{var _0x2d980d=_0x510db7[_0x281f('0x16','\x40\x74\x51\x6e')][_0x281f('0x17','\x7a\x73\x49\x4c')]('\x7c'),_0x4ae99c=0x0;while(!![]){switch(_0x2d980d[_0x4ae99c++]){case'\x30':cbbID[_0x281f('0x18','\x25\x50\x76\x57')]=_0x510db7[_0x281f('0x19','\x5b\x72\x42\x38')];continue;case'\x31':_0x510db7[_0x281f('0x1a','\x71\x4e\x26\x49')]($,_0x510db7[_0x281f('0x1b','\x7a\x42\x44\x2a')])[_0x281f('0x1c','\x43\x55\x79\x66')](_0x510db7[_0x281f('0x1d','\x7a\x42\x44\x2a')],![]);continue;case'\x32':mdui[_0x281f('0x1e','\x51\x69\x42\x53')]({'message':$html[_0x281f('0x1f','\x71\x4e\x26\x49')](),'position':_0x510db7[_0x281f('0x20','\x23\x4c\x50\x6d')]});continue;case'\x33':_0x510db7[_0x281f('0x21','\x4b\x78\x26\x40')](setTimeout,function(){var _0x5d19b8={'wOjsa':function _0x262e7e(_0x5358dc,_0x53f402){return _0x5358dc(_0x53f402);},'LIFbs':_0x281f('0x22','\x32\x55\x39\x51'),'YgMJz':_0x281f('0x23','\x76\x75\x31\x6b'),'OlVBX':_0x281f('0x24','\x4a\x25\x70\x6a'),'doCNS':function _0x491d56(_0x201e68,_0x2639fd){return _0x201e68(_0x2639fd);}};_0x5d19b8[_0x281f('0x25','\x76\x57\x36\x21')]($,_0x5d19b8[_0x281f('0x26','\x5a\x5a\x28\x57')])[_0x281f('0x27','\x32\x55\x39\x51')](_0x5d19b8[_0x281f('0x28','\x30\x2a\x54\x51')]);cbbID[_0x281f('0x29','\x46\x24\x4e\x43')]=_0x5d19b8[_0x281f('0x2a','\x58\x4f\x4b\x21')];_0x5d19b8[_0x281f('0x2b','\x31\x25\x38\x64')]($,_0x5d19b8[_0x281f('0x2c','\x39\x52\x71\x6a')])[_0x281f('0x2d','\x7a\x73\x49\x4c')](_0x5d19b8[_0x281f('0x2e','\x24\x29\x5d\x40')]);},_0x510db7[_0x281f('0x2f','\x30\x54\x4b\x44')](0x2,0x3e8));continue;case'\x34':_0x510db7[_0x281f('0x30','\x50\x36\x6a\x72')]($,_0x510db7[_0x281f('0x31','\x63\x47\x7a\x5d')])[_0x281f('0x32','\x61\x44\x49\x51')](_0x510db7[_0x281f('0x33','\x6a\x59\x6e\x32')]);continue;}break;}}};_0x5c4cbc=![];return _0x376e58;};}();(function(){var _0x57e296={'iAnbp':_0x281f('0x34','\x76\x47\x7a\x79'),'QsVFN':_0x281f('0x35','\x71\x4e\x26\x49'),'yEHjd':function _0x5a4c0c(_0x5afab2,_0x54e6b7){return _0x5afab2(_0x54e6b7);},'xwQaq':_0x281f('0x36','\x63\x25\x62\x4a'),'GkeoS':function _0x1d8ccb(_0x1f4878,_0x193a4d){return _0x1f4878+_0x193a4d;},'IAMnc':_0x281f('0x37','\x32\x55\x39\x51'),'FXpWW':_0x281f('0x38','\x59\x68\x6a\x78'),'HRIac':function _0x3cb7a5(_0x15c144){return _0x15c144();},'IxMqs':function _0x2764b3(_0x579017,_0x3b2654,_0x17ced9){return _0x579017(_0x3b2654,_0x17ced9);}};_0x57e296[_0x281f('0x39','\x33\x38\x74\x47')](_0x1e3af1,this,function(){var _0x1b964e=new RegExp(_0x57e296[_0x281f('0x3a','\x25\x50\x76\x57')]);var _0x14bfb0=new RegExp(_0x57e296[_0x281f('0x3b','\x24\x29\x5d\x40')],'\x69');var _0x36901b=_0x57e296[_0x281f('0x3c','\x6d\x58\x57\x36')](_0x43c727,_0x57e296[_0x281f('0x3d','\x7a\x73\x49\x4c')]);if(!_0x1b964e[_0x281f('0x3e','\x63\x25\x62\x4a')](_0x57e296[_0x281f('0x3f','\x30\x2a\x54\x51')](_0x36901b,_0x57e296[_0x281f('0x40','\x5a\x29\x6d\x61')]))||!_0x14bfb0[_0x281f('0x41','\x6d\x58\x57\x36')](_0x57e296[_0x281f('0x42','\x25\x50\x76\x57')](_0x36901b,_0x57e296[_0x281f('0x43','\x38\x40\x65\x62')]))){_0x57e296[_0x281f('0x44','\x31\x25\x38\x64')](_0x36901b,'\x30');}else{_0x57e296[_0x281f('0x45','\x32\x4d\x38\x66')](_0x43c727);}})();}());if(typeof encode_version!==_0x281f('0x46','\x71\x4e\x26\x49')&&encode_version===_0x281f('0x47','\x47\x37\x39\x31')){var CastleSetting=function(_0x483d55){var _0x43fab8={'soPQT':_0x281f('0x48','\x33\x38\x74\x47'),'qgApM':function _0x545afb(_0x52a093){return _0x52a093();},'FVmJn':function _0x30972a(_0x210f25){return _0x210f25();},'QvhuZ':_0x281f('0x49','\x4a\x38\x52\x52'),'cxVPE':_0x281f('0x4a','\x43\x74\x69\x62'),'zHPUw':function _0x4a43f9(_0x30b578,_0x3c8e4a){return _0x30b578!==_0x3c8e4a;},'Yodro':_0x281f('0x4b','\x7a\x73\x49\x4c'),'oXPgz':_0x281f('0x4c','\x61\x44\x49\x51'),'dBUqX':_0x281f('0x4d','\x68\x25\x7a\x5a'),'wQtmA':_0x281f('0x4e','\x63\x47\x7a\x5d'),'LcpsW':_0x281f('0x4f','\x76\x75\x31\x6b'),'HBPzE':_0x281f('0x50','\x4a\x38\x52\x52'),'dqrhM':function _0x58b631(_0x53c56a,_0x568039){return _0x53c56a(_0x568039);},'SEODQ':_0x281f('0x51','\x33\x38\x74\x47'),'nDSEL':function _0x123472(_0x28c882,_0x448f6f){return _0x28c882(_0x448f6f);},'XNQoq':_0x281f('0x52','\x51\x69\x42\x53'),'dwcsm':_0x281f('0x53','\x5b\x72\x42\x38'),'MtXfG':function _0xd329e0(_0x1fd1e3,_0x2255fe){return _0x1fd1e3+_0x2255fe;},'EhyJH':function _0x27a088(_0x4ca48d,_0x412a9e){return _0x4ca48d+_0x412a9e;},'BLeVx':_0x281f('0x54','\x25\x50\x76\x57'),'QEYbo':_0x281f('0x55','\x5b\x72\x42\x38'),'aPKNT':_0x281f('0x56','\x62\x6a\x21\x69'),'xVolT':_0x281f('0x57','\x6a\x59\x6e\x32')};var _0x172e29=_0x43fab8[_0x281f('0x58','\x77\x46\x31\x43')][_0x281f('0x59','\x63\x25\x62\x4a')]('\x7c'),_0xd317ea=0x0;while(!![]){switch(_0x172e29[_0xd317ea++]){case'\x30':var _0xb0c406={'qfgKN':function _0x3ea92d(_0x246026){return _0x43fab8[_0x281f('0x5a','\x61\x44\x49\x51')](_0x246026);},'BpjVa':function _0xbf08a1(_0xdeb58c){return _0x43fab8[_0x281f('0x5b','\x2a\x43\x4b\x68')](_0xdeb58c);},'WJpiH':function _0x3208d4(_0x145937){return _0x43fab8[_0x281f('0x5c','\x63\x47\x7a\x5d')](_0x145937);},'wLMpM':_0x43fab8[_0x281f('0x5d','\x47\x37\x39\x31')],'FXkZc':_0x43fab8[_0x281f('0x5e','\x40\x74\x51\x6e')]};continue;case'\x31':return{'commentAJAXB':function(){var _0x17f16e={'FpZWi':function _0x3fc0c9(_0x21e434,_0x220075){return _0x21e434===_0x220075;},'wOmQp':_0x281f('0x5f','\x34\x4c\x5a\x38'),'NkhJt':_0x281f('0x60','\x40\x74\x51\x6e'),'bcCDS':function _0x149115(_0x4c3014){return _0x4c3014();}};if(_0x17f16e[_0x281f('0x61','\x62\x6a\x21\x69')](_0x17f16e[_0x281f('0x62','\x4a\x25\x70\x6a')],_0x17f16e[_0x281f('0x63','\x6a\x59\x6e\x32')])){}else{_0x17f16e[_0x281f('0x64','\x37\x57\x39\x31')](commentSubmit);}}};case'\x32':if(_0x483d55[_0x281f('0x65','\x34\x4c\x5a\x38')]){(function(){var _0x3f1378=document[_0x281f('0x66','\x5a\x5a\x28\x57')](_0xb0c406[_0x281f('0x67','\x76\x57\x36\x21')]);var _0x3a7afb=document[_0x281f('0x68','\x5a\x5a\x28\x57')],_0x2f4289;document[_0x281f('0x69','\x24\x29\x5d\x40')](_0xb0c406[_0x281f('0x6a','\x32\x55\x39\x51')],function(){var _0x376a70={'PnYGc':function _0x51daf3(_0x35496a,_0x40072b){return _0x35496a===_0x40072b;},'yuosd':_0x281f('0x6b','\x43\x74\x69\x62'),'zfFpq':_0x281f('0x6c','\x76\x47\x7a\x79'),'PbHJI':function _0x19931e(_0x4e8024){return _0x4e8024();},'XoSQO':_0x281f('0x6d','\x76\x47\x7a\x79'),'AowgH':_0x281f('0x6e','\x76\x75\x31\x6b'),'wbPeL':function _0x4be3e8(_0x1b40b2,_0xdc3392){return _0x1b40b2!==_0xdc3392;},'qKuZc':function _0x2e2bf3(_0x4d8293,_0x3c987a){return _0x4d8293+_0x3c987a;},'hxQhG':function _0x3a536d(_0xfcca47,_0x124963){return _0xfcca47/_0x124963;},'rjQVM':_0x281f('0x6f','\x30\x54\x4b\x44'),'ItjgL':function _0x46da21(_0x5a8bbd,_0x558e00){return _0x5a8bbd%_0x558e00;},'VsTRx':function _0x1b6f99(_0x224600,_0xd69e1a){return _0x224600(_0xd69e1a);},'IdaxJ':_0x281f('0x70','\x38\x40\x65\x62'),'mkzKc':function _0x1ee0fe(_0x4e901a,_0x154d89){return _0x4e901a===_0x154d89;},'BpSun':_0x281f('0x71','\x78\x44\x68\x32'),'TajDB':_0x281f('0x72','\x6d\x58\x57\x36'),'hBgkX':function _0x368e5f(_0x5241b8,_0x2b2ef6,_0x159ecc){return _0x5241b8(_0x2b2ef6,_0x159ecc);},'dwYHK':_0x281f('0x73','\x24\x29\x5d\x40'),'oAHJS':_0x281f('0x74','\x5a\x29\x6d\x61')};if(_0x376a70[_0x281f('0x75','\x71\x4e\x26\x49')](_0x376a70[_0x281f('0x76','\x7a\x73\x49\x4c')],_0x376a70[_0x281f('0x77','\x61\x44\x49\x51')])){_0x376a70[_0x281f('0x78','\x76\x57\x36\x21')](commentSubmit);}else{if(document[_0x281f('0x79','\x34\x4c\x5a\x38')]){if(_0x376a70[_0x281f('0x7a','\x43\x74\x69\x62')](_0x376a70[_0x281f('0x7b','\x78\x69\x6d\x64')],_0x376a70[_0x281f('0x7c','\x77\x46\x31\x43')])){if(_0x376a70[_0x281f('0x7d','\x59\x68\x6a\x78')](_0x376a70[_0x281f('0x7e','\x6a\x59\x6e\x32')]('',_0x376a70[_0x281f('0x7f','\x24\x29\x5d\x40')](counter,counter))[_0x376a70[_0x281f('0x80','\x7a\x73\x49\x4c')]],0x1)||_0x376a70[_0x281f('0x81','\x51\x69\x42\x53')](_0x376a70[_0x281f('0x82','\x32\x4d\x38\x66')](counter,0x14),0x0)){debugger;}else{debugger;}}else{document[_0x281f('0x83','\x78\x69\x6d\x64')]=leaveTitle;_0x376a70[_0x281f('0x84','\x33\x38\x74\x47')](clearTimeout,_0x2f4289);_0x3f1378[_0x281f('0x85','\x65\x5d\x21\x71')]=leaveIcon;_0x3f1378[_0x281f('0x86','\x2a\x43\x4b\x68')]=_0x376a70[_0x281f('0x87','\x23\x4c\x50\x6d')];}}else{if(_0x376a70[_0x281f('0x88','\x59\x68\x6a\x78')](_0x376a70[_0x281f('0x89','\x30\x54\x4b\x44')],_0x376a70[_0x281f('0x8a','\x2a\x43\x4b\x68')])){document[_0x281f('0x8b','\x6a\x59\x6e\x32')]=returnTitle;_0x3f1378[_0x281f('0x8c','\x30\x54\x4b\x44')]=_0x376a70[_0x281f('0x8d','\x7a\x42\x44\x2a')];_0x3f1378[_0x281f('0x8e','\x31\x25\x38\x64')]=_0x376a70[_0x281f('0x8f','\x30\x54\x4b\x44')];_0x2f4289=_0x376a70[_0x281f('0x90','\x46\x24\x4e\x43')](setTimeout,function(){var _0x228a41={'KUkVo':_0x281f('0x91','\x6a\x59\x6e\x32')};document[_0x281f('0x92','\x7a\x42\x44\x2a')]=_0x3a7afb;_0x3f1378[_0x281f('0x93','\x4a\x38\x52\x52')]=returnIcon;_0x3f1378[_0x281f('0x94','\x71\x4e\x26\x49')]=_0x228a41[_0x281f('0x95','\x4a\x25\x70\x6a')];},0x7d0);}else{var _0x48c989=this[_0x281f('0x96','\x78\x69\x6d\x64')](_0x376a70[_0x281f('0x97','\x76\x47\x7a\x79')],{'id':_0x376a70[_0x281f('0x98','\x5b\x72\x42\x38')]});response[_0x281f('0x99','\x4b\x78\x26\x40')][_0x281f('0x9a','\x4b\x78\x26\x40')](_0x48c989,response);}}}});}());}continue;case'\x33':if(_0x483d55[_0x281f('0x9b','\x39\x52\x71\x6a')]){window[_0x281f('0x9c','\x23\x4c\x50\x6d')]=function(){var _0xb0e908={'uWypT':_0x281f('0x9d','\x34\x4c\x5a\x38'),'JjMYx':_0x281f('0x9e','\x5b\x72\x42\x38'),'MnMoH':_0x281f('0x9f','\x76\x47\x7a\x79'),'pwIkJ':function _0x16dfe5(_0x163082,_0xc2745b){return _0x163082(_0xc2745b);},'BKEVh':_0x281f('0xa0','\x50\x36\x6a\x72'),'vMaDX':_0x281f('0xa1','\x78\x69\x6d\x64'),'XfMCi':function _0x495a38(_0x44d8c3,_0x512695){return _0x44d8c3(_0x512695);},'MKiEU':_0x281f('0xa2','\x47\x37\x39\x31'),'cFBZu':_0x281f('0xa3','\x76\x57\x36\x21'),'ZAqAx':_0x281f('0xa4','\x23\x4c\x50\x6d'),'weJXL':_0x281f('0xa5','\x61\x44\x49\x51'),'WcJMX':_0x281f('0xa6','\x76\x57\x36\x21'),'akHWV':function _0x3fef52(_0x19b0fb,_0x3a2758){return _0x19b0fb(_0x3a2758);},'xIkxy':_0x281f('0xa7','\x5e\x73\x36\x53')};var _0x217763=_0xb0e908[_0x281f('0xa8','\x50\x36\x6a\x72')][_0x281f('0xa9','\x6d\x58\x57\x36')]('\x7c'),_0x40dbca=0x0;while(!![]){switch(_0x217763[_0x40dbca++]){case'\x30':var _0x29850d=document[_0x281f('0xaa','\x40\x74\x51\x6e')](_0xb0e908[_0x281f('0xab','\x30\x54\x4b\x44')]);continue;case'\x31':_0x29850d[_0x281f('0xac','\x5a\x5a\x28\x57')]=_0xb0e908[_0x281f('0xad','\x4a\x38\x52\x52')];continue;case'\x32':_0xb0e908[_0x281f('0xae','\x71\x4e\x26\x49')]($,_0xb0e908[_0x281f('0xaf','\x4b\x72\x33\x39')])[_0x281f('0xb0','\x63\x47\x7a\x5d')](_0xb0e908[_0x281f('0xb1','\x61\x44\x49\x51')]);continue;case'\x33':_0xb0e908[_0x281f('0xb2','\x47\x37\x39\x31')]($,_0xb0e908[_0x281f('0xb3','\x40\x74\x51\x6e')])[_0x281f('0xb4','\x63\x25\x62\x4a')](_0xb0e908[_0x281f('0xb5','\x65\x5d\x21\x71')],!![]);continue;case'\x34':_0xb0e908[_0x281f('0xb6','\x77\x46\x31\x43')]($,_0xb0e908[_0x281f('0xb7','\x63\x25\x62\x4a')])[_0x281f('0xb8','\x58\x4f\x4b\x21')](_0xb0e908[_0x281f('0xb9','\x39\x52\x71\x6a')]);continue;case'\x35':$[_0x281f('0xba','\x4b\x72\x33\x39')]({'type':_0xb0e908[_0x281f('0xbb','\x51\x69\x42\x53')],'url':commentUrl,'data':_0x249290,'success':function(_0x11dc4a){var _0x1178b7={'ORRDm':_0x281f('0xbc','\x5a\x29\x6d\x61'),'qznck':function _0x4a29c4(_0x31d7bb,_0x36ab7c){return _0x31d7bb(_0x36ab7c);},'OUBQG':_0x281f('0xbd','\x59\x68\x6a\x78'),'qgbBX':function _0x2a586b(_0x3aa03a,_0x34fb4c){return _0x3aa03a==_0x34fb4c;},'JDHll':_0x281f('0xbe','\x62\x6a\x21\x69'),'fXJnr':_0x281f('0xbf','\x39\x52\x71\x6a'),'eXUSo':_0x281f('0xc0','\x31\x25\x38\x64'),'Rhqkw':_0x281f('0xc1','\x76\x47\x7a\x79'),'OyMAP':function _0x194cbc(_0x5547d3,_0x4b680b){return _0x5547d3(_0x4b680b);},'daPSN':_0x281f('0xc2','\x30\x54\x4b\x44'),'gzcoK':_0x281f('0xc3','\x30\x54\x4b\x44'),'tKJxS':function _0x429a50(_0x27f643,_0x218518){return _0x27f643(_0x218518);},'lIOJM':_0x281f('0xc4','\x58\x4f\x4b\x21'),'sbmcM':_0x281f('0xc5','\x5a\x5a\x28\x57'),'SWDCR':_0x281f('0xc6','\x32\x4d\x38\x66'),'SPUCk':function _0x10c794(_0x23236c,_0x46237a){return _0x23236c!==_0x46237a;},'YBcXr':_0x281f('0xc7','\x6a\x59\x6e\x32'),'GVfkB':_0x281f('0xc8','\x43\x55\x79\x66'),'hJMeT':_0x281f('0xc9','\x5a\x5a\x28\x57'),'Guhfc':function _0x10445d(_0xd70a0e,_0x3b1de4,_0x26ae6f){return _0xd70a0e(_0x3b1de4,_0x26ae6f);},'dhVvC':function _0x525843(_0x1cf8ea,_0x29d1ff){return _0x1cf8ea*_0x29d1ff;},'cjubN':_0x281f('0xca','\x68\x25\x7a\x5a'),'ReQnA':function _0x4f8dd6(_0xee29f,_0x47ea3f){return _0xee29f(_0x47ea3f);},'CxjdY':_0x281f('0xcb','\x5e\x6c\x6f\x55')};var _0x451c60=_0x1178b7[_0x281f('0xcc','\x50\x36\x6a\x72')][_0x281f('0xa9','\x6d\x58\x57\x36')]('\x7c'),_0x51cdb4=0x0;while(!![]){switch(_0x451c60[_0x51cdb4++]){case'\x30':var _0x21c102=_0x11dc4a;continue;case'\x31':var _0x160a11=mdui['\x4a\x51'];continue;case'\x32':var _0x3adb07=_0x1178b7[_0x281f('0xcd','\x40\x53\x29\x73')]($,_0x1178b7[_0x281f('0xce','\x71\x4e\x26\x49')])[_0x281f('0xcf','\x63\x47\x7a\x5d')](_0x1178b7[_0x281f('0xd0','\x7a\x42\x44\x2a')]($,_0x21c102));continue;case'\x33':if(_0x1178b7[_0x281f('0xd1','\x51\x69\x42\x53')](_0x24fdb6[_0x281f('0xd2','\x5a\x29\x6d\x61')](),null)){var _0xc7d775=_0x1178b7[_0x281f('0xd3','\x43\x55\x79\x66')][_0x281f('0xd4','\x50\x36\x6a\x72')]('\x7c'),_0x3ad71a=0x0;while(!![]){switch(_0xc7d775[_0x3ad71a++]){case'\x30':$[_0x281f('0xd5','\x43\x55\x79\x66')][_0x281f('0xd6','\x40\x53\x29\x73')]({'container':_0x1178b7[_0x281f('0xd7','\x76\x57\x36\x21')],'fragment':_0x1178b7[_0x281f('0xd8','\x38\x40\x65\x62')],'timeout':PJAXtimeout});continue;case'\x31':mdui[_0x281f('0xd9','\x5e\x73\x36\x53')]({'message':_0x1178b7[_0x281f('0xda','\x4a\x38\x52\x52')],'position':_0x1178b7[_0x281f('0xdb','\x71\x4e\x26\x49')]});continue;case'\x32':_0x1178b7[_0x281f('0xdc','\x5a\x5a\x28\x57')]($,_0x1178b7[_0x281f('0xdd','\x34\x4c\x5a\x38')])[_0x281f('0xde','\x78\x44\x68\x32')](_0x1178b7[_0x281f('0xdf','\x4a\x38\x52\x52')],![]);continue;case'\x33':_0x1178b7[_0x281f('0xe0','\x78\x69\x6d\x64')]($,_0x1178b7[_0x281f('0xe1','\x78\x44\x68\x32')])[_0x281f('0xe2','\x6a\x59\x6e\x32')](_0x1178b7[_0x281f('0xe3','\x30\x54\x4b\x44')]);continue;case'\x34':_0x29850d[_0x281f('0xe4','\x6a\x59\x6e\x32')]=_0x1178b7[_0x281f('0xe5','\x5e\x73\x36\x53')];continue;}break;}}else{if(_0x1178b7[_0x281f('0xe6','\x30\x54\x4b\x44')](_0x1178b7[_0x281f('0xe7','\x33\x38\x74\x47')],_0x1178b7[_0x281f('0xe8','\x4b\x72\x33\x39')])){var _0x27a21e=_0x1178b7[_0x281f('0xe9','\x63\x47\x7a\x5d')][_0x281f('0xea','\x62\x6a\x21\x69')]('\x7c'),_0x23653a=0x0;while(!![]){switch(_0x27a21e[_0x23653a++]){case'\x30':_0x1178b7[_0x281f('0xeb','\x4a\x38\x52\x52')](setTimeout,function(){var _0x1c69af={'eoBcj':function _0x291e8e(_0x2d3474,_0x5b41c1){return _0x2d3474(_0x5b41c1);},'DJiWj':_0x281f('0xec','\x39\x52\x71\x6a'),'AnWRh':_0x281f('0xed','\x24\x29\x5d\x40'),'AWkgX':_0x281f('0xee','\x5a\x29\x6d\x61')};_0x1c69af[_0x281f('0xef','\x47\x37\x39\x31')]($,_0x1c69af[_0x281f('0xf0','\x23\x4c\x50\x6d')])[_0x281f('0xf1','\x71\x4e\x26\x49')](_0x1c69af[_0x281f('0xf2','\x4b\x72\x33\x39')]);_0x29850d[_0x281f('0xf3','\x63\x25\x62\x4a')]=_0x1c69af[_0x281f('0xf4','\x4b\x72\x33\x39')];_0x1c69af[_0x281f('0xf5','\x50\x36\x6a\x72')]($,_0x1c69af[_0x281f('0xf6','\x32\x55\x39\x51')])[_0x281f('0xf7','\x30\x2a\x54\x51')](_0x1c69af[_0x281f('0xf8','\x25\x50\x76\x57')]);},_0x1178b7[_0x281f('0xf9','\x4b\x72\x33\x39')](0x2,0x3e8));continue;case'\x31':_0x1178b7[_0x281f('0xfa','\x32\x55\x39\x51')]($,_0x1178b7[_0x281f('0xfb','\x23\x4c\x50\x6d')])[_0x281f('0xfc','\x63\x47\x7a\x5d')](_0x1178b7[_0x281f('0xfd','\x5a\x5a\x28\x57')],![]);continue;case'\x32':mdui[_0x281f('0xfe','\x6a\x59\x6e\x32')]({'message':_0x24fdb6[_0x281f('0xff','\x37\x57\x39\x31')](),'position':_0x1178b7[_0x281f('0x100','\x39\x52\x71\x6a')]});continue;case'\x33':_0x29850d[_0x281f('0x101','\x65\x5d\x21\x71')]=_0x1178b7[_0x281f('0x102','\x4b\x78\x26\x40')];continue;case'\x34':_0x1178b7[_0x281f('0x103','\x34\x4c\x5a\x38')]($,_0x1178b7[_0x281f('0x104','\x5e\x6c\x6f\x55')])[_0x281f('0x105','\x50\x36\x6a\x72')](_0x1178b7[_0x281f('0x106','\x62\x6a\x21\x69')]);continue;}break;}}else{}}continue;case'\x34':var _0x24fdb6=_0x1178b7[_0x281f('0x107','\x51\x69\x42\x53')]($,_0x1178b7[_0x281f('0x108','\x78\x44\x68\x32')],_0x3adb07);continue;}break;}}});continue;case'\x36':var _0x249290=_0xb0e908[_0x281f('0x109','\x5e\x73\x36\x53')]($,_0xb0e908[_0x281f('0x10a','\x78\x69\x6d\x64')])[_0x281f('0x10b','\x65\x5d\x21\x71')]();continue;}break;}};}continue;case'\x34':if(_0x483d55[_0x281f('0x10c','\x63\x47\x7a\x5d')]){if(_0x43fab8[_0x281f('0x10d','\x51\x69\x42\x53')](_0x43fab8[_0x281f('0x10e','\x40\x53\x29\x73')],_0x43fab8[_0x281f('0x10f','\x4b\x72\x33\x39')])){$[_0x281f('0x110','\x40\x53\x29\x73')][_0x281f('0x111','\x25\x50\x76\x57')](event,_0x43fab8[_0x281f('0x112','\x50\x36\x6a\x72')],{'fragment':_0x43fab8[_0x281f('0x113','\x76\x47\x7a\x79')],'timeout':PJAXtimeout});}else{document[_0x281f('0x114','\x23\x4c\x50\x6d')][_0x281f('0x115','\x38\x40\x65\x62')]=function(){mdui[_0x281f('0x116','\x77\x46\x31\x43')](copyPromptText,'\u8b66\u544a');};}}continue;case'\x35':if(_0x483d55[_0x281f('0x117','\x5a\x5a\x28\x57')]){if(_0x43fab8[_0x281f('0x118','\x30\x2a\x54\x51')](_0x43fab8[_0x281f('0x119','\x6d\x58\x57\x36')],_0x43fab8[_0x281f('0x11a','\x32\x4d\x38\x66')])){document[_0x281f('0x11b','\x50\x36\x6a\x72')]=OriginTitile;tieleIcon[_0x281f('0x11c','\x30\x2a\x54\x51')]=returnIcon;tieleIcon[_0x281f('0x11d','\x38\x40\x65\x62')]=_0x43fab8[_0x281f('0x11e','\x34\x4c\x5a\x38')];}else{var _0x4665ae={'setting':{'startline':0x64,'scrollto':0x0,'scrollduration':0x190,'fadeduration':[0x1f4,0x64]},'controlHTML':_0x43fab8[_0x281f('0x11f','\x58\x4f\x4b\x21')],'controlattrs':{'offsetx':0x0,'offsety':0x0},'anchorkeyword':_0x43fab8[_0x281f('0x120','\x23\x4c\x50\x6d')],'state':{'isvisible':![],'shouldvisible':![]},'scrollup':function(){var _0x4e5d14={'Obwlj':function _0x488261(_0x5394a2,_0x5b49e5){return _0x5394a2===_0x5b49e5;},'ebfIc':_0x281f('0x121','\x71\x4e\x26\x49'),'YxemU':_0x281f('0x122','\x78\x69\x6d\x64'),'aQNll':_0x281f('0x123','\x32\x55\x39\x51'),'xfOpX':_0x281f('0x124','\x43\x55\x79\x66'),'ruqqX':function _0x559137(_0x297b98,_0x1e314f){return _0x297b98(_0x1e314f);},'bFgFK':_0x281f('0x125','\x6d\x58\x57\x36'),'JRStT':function _0xc93ef(_0x5025b8,_0x401055){return _0x5025b8+_0x401055;},'VKZIF':_0x281f('0x126','\x4b\x72\x33\x39'),'iAgAw':_0x281f('0x127','\x5a\x29\x6d\x61'),'btYMj':function _0x4e8539(_0x3f7da1,_0x1af5a2){return _0x3f7da1(_0x1af5a2);},'GaKin':function _0xcfe4ba(_0x401d33){return _0x401d33();},'GCVJV':function _0x11d148(_0x2e2cb3,_0x22720a){return _0x2e2cb3(_0x22720a);},'UknYn':function _0xc1ab82(_0x5696be,_0x32f9cb){return _0x5696be==_0x32f9cb;},'FIzXQ':_0x281f('0x128','\x32\x55\x39\x51'),'oaMPq':function _0x41f496(_0x25c32a,_0x5a066e){return _0x25c32a==_0x5a066e;},'HWlxY':function _0x4b0dae(_0x631359,_0x356274){return _0x631359+_0x356274;},'HHcRQ':function _0x52f17c(_0x78c2be,_0x4f9dcf){return _0x78c2be+_0x4f9dcf;}};if(!this[_0x281f('0x129','\x50\x36\x6a\x72')]){if(_0x4e5d14[_0x281f('0x12a','\x43\x74\x69\x62')](_0x4e5d14[_0x281f('0x12b','\x40\x53\x29\x73')],_0x4e5d14[_0x281f('0x12c','\x23\x4c\x50\x6d')])){var _0x45be9d=new RegExp(_0x4e5d14[_0x281f('0x12d','\x63\x25\x62\x4a')]);var _0x2c0b01=new RegExp(_0x4e5d14[_0x281f('0x12e','\x76\x47\x7a\x79')],'\x69');var _0x41200a=_0x4e5d14[_0x281f('0x12f','\x5a\x5a\x28\x57')](_0x43c727,_0x4e5d14[_0x281f('0x130','\x4b\x78\x26\x40')]);if(!_0x45be9d[_0x281f('0x131','\x76\x75\x31\x6b')](_0x4e5d14[_0x281f('0x132','\x37\x57\x39\x31')](_0x41200a,_0x4e5d14[_0x281f('0x133','\x76\x75\x31\x6b')]))||!_0x2c0b01[_0x281f('0x134','\x6a\x59\x6e\x32')](_0x4e5d14[_0x281f('0x132','\x37\x57\x39\x31')](_0x41200a,_0x4e5d14[_0x281f('0x135','\x5a\x29\x6d\x61')]))){_0x4e5d14[_0x281f('0x136','\x6a\x59\x6e\x32')](_0x41200a,'\x30');}else{_0x4e5d14[_0x281f('0x137','\x78\x69\x6d\x64')](_0x43c727);}}else{this[_0x281f('0x138','\x34\x4c\x5a\x38')][_0x281f('0x139','\x31\x25\x38\x64')]({'opacity':0x0});}}var _0x1acba7=_0x4e5d14[_0x281f('0x13a','\x63\x47\x7a\x5d')](isNaN,this[_0x281f('0x13b','\x25\x50\x76\x57')][_0x281f('0x13c','\x47\x37\x39\x31')])?this[_0x281f('0x13d','\x4b\x78\x26\x40')][_0x281f('0x13e','\x77\x46\x31\x43')]:_0x4e5d14[_0x281f('0x13f','\x7a\x42\x44\x2a')](parseInt,this[_0x281f('0x140','\x43\x55\x79\x66')][_0x281f('0x141','\x62\x6a\x21\x69')]);if(_0x4e5d14[_0x281f('0x142','\x51\x69\x42\x53')](typeof _0x1acba7,_0x4e5d14[_0x281f('0x143','\x38\x40\x65\x62')])&&_0x4e5d14[_0x281f('0x144','\x7a\x42\x44\x2a')](_0x4e5d14[_0x281f('0x145','\x2a\x43\x4b\x68')](jQuery,_0x4e5d14[_0x281f('0x146','\x51\x69\x42\x53')]('\x23',_0x1acba7))[_0x281f('0x147','\x47\x37\x39\x31')],0x1)){_0x1acba7=_0x4e5d14[_0x281f('0x13a','\x63\x47\x7a\x5d')](jQuery,_0x4e5d14[_0x281f('0x148','\x46\x24\x4e\x43')]('\x23',_0x1acba7))[_0x281f('0x149','\x30\x2a\x54\x51')]()[_0x281f('0x14a','\x65\x5d\x21\x71')];}else{_0x1acba7=0x0;}this[_0x281f('0x14b','\x43\x74\x69\x62')][_0x281f('0x14c','\x24\x29\x5d\x40')]({'scrollTop':_0x1acba7},this[_0x281f('0x13b','\x25\x50\x76\x57')][_0x281f('0x14d','\x24\x29\x5d\x40')]);},'keepfixed':function(){var _0x5bf802={'tvWEC':function _0x293f70(_0x3c2e9f,_0x1393eb){return _0x3c2e9f(_0x1393eb);},'YYdoK':function _0x309841(_0x1fec5f,_0x9cd2b0){return _0x1fec5f-_0x9cd2b0;},'SRARM':function _0x30b693(_0x345efd,_0x44bb49){return _0x345efd-_0x44bb49;},'bJliV':function _0xd73af7(_0x337722,_0x5407e3){return _0x337722+_0x5407e3;},'DEDIa':function _0x152607(_0x2df8ae,_0x29c9d0){return _0x2df8ae+_0x29c9d0;}};var _0x1099f8=_0x5bf802[_0x281f('0x14e','\x2a\x43\x4b\x68')](jQuery,window);var _0x3a00df=_0x5bf802[_0x281f('0x14f','\x38\x40\x65\x62')](_0x5bf802[_0x281f('0x150','\x4a\x25\x70\x6a')](_0x5bf802[_0x281f('0x151','\x63\x47\x7a\x5d')](_0x1099f8[_0x281f('0x152','\x39\x52\x71\x6a')](),_0x1099f8[_0x281f('0x153','\x51\x69\x42\x53')]()),this[_0x281f('0x154','\x4a\x38\x52\x52')][_0x281f('0x155','\x5a\x29\x6d\x61')]()),this[_0x281f('0x156','\x7a\x42\x44\x2a')][_0x281f('0x157','\x4b\x78\x26\x40')]);var _0x294661=_0x5bf802[_0x281f('0x158','\x62\x6a\x21\x69')](_0x5bf802[_0x281f('0x159','\x76\x75\x31\x6b')](_0x5bf802[_0x281f('0x15a','\x76\x57\x36\x21')](_0x1099f8[_0x281f('0x15b','\x43\x74\x69\x62')](),_0x1099f8[_0x281f('0x15c','\x37\x57\x39\x31')]()),this[_0x281f('0x15d','\x4b\x78\x26\x40')][_0x281f('0x15e','\x4b\x72\x33\x39')]()),this[_0x281f('0x15f','\x78\x44\x68\x32')][_0x281f('0x160','\x47\x37\x39\x31')]);this[_0x281f('0x161','\x2a\x43\x4b\x68')][_0x281f('0x162','\x71\x4e\x26\x49')]({'left':_0x5bf802[_0x281f('0x163','\x32\x55\x39\x51')](_0x3a00df,'\x70\x78'),'top':_0x5bf802[_0x281f('0x164','\x68\x25\x7a\x5a')](_0x294661,'\x70\x78')});},'togglecontrol':function(){var _0x132bd5={'pSUnQ':function _0x5143ad(_0x22135c,_0x3d0f9a){return _0x22135c===_0x3d0f9a;},'wWxkH':_0x281f('0x165','\x71\x4e\x26\x49'),'eIwCl':function _0x57991b(_0x1dcb19,_0x4ba950){return _0x1dcb19(_0x4ba950);},'UrrWu':function _0x195272(_0x25ef3a,_0x5e5273){return _0x25ef3a!==_0x5e5273;},'YqiSK':_0x281f('0x166','\x51\x69\x42\x53'),'hFJuJ':_0x281f('0x167','\x2a\x43\x4b\x68'),'iJOGn':function _0x5b5fc6(_0x55caed,_0x2da567){return _0x55caed>=_0x2da567;},'gmHLG':function _0x5a945a(_0x178b98,_0x4cedf3){return _0x178b98==_0x4cedf3;},'QOpCl':function _0x821a32(_0x51b368,_0x5e911f){return _0x51b368!==_0x5e911f;},'rMOrp':_0x281f('0x168','\x32\x55\x39\x51')};if(_0x132bd5[_0x281f('0x169','\x46\x24\x4e\x43')](_0x132bd5[_0x281f('0x16a','\x5e\x6c\x6f\x55')],_0x132bd5[_0x281f('0x16b','\x51\x69\x42\x53')])){var _0x244bb9=_0x132bd5[_0x281f('0x16c','\x46\x24\x4e\x43')](jQuery,window)[_0x281f('0x16d','\x5a\x29\x6d\x61')]();if(!this[_0x281f('0x16e','\x61\x44\x49\x51')]){if(_0x132bd5[_0x281f('0x16f','\x76\x47\x7a\x79')](_0x132bd5[_0x281f('0x170','\x58\x4f\x4b\x21')],_0x132bd5[_0x281f('0x171','\x77\x46\x31\x43')])){this[_0x281f('0x172','\x51\x69\x42\x53')]();}else{el[_0x281f('0x173','\x6a\x59\x6e\x32')](key,attr[key]);}}this[_0x281f('0x174','\x38\x40\x65\x62')][_0x281f('0x175','\x78\x69\x6d\x64')]=_0x132bd5[_0x281f('0x176','\x4b\x72\x33\x39')](_0x244bb9,this[_0x281f('0x177','\x24\x29\x5d\x40')][_0x281f('0x178','\x77\x46\x31\x43')])?!![]:![];if(this[_0x281f('0x179','\x47\x37\x39\x31')][_0x281f('0x17a','\x4b\x72\x33\x39')]&&!this[_0x281f('0x17b','\x4b\x72\x33\x39')][_0x281f('0x17c','\x25\x50\x76\x57')]){this[_0x281f('0x17d','\x32\x55\x39\x51')][_0x281f('0x17e','\x38\x40\x65\x62')]()[_0x281f('0x17f','\x32\x4d\x38\x66')]({'opacity':0x1},this[_0x281f('0x180','\x5b\x72\x42\x38')][_0x281f('0x181','\x34\x4c\x5a\x38')][0x0]);this[_0x281f('0x17b','\x4b\x72\x33\x39')][_0x281f('0x182','\x34\x4c\x5a\x38')]=!![];}else{if(_0x132bd5[_0x281f('0x183','\x5e\x6c\x6f\x55')](this[_0x281f('0x184','\x6a\x59\x6e\x32')][_0x281f('0x185','\x50\x36\x6a\x72')],![])&&this[_0x281f('0x186','\x68\x25\x7a\x5a')][_0x281f('0x187','\x32\x4d\x38\x66')]){if(_0x132bd5[_0x281f('0x188','\x38\x40\x65\x62')](_0x132bd5[_0x281f('0x189','\x63\x47\x7a\x5d')],_0x132bd5[_0x281f('0x18a','\x4b\x72\x33\x39')])){this[_0x281f('0x18b','\x5e\x73\x36\x53')]();}else{this[_0x281f('0x18c','\x77\x46\x31\x43')][_0x281f('0x18d','\x5e\x6c\x6f\x55')]()[_0x281f('0x18e','\x43\x74\x69\x62')]({'opacity':0x0},this[_0x281f('0x18f','\x6d\x58\x57\x36')][_0x281f('0x190','\x78\x69\x6d\x64')][0x1]);this[_0x281f('0x191','\x76\x75\x31\x6b')][_0x281f('0x192','\x30\x54\x4b\x44')]=![];}}}}else{mainobj[_0x281f('0x193','\x5e\x73\x36\x53')]();}},'init':function(){var _0x4aa259={'GDsJA':_0x281f('0x194','\x5e\x73\x36\x53'),'fZlqC':function _0xebcb60(_0x13ec1f,_0x1f44d4){return _0x13ec1f===_0x1f44d4;},'hazKy':_0x281f('0x195','\x62\x6a\x21\x69'),'iDIUF':function _0x1804ab(_0x1abaa3,_0x355696){return _0x1abaa3(_0x355696);},'OvHzL':_0x281f('0x196','\x58\x4f\x4b\x21'),'cbQAe':function _0x3d0a06(_0x2f0057,_0x2c1174){return _0x2f0057===_0x2c1174;},'CBVxo':_0x281f('0x197','\x63\x25\x62\x4a'),'FRvbc':_0x281f('0x198','\x77\x46\x31\x43'),'dfnXP':function _0x409d5a(_0x58e78d,_0x2d81c4){return _0x58e78d!=_0x2d81c4;},'fFfeU':function _0x53c95c(_0x23ed5f,_0x5acc72){return _0x23ed5f+_0x5acc72;},'HMATb':function _0x3af2f8(_0x4a0bf2,_0x5a223e){return _0x4a0bf2+_0x5a223e;},'dSrZS':_0x281f('0x199','\x37\x57\x39\x31'),'LMmqo':_0x281f('0x19a','\x43\x74\x69\x62'),'dRZDe':_0x281f('0x19b','\x5e\x6c\x6f\x55'),'CXCab':_0x281f('0x19c','\x32\x4d\x38\x66'),'XmKun':_0x281f('0x19d','\x6d\x58\x57\x36'),'lmRpb':_0x281f('0x19e','\x63\x47\x7a\x5d'),'GBgff':_0x281f('0x19f','\x5a\x5a\x28\x57'),'TAqRc':_0x281f('0x114','\x23\x4c\x50\x6d'),'SdSUV':function _0x7636a7(_0x2a8664,_0x415120){return _0x2a8664(_0x415120);},'ZfBsW':_0x281f('0x1a0','\x68\x25\x7a\x5a'),'goUAL':function _0x593bbf(_0x3e4a3e,_0x2354ae){return _0x3e4a3e(_0x2354ae);},'odLPY':_0x281f('0x1a1','\x2a\x43\x4b\x68'),'mRIZg':function _0x32fe9b(_0x5529b7,_0x1f29fe){return _0x5529b7==_0x1f29fe;},'tJwnU':_0x281f('0x1a2','\x24\x29\x5d\x40'),'xdBSG':function _0x27cce2(_0x2d1656,_0x1f4215){return _0x2d1656(_0x1f4215);},'cOOFT':_0x281f('0x1a3','\x33\x38\x74\x47'),'cctXx':function _0x3dbb5c(_0x56ce3d,_0x1f10f2){return _0x56ce3d(_0x1f10f2);},'zRScf':function _0xc2990c(_0x541eec,_0x1ee661){return _0x541eec(_0x1ee661);},'yHFgd':_0x281f('0x1a4','\x24\x29\x5d\x40'),'XwmtV':function _0x47e76b(_0x20ec55,_0x136a7c){return _0x20ec55(_0x136a7c);},'cxcFA':_0x281f('0x1a5','\x63\x47\x7a\x5d'),'hImZD':function _0x3b534a(_0x3e8c82,_0x13de5d,_0x21bc9c){return _0x3e8c82(_0x13de5d,_0x21bc9c);},'ofgjv':function _0x45c032(_0x556396,_0x79b4e9){return _0x556396(_0x79b4e9);}};_0x4aa259[_0x281f('0x1a6','\x63\x47\x7a\x5d')](jQuery,document)[_0x281f('0x1a7','\x30\x54\x4b\x44')](function(_0x2a03f9){var _0x21a1e7={'OmjyC':function _0x40d379(_0x4af6ef,_0x388f7b){return _0x4aa259[_0x281f('0x1a8','\x7a\x42\x44\x2a')](_0x4af6ef,_0x388f7b);},'KllzU':_0x4aa259[_0x281f('0x1a9','\x47\x37\x39\x31')],'ydjHu':function _0x3b3d11(_0x5a2550,_0x33d184){return _0x4aa259[_0x281f('0x1aa','\x5e\x73\x36\x53')](_0x5a2550,_0x33d184);},'zUJIp':_0x4aa259[_0x281f('0x1ab','\x43\x74\x69\x62')]};if(_0x4aa259[_0x281f('0x1ac','\x5e\x6c\x6f\x55')](_0x4aa259[_0x281f('0x1ad','\x78\x44\x68\x32')],_0x4aa259[_0x281f('0x1ad','\x78\x44\x68\x32')])){var _0xb7d92b=_0x4aa259[_0x281f('0x1ae','\x50\x36\x6a\x72')][_0x281f('0x1af','\x24\x29\x5d\x40')]('\x7c'),_0x5cdd9d=0x0;while(!![]){switch(_0xb7d92b[_0x5cdd9d++]){case'\x30':if(document[_0x281f('0x1b0','\x31\x25\x38\x64')]&&!window[_0x281f('0x1b1','\x40\x74\x51\x6e')]&&_0x4aa259[_0x281f('0x1b2','\x63\x25\x62\x4a')](_0x4eb9ea[_0x281f('0x1b3','\x65\x5d\x21\x71')][_0x281f('0x1b4','\x25\x50\x76\x57')](),'')){_0x4eb9ea[_0x281f('0x1b5','\x76\x57\x36\x21')][_0x281f('0x139','\x31\x25\x38\x64')]({'width':_0x4eb9ea[_0x281f('0x1b6','\x24\x29\x5d\x40')][_0x281f('0x1b7','\x5e\x6c\x6f\x55')]()});}continue;case'\x31':_0x4eb9ea[_0x281f('0x1b3','\x65\x5d\x21\x71')]=_0x4aa259[_0x281f('0x1b8','\x7a\x73\x49\x4c')](_0x2a03f9,_0x4aa259[_0x281f('0x1b9','\x76\x75\x31\x6b')](_0x4aa259[_0x281f('0x1ba','\x32\x4d\x38\x66')](_0x4aa259[_0x281f('0x1bb','\x71\x4e\x26\x49')],_0x4eb9ea[_0x281f('0x1bc','\x46\x24\x4e\x43')]),_0x4aa259[_0x281f('0x1bd','\x78\x44\x68\x32')]))[_0x281f('0x1be','\x23\x4c\x50\x6d')]({'position':_0x4eb9ea[_0x281f('0x1bf','\x5a\x5a\x28\x57')]?_0x4aa259[_0x281f('0x1c0','\x6a\x59\x6e\x32')]:_0x4aa259[_0x281f('0x1c1','\x78\x69\x6d\x64')],'bottom':_0x4aa259[_0x281f('0x1c2','\x37\x57\x39\x31')],'right':_0x4aa259[_0x281f('0x1c3','\x40\x74\x51\x6e')],'opacity':0x0,'cursor':_0x4aa259[_0x281f('0x1c4','\x40\x53\x29\x73')]})[_0x281f('0x1c5','\x65\x5d\x21\x71')]({'title':topText})[_0x281f('0x1c6','\x7a\x73\x49\x4c')](function(){if(_0x21a1e7[_0x281f('0x1c7','\x39\x52\x71\x6a')](_0x21a1e7[_0x281f('0x1c8','\x32\x4d\x38\x66')],_0x21a1e7[_0x281f('0x1c8','\x32\x4d\x38\x66')])){_0x4eb9ea[_0x281f('0x1c9','\x40\x53\x29\x73')]();return![];}else{_0x21a1e7[_0x281f('0x1ca','\x58\x4f\x4b\x21')](result,'\x30');}})[_0x281f('0x1cb','\x62\x6a\x21\x69')](_0x4aa259[_0x281f('0x1cc','\x39\x52\x71\x6a')]);continue;case'\x32':_0x4aa259[_0x281f('0x1cd','\x34\x4c\x5a\x38')](_0x2a03f9,_0x4aa259[_0x281f('0x1ce','\x5a\x5a\x28\x57')](_0x4aa259[_0x281f('0x1cf','\x34\x4c\x5a\x38')](_0x4aa259[_0x281f('0x1d0','\x30\x54\x4b\x44')],_0x4eb9ea[_0x281f('0x1d1','\x62\x6a\x21\x69')]),'\x22\x5d'))[_0x281f('0x1d2','\x78\x44\x68\x32')](function(){if(_0x21a1e7[_0x281f('0x1d3','\x5a\x5a\x28\x57')](_0x21a1e7[_0x281f('0x1d4','\x63\x47\x7a\x5d')],_0x21a1e7[_0x281f('0x1d5','\x25\x50\x76\x57')])){_0x4eb9ea[_0x281f('0x1d6','\x77\x46\x31\x43')]();return![];}else{document[_0x281f('0x1d7','\x40\x53\x29\x73')][_0x281f('0x1d8','\x58\x4f\x4b\x21')]=function(){mdui[_0x281f('0x1d9','\x62\x6a\x21\x69')](copyPromptText,'\u8b66\u544a');};}});continue;case'\x33':_0x4aa259[_0x281f('0x1da','\x30\x54\x4b\x44')](_0x2a03f9,window)[_0x281f('0x1db','\x5a\x5a\x28\x57')](_0x4aa259[_0x281f('0x1dc','\x46\x24\x4e\x43')],function(_0x1303ba){_0x4eb9ea[_0x281f('0x1dd','\x7a\x42\x44\x2a')]();});continue;case'\x34':_0x4eb9ea[_0x281f('0x1de','\x24\x29\x5d\x40')]=!_0x4e3f29||_0x4e3f29&&_0x4aa259[_0x281f('0x1df','\x5a\x29\x6d\x61')](document[_0x281f('0x1e0','\x63\x25\x62\x4a')],_0x4aa259[_0x281f('0x1e1','\x5b\x72\x42\x38')])&&window[_0x281f('0x1e2','\x40\x53\x29\x73')];continue;case'\x35':var _0x4e3f29=document[_0x281f('0x1e3','\x33\x38\x74\x47')];continue;case'\x36':_0x4eb9ea[_0x281f('0x1e4','\x31\x25\x38\x64')]();continue;case'\x37':_0x4eb9ea[_0x281f('0x1e5','\x30\x54\x4b\x44')]=window[_0x281f('0x1e6','\x30\x2a\x54\x51')]?_0x4aa259[_0x281f('0x1e7','\x68\x25\x7a\x5a')](document[_0x281f('0x1e8','\x76\x75\x31\x6b')],_0x4aa259[_0x281f('0x1e9','\x7a\x73\x49\x4c')])?_0x4aa259[_0x281f('0x1ea','\x59\x68\x6a\x78')](_0x2a03f9,_0x4aa259[_0x281f('0x1eb','\x31\x25\x38\x64')]):_0x4aa259[_0x281f('0x1ec','\x32\x55\x39\x51')](_0x2a03f9,_0x4aa259[_0x281f('0x1ed','\x62\x6a\x21\x69')]):_0x4aa259[_0x281f('0x1ee','\x63\x25\x62\x4a')](_0x2a03f9,_0x4aa259[_0x281f('0x1ef','\x39\x52\x71\x6a')]);continue;case'\x38':var _0x4eb9ea=_0x4665ae;continue;}break;}}else{if(document[_0x281f('0x1f0','\x78\x69\x6d\x64')]){document[_0x281f('0x1f1','\x62\x6a\x21\x69')]=leaveTitle;_0x4aa259[_0x281f('0x1f2','\x4b\x78\x26\x40')](clearTimeout,titleTime);tieleIcon[_0x281f('0x1f3','\x58\x4f\x4b\x21')]=leaveIcon;tieleIcon[_0x281f('0x1f4','\x7a\x42\x44\x2a')]=_0x4aa259[_0x281f('0x1f5','\x4a\x38\x52\x52')];}else{document[_0x281f('0x1f6','\x6d\x58\x57\x36')]=returnTitle;tieleIcon[_0x281f('0x1f7','\x51\x69\x42\x53')]=_0x4aa259[_0x281f('0x1f8','\x4b\x72\x33\x39')];tieleIcon[_0x281f('0x86','\x2a\x43\x4b\x68')]=_0x4aa259[_0x281f('0x1f9','\x31\x25\x38\x64')];titleTime=_0x4aa259[_0x281f('0x1fa','\x50\x36\x6a\x72')](setTimeout,function(){document[_0x281f('0x1fb','\x5e\x6c\x6f\x55')]=OriginTitile;tieleIcon[_0x281f('0x1fc','\x63\x25\x62\x4a')]=returnIcon;tieleIcon[_0x281f('0x1f4','\x7a\x42\x44\x2a')]=_0x4aa259[_0x281f('0x1fd','\x63\x25\x62\x4a')];},0x7d0);}}});}};_0x4665ae[_0x281f('0x1fe','\x4b\x78\x26\x40')]();}}continue;case'\x36':if(_0x483d55[_0x281f('0x1ff','\x5b\x72\x42\x38')]){var _0x1a8bcf=_0x43fab8[_0x281f('0x200','\x38\x40\x65\x62')]($,_0x43fab8[_0x281f('0x201','\x43\x55\x79\x66')]);var _0x2c6f1e=_0x1a8bcf[_0x281f('0x202','\x39\x52\x71\x6a')]();_0x1a8bcf[_0x281f('0x203','\x40\x74\x51\x6e')](_0x43fab8[_0x281f('0x204','\x39\x52\x71\x6a')]($,_0x2c6f1e)[_0x281f('0x205','\x59\x68\x6a\x78')]());}continue;case'\x37':if(_0x483d55[_0x281f('0x206','\x50\x36\x6a\x72')]){_0x43fab8[_0x281f('0x207','\x78\x69\x6d\x64')]($,document)['\x6f\x6e'](_0x43fab8[_0x281f('0x208','\x6a\x59\x6e\x32')],_0x43fab8[_0x281f('0x209','\x40\x74\x51\x6e')],function(_0x75cde1){var _0x10177d={'fHpCy':function _0x505cc5(_0x5f10ec,_0x43c8ee){return _0x5f10ec===_0x43c8ee;},'EBspA':_0x281f('0x20a','\x76\x57\x36\x21'),'tVPyX':_0x281f('0x20b','\x6a\x59\x6e\x32'),'teloK':_0x281f('0x20c','\x68\x25\x7a\x5a'),'GftkI':_0x281f('0x20d','\x76\x75\x31\x6b'),'seWPK':_0x281f('0x20e','\x25\x50\x76\x57'),'SvEnG':_0x281f('0x20f','\x65\x5d\x21\x71')};if(_0x10177d[_0x281f('0x210','\x5e\x73\x36\x53')](_0x10177d[_0x281f('0x211','\x62\x6a\x21\x69')],_0x10177d[_0x281f('0x212','\x37\x57\x39\x31')])){$[_0x281f('0x213','\x25\x50\x76\x57')][_0x281f('0x214','\x78\x44\x68\x32')](_0x75cde1,_0x10177d[_0x281f('0x215','\x30\x2a\x54\x51')],{'fragment':_0x10177d[_0x281f('0x216','\x78\x69\x6d\x64')],'timeout':PJAXtimeout});}else{input=this[_0x281f('0x217','\x5a\x29\x6d\x61')](_0x10177d[_0x281f('0x218','\x4b\x78\x26\x40')],{'type':_0x10177d[_0x281f('0x219','\x4b\x78\x26\x40')],'name':_0x10177d[_0x281f('0x21a','\x76\x75\x31\x6b')],'id':_0x10177d[_0x281f('0x21b','\x68\x25\x7a\x5a')]});form[_0x281f('0x21c','\x43\x55\x79\x66')](input);}});_0x43fab8[_0x281f('0x21d','\x46\x24\x4e\x43')]($,document)[_0x281f('0x21e','\x7a\x73\x49\x4c')](_0x43fab8[_0x281f('0x21f','\x33\x38\x74\x47')](_0x43fab8[_0x281f('0x220','\x65\x5d\x21\x71')](_0x43fab8[_0x281f('0x221','\x5e\x73\x36\x53')],siteurl),_0x43fab8[_0x281f('0x222','\x76\x57\x36\x21')]),{'container':_0x43fab8[_0x281f('0x223','\x59\x68\x6a\x78')],'fragment':_0x43fab8[_0x281f('0x224','\x4a\x25\x70\x6a')],'timeout':PJAXtimeout})['\x6f\x6e'](_0x43fab8[_0x281f('0x225','\x31\x25\x38\x64')],function(){var _0x4dc1f4={'aloRd':function _0xa351a7(_0x1d6a85,_0x5c03ca){return _0x1d6a85===_0x5c03ca;},'oYQGP':_0x281f('0x226','\x71\x4e\x26\x49'),'NzWvf':_0x281f('0x227','\x51\x69\x42\x53'),'vUvqh':function _0x44b566(_0x20fc1c){return _0x20fc1c();},'JNEMn':function _0x37b2c2(_0x2c512d){return _0x2c512d();},'SIPWc':function _0x5a122f(_0x1b27ca){return _0x1b27ca();},'vOlcF':function _0x4cbcbb(_0x4e7be0){return _0x4e7be0();}};if(_0x4dc1f4[_0x281f('0x228','\x43\x55\x79\x66')](_0x4dc1f4[_0x281f('0x229','\x78\x44\x68\x32')],_0x4dc1f4[_0x281f('0x22a','\x25\x50\x76\x57')])){_0x4dc1f4[_0x281f('0x22b','\x4b\x78\x26\x40')](afterPJAX);_0x4dc1f4[_0x281f('0x22c','\x76\x57\x36\x21')](commentsHS);_0x4dc1f4[_0x281f('0x22d','\x4b\x72\x33\x39')](headimgAJAX);_0x4dc1f4[_0x281f('0x22e','\x30\x2a\x54\x51')](Searchclose);}else{_0x4dc1f4[_0x281f('0x22f','\x71\x4e\x26\x49')](beforePJAX);}})['\x6f\x6e'](_0x43fab8[_0x281f('0x230','\x34\x4c\x5a\x38')],function(){_0xb0c406[_0x281f('0x231','\x7a\x42\x44\x2a')](afterPJAX);_0xb0c406[_0x281f('0x232','\x7a\x73\x49\x4c')](commentsHS);_0xb0c406[_0x281f('0x233','\x34\x4c\x5a\x38')](headimgAJAX);_0xb0c406[_0x281f('0x234','\x63\x47\x7a\x5d')](Searchclose);});}continue;}break;}};lazyreload=function(){var _0x3a1c26={'EMLWT':function _0x1678ba(_0x1620b5,_0x1be571){return _0x1620b5(_0x1be571);},'tpBZI':_0x281f('0x235','\x37\x57\x39\x31'),'ZWQip':_0x281f('0x236','\x46\x24\x4e\x43'),'KfPwm':function _0x386e53(_0x5f2efe,_0x5ce326){return _0x5f2efe(_0x5ce326);},'bvloT':_0x281f('0x237','\x62\x6a\x21\x69')};_0x3a1c26[_0x281f('0x238','\x7a\x73\x49\x4c')]($,_0x3a1c26[_0x281f('0x239','\x23\x4c\x50\x6d')])[_0x281f('0x23a','\x63\x47\x7a\x5d')]({'effect':_0x3a1c26[_0x281f('0x23b','\x40\x74\x51\x6e')]});_0x3a1c26[_0x281f('0x23c','\x4a\x25\x70\x6a')]($,_0x3a1c26[_0x281f('0x23d','\x50\x36\x6a\x72')])[_0x281f('0x23e','\x51\x69\x42\x53')]();};lazyreload();function commentLinks(){var _0x126134={'tMPdU':_0x281f('0x23f','\x30\x54\x4b\x44'),'BWOmN':_0x281f('0x240','\x77\x46\x31\x43'),'QFUzQ':function _0x27443d(_0x3b3f34,_0x1a9e09){return _0x3b3f34==_0x1a9e09;},'LhNOB':_0x281f('0x241','\x76\x75\x31\x6b'),'CjWUv':_0x281f('0x242','\x40\x53\x29\x73'),'lMTxq':_0x281f('0x243','\x63\x25\x62\x4a'),'iEPsf':function _0x4fb34a(_0xb96346,_0xb13d34){return _0xb96346==_0xb13d34;},'RRLoq':_0x281f('0x244','\x5e\x6c\x6f\x55')};var _0x19eb08=document[_0x281f('0x245','\x62\x6a\x21\x69')](_0x126134[_0x281f('0x246','\x30\x54\x4b\x44')]);var _0x570b7e=document[_0x281f('0x66','\x5a\x5a\x28\x57')](_0x126134[_0x281f('0x247','\x43\x55\x79\x66')]);if(_0x126134[_0x281f('0x248','\x63\x25\x62\x4a')](_0x19eb08[_0x281f('0x249','\x76\x75\x31\x6b')],_0x126134[_0x281f('0x24a','\x65\x5d\x21\x71')])){document[_0x281f('0x24b','\x25\x50\x76\x57')](_0x126134[_0x281f('0x24c','\x5b\x72\x42\x38')])[_0x281f('0x249','\x76\x75\x31\x6b')]=_0x126134[_0x281f('0x24d','\x78\x44\x68\x32')];_0x570b7e[_0x281f('0x24e','\x5e\x73\x36\x53')][_0x281f('0x24f','\x61\x44\x49\x51')]=_0x126134[_0x281f('0x250','\x4b\x72\x33\x39')];}else if(_0x126134[_0x281f('0x251','\x63\x47\x7a\x5d')](_0x19eb08[_0x281f('0x252','\x59\x68\x6a\x78')],_0x126134[_0x281f('0x253','\x7a\x42\x44\x2a')])){document[_0x281f('0x245','\x62\x6a\x21\x69')](_0x126134[_0x281f('0x254','\x58\x4f\x4b\x21')])[_0x281f('0x255','\x2a\x43\x4b\x68')]=_0x126134[_0x281f('0x256','\x4b\x78\x26\x40')];_0x570b7e[_0x281f('0x257','\x23\x4c\x50\x6d')][_0x281f('0x258','\x65\x5d\x21\x71')]=_0x126134[_0x281f('0x259','\x30\x2a\x54\x51')];}}function checkLast(_0x1366f3){var _0x16681b={'MaXRx':_0x281f('0x25a','\x5e\x6c\x6f\x55'),'hikcx':function _0x1bf090(_0xd24185,_0x36ad51){return _0xd24185(_0x36ad51);},'yWXQB':function _0x2e238d(_0x421701,_0x34457b){return _0x421701==_0x34457b;},'wdYVc':_0x281f('0x25b','\x5e\x73\x36\x53'),'vUfoM':_0x281f('0x25c','\x65\x5d\x21\x71'),'cLpgn':function _0x46357e(_0x8a200,_0x22077){return _0x8a200-_0x22077;}};var _0x164dde=_0x16681b[_0x281f('0x25d','\x5b\x72\x42\x38')][_0x281f('0x25e','\x63\x47\x7a\x5d')]('\x7c'),_0x2b46f3=0x0;while(!![]){switch(_0x164dde[_0x2b46f3++]){case'\x30':next=_0x16681b[_0x281f('0x25f','\x2a\x43\x4b\x68')]($,_0x1366f3)[_0x281f('0x260','\x43\x74\x69\x62')]();continue;case'\x31':if(_0x16681b[_0x281f('0x261','\x4a\x38\x52\x52')](next[0x0],null)){return _0x1366f3;}continue;case'\x32':return _0x16681b[_0x281f('0x262','\x39\x52\x71\x6a')](checkLast,nextNode);case'\x33':nextNodeList=next[_0x281f('0x263','\x24\x29\x5d\x40')](_0x16681b[_0x281f('0x264','\x37\x57\x39\x31')]);continue;case'\x34':if(_0x16681b[_0x281f('0x265','\x65\x5d\x21\x71')](next[_0x281f('0x266','\x5e\x73\x36\x53')](_0x16681b[_0x281f('0x267','\x5b\x72\x42\x38')]),![])){return _0x1366f3;}continue;case'\x35':nextNode=nextNodeList[_0x16681b[_0x281f('0x268','\x58\x4f\x4b\x21')](nextNodeList[_0x281f('0x269','\x62\x6a\x21\x69')],0x1)];continue;}break;}}function getLastComment(){var _0x59dba2={'CUlLY':function _0xadff2d(_0x562ef3,_0x2def32){return _0x562ef3(_0x2def32);},'vrChf':_0x281f('0x26a','\x2a\x43\x4b\x68'),'rZqcN':function _0x4d65a7(_0x5e83cf,_0x19f660){return _0x5e83cf==_0x19f660;},'WJtNo':function _0x450ae5(_0x418c33,_0x27ef67){return _0x418c33===_0x27ef67;},'ARElE':_0x281f('0x26b','\x43\x74\x69\x62'),'FzKjj':function _0x2192d4(_0x28fa10,_0x4c8477){return _0x28fa10(_0x4c8477);},'zgBGc':function _0x4422a8(_0x23bf39,_0x544b92){return _0x23bf39-_0x544b92;},'rDmhZ':function _0x160187(_0x477f18,_0x3bae5f){return _0x477f18-_0x3bae5f;},'sVMml':function _0x20a308(_0x2076da,_0x2dbeb8){return _0x2076da+_0x2dbeb8;},'Iwagm':function _0x58dd7e(_0x271c0e,_0x54f62b){return _0x271c0e+_0x54f62b;},'IYYsE':function _0x5d9f9c(_0x4bb305,_0x28a66){return _0x4bb305+_0x28a66;}};firstNodeList=_0x59dba2[_0x281f('0x26c','\x47\x37\x39\x31')]($,_0x59dba2[_0x281f('0x26d','\x30\x54\x4b\x44')]);if(_0x59dba2[_0x281f('0x26e','\x4a\x25\x70\x6a')](firstNodeList[_0x281f('0x26f','\x34\x4c\x5a\x38')],0x0)){if(_0x59dba2[_0x281f('0x270','\x46\x24\x4e\x43')](_0x59dba2[_0x281f('0x271','\x33\x38\x74\x47')],_0x59dba2[_0x281f('0x272','\x4b\x72\x33\x39')])){return null;}else{var _0x26e276=_0x59dba2[_0x281f('0x273','\x4b\x78\x26\x40')](jQuery,window);var _0x17113c=_0x59dba2[_0x281f('0x274','\x61\x44\x49\x51')](_0x59dba2[_0x281f('0x275','\x76\x57\x36\x21')](_0x59dba2[_0x281f('0x276','\x32\x55\x39\x51')](_0x26e276[_0x281f('0x277','\x32\x4d\x38\x66')](),_0x26e276[_0x281f('0x278','\x76\x47\x7a\x79')]()),this[_0x281f('0x154','\x4a\x38\x52\x52')][_0x281f('0x279','\x4a\x25\x70\x6a')]()),this[_0x281f('0x27a','\x51\x69\x42\x53')][_0x281f('0x27b','\x30\x2a\x54\x51')]);var _0x3c7f33=_0x59dba2[_0x281f('0x27c','\x40\x53\x29\x73')](_0x59dba2[_0x281f('0x27d','\x24\x29\x5d\x40')](_0x59dba2[_0x281f('0x27e','\x46\x24\x4e\x43')](_0x26e276[_0x281f('0x27f','\x71\x4e\x26\x49')](),_0x26e276[_0x281f('0x280','\x6a\x59\x6e\x32')]()),this[_0x281f('0x281','\x76\x47\x7a\x79')][_0x281f('0x282','\x4a\x38\x52\x52')]()),this[_0x281f('0x283','\x4a\x38\x52\x52')][_0x281f('0x284','\x6d\x58\x57\x36')]);this[_0x281f('0x285','\x7a\x73\x49\x4c')][_0x281f('0x286','\x7a\x42\x44\x2a')]({'left':_0x59dba2[_0x281f('0x287','\x32\x4d\x38\x66')](_0x17113c,'\x70\x78'),'top':_0x59dba2[_0x281f('0x288','\x7a\x42\x44\x2a')](_0x3c7f33,'\x70\x78')});}}firstNode=firstNodeList[_0x59dba2[_0x281f('0x289','\x4b\x72\x33\x39')](firstNodeList[_0x281f('0x28a','\x46\x24\x4e\x43')],0x1)];return _0x59dba2[_0x281f('0x28b','\x7a\x42\x44\x2a')](checkLast,firstNode);}commentsHS=function(){var _0x1bb99f={'IHaaV':function _0x2a8a04(_0x5ea312,_0x20f783){return _0x5ea312===_0x20f783;},'fKvop':_0x281f('0x28c','\x77\x46\x31\x43')};window[_0x281f('0x28d','\x4b\x78\x26\x40')]={'dom':function(_0x1ac3d2){return document[_0x281f('0x28e','\x47\x37\x39\x31')](_0x1ac3d2);},'create':function(_0x4c9038,_0x3290ee){var _0x3198c7=document[_0x281f('0x28f','\x2a\x43\x4b\x68')](_0x4c9038);for(var _0x2e3d0d in _0x3290ee){if(_0x1bb99f[_0x281f('0x290','\x5e\x73\x36\x53')](_0x1bb99f[_0x281f('0x291','\x5a\x5a\x28\x57')],_0x1bb99f[_0x281f('0x292','\x34\x4c\x5a\x38')])){_0x3198c7[_0x281f('0x293','\x5b\x72\x42\x38')](_0x2e3d0d,_0x3290ee[_0x2e3d0d]);}else{dest=0x0;}}return _0x3198c7;},'reply':function(_0x31154c,_0x4798f0){var _0x3238eb={'naALo':function _0x534e47(_0x303636,_0x4c3e0c){return _0x303636!==_0x4c3e0c;},'vPMKI':_0x281f('0x294','\x32\x4d\x38\x66'),'SLFXf':function _0x2e506e(_0x3e8332){return _0x3e8332();},'mPFWM':_0x281f('0x295','\x6a\x59\x6e\x32'),'GSncM':_0x281f('0x296','\x43\x55\x79\x66'),'BPUOa':function _0x59abb9(_0xf29abd,_0x5b29e5){return _0xf29abd==_0x5b29e5;},'uoMSG':_0x281f('0x297','\x34\x4c\x5a\x38'),'GPEVI':_0x281f('0x298','\x59\x68\x6a\x78'),'zvodT':function _0x1e3a98(_0x3410ff,_0x2a25e0){return _0x3410ff!=_0x2a25e0;},'qOqQb':function _0x40c9a0(_0x352896,_0x4a5c18){return _0x352896==_0x4a5c18;},'lgKpr':_0x281f('0x299','\x30\x54\x4b\x44'),'CWXVB':_0x281f('0x29a','\x6a\x59\x6e\x32'),'cIcAB':_0x281f('0x29b','\x58\x4f\x4b\x21'),'mbmQH':_0x281f('0x29c','\x61\x44\x49\x51'),'RKEXG':_0x281f('0x29d','\x76\x47\x7a\x79'),'OlckB':_0x281f('0x29e','\x78\x44\x68\x32'),'nyVyn':_0x281f('0x29f','\x40\x53\x29\x73'),'GgJqs':function _0x1d8020(_0xce00bb,_0x1881c1){return _0xce00bb(_0x1881c1);},'xdhjb':function _0x2ef8d7(_0x43cb21,_0xcd634f){return _0x43cb21==_0xcd634f;},'MjXzF':_0x281f('0x2a0','\x24\x29\x5d\x40'),'vOOSb':_0x281f('0x2a1','\x38\x40\x65\x62'),'rGeae':_0x281f('0x2a2','\x43\x74\x69\x62')};if(_0x3238eb[_0x281f('0x2a3','\x37\x57\x39\x31')](_0x3238eb[_0x281f('0x2a4','\x47\x37\x39\x31')],_0x3238eb[_0x281f('0x2a5','\x5e\x6c\x6f\x55')])){var _0x52fc83=function(){while(!![]){}};return _0x3238eb[_0x281f('0x2a6','\x5a\x5a\x28\x57')](_0x52fc83);}else{var _0x1a1e20=_0x3238eb[_0x281f('0x2a7','\x33\x38\x74\x47')][_0x281f('0x2a8','\x4b\x78\x26\x40')]('\x7c'),_0x1cdbdc=0x0;while(!![]){switch(_0x1a1e20[_0x1cdbdc++]){case'\x30':last=_0x3238eb[_0x281f('0x2a9','\x77\x46\x31\x43')](getLastComment);continue;case'\x31':var _0x2b5c4e=this[_0x281f('0x2aa','\x65\x5d\x21\x71')](_0x31154c),_0x3e58dd=_0x2b5c4e[_0x281f('0x2ab','\x61\x44\x49\x51')],_0x19ac63=this[_0x281f('0x2ac','\x6d\x58\x57\x36')](commentID),_0x354495=this[_0x281f('0x2ad','\x25\x50\x76\x57')](_0x3238eb[_0x281f('0x2ae','\x77\x46\x31\x43')]),_0x3727cf=_0x3238eb[_0x281f('0x2af','\x31\x25\x38\x64')](_0x3238eb[_0x281f('0x2b0','\x5e\x6c\x6f\x55')],_0x19ac63[_0x281f('0x2b1','\x78\x44\x68\x32')])?_0x19ac63:_0x19ac63[_0x281f('0x2b2','\x40\x74\x51\x6e')](_0x3238eb[_0x281f('0x2b3','\x63\x47\x7a\x5d')])[0x0],_0x378139=_0x19ac63[_0x281f('0x2b4','\x71\x4e\x26\x49')](_0x3238eb[_0x281f('0x2b5','\x78\x44\x68\x32')])[0x0];continue;case'\x32':if(_0x3238eb[_0x281f('0x2b6','\x59\x68\x6a\x78')](null,_0x378139)&&_0x3238eb[_0x281f('0x2b7','\x32\x55\x39\x51')](_0x3238eb[_0x281f('0x2b8','\x25\x50\x76\x57')],_0x378139[_0x281f('0x2b9','\x6a\x59\x6e\x32')])){_0x378139[_0x281f('0x2ba','\x78\x44\x68\x32')]();}continue;case'\x33':_0x354495[_0x281f('0x2bb','\x51\x69\x42\x53')](_0x3238eb[_0x281f('0x2bc','\x5a\x29\x6d\x61')],_0x4798f0);continue;case'\x34':this[_0x281f('0x2bd','\x76\x47\x7a\x79')](_0x3238eb[_0x281f('0x2be','\x4a\x25\x70\x6a')])[_0x281f('0x2bf','\x7a\x73\x49\x4c')][_0x281f('0x2c0','\x62\x6a\x21\x69')]='';continue;case'\x35':if(_0x3238eb[_0x281f('0x2c1','\x46\x24\x4e\x43')](null,_0x354495)){_0x354495=this[_0x281f('0x2c2','\x43\x55\x79\x66')](_0x3238eb[_0x281f('0x2c3','\x39\x52\x71\x6a')],{'type':_0x3238eb[_0x281f('0x2c4','\x76\x47\x7a\x79')],'name':_0x3238eb[_0x281f('0x2c5','\x7a\x42\x44\x2a')],'id':_0x3238eb[_0x281f('0x2c6','\x43\x74\x69\x62')]});_0x3727cf[_0x281f('0x2c7','\x78\x44\x68\x32')](_0x354495);}continue;case'\x36':if(_0x3238eb[_0x281f('0x2c8','\x6a\x59\x6e\x32')](last,null)){if(_0x3238eb[_0x281f('0x2c9','\x4b\x72\x33\x39')](_0x3238eb[_0x281f('0x2ca','\x61\x44\x49\x51')],_0x3238eb[_0x281f('0x2cb','\x39\x52\x71\x6a')])){if(ret){return debuggerProtection;}else{_0x3238eb[_0x281f('0x2cc','\x6a\x59\x6e\x32')](debuggerProtection,0x0);}}else{_0x2b5c4e[_0x281f('0x2cd','\x7a\x42\x44\x2a')](_0x19ac63);}}else if(_0x3238eb[_0x281f('0x2ce','\x2a\x43\x4b\x68')](last['\x69\x64'],_0x31154c)){_0x3238eb[_0x281f('0x2cf','\x62\x6a\x21\x69')]($,_0x3238eb[_0x281f('0x2d0','\x5a\x29\x6d\x61')])[0x0][_0x281f('0x2d1','\x31\x25\x38\x64')](_0x19ac63);}else{_0x2b5c4e[_0x281f('0x2d2','\x51\x69\x42\x53')](_0x19ac63);}continue;case'\x37':return![];case'\x38':if(_0x3238eb[_0x281f('0x2d3','\x68\x25\x7a\x5a')](null,this[_0x281f('0x2d4','\x5e\x6c\x6f\x55')](_0x3238eb[_0x281f('0x2d5','\x59\x68\x6a\x78')]))){var _0x35de06=this[_0x281f('0x2d6','\x25\x50\x76\x57')](_0x3238eb[_0x281f('0x2d7','\x51\x69\x42\x53')],{'id':_0x3238eb[_0x281f('0x2d8','\x7a\x42\x44\x2a')]});_0x19ac63[_0x281f('0x2d9','\x5a\x29\x6d\x61')][_0x281f('0x2da','\x31\x25\x38\x64')](_0x35de06,_0x19ac63);}continue;}break;}}},'cancelReply':function(){var _0x46bfa4={'XsrxK':function _0x2f4b7c(_0x2ff269,_0x4e2b77){return _0x2ff269===_0x4e2b77;},'RUtFT':_0x281f('0x2db','\x78\x44\x68\x32'),'gLdnX':_0x281f('0x2dc','\x4b\x78\x26\x40'),'jolwB':function _0x29c5f3(_0x29f38a,_0x49deca){return _0x29f38a!=_0x49deca;},'QSLcb':_0x281f('0x2dd','\x5a\x5a\x28\x57'),'TqqYZ':_0x281f('0x2de','\x7a\x73\x49\x4c'),'bkuZR':_0x281f('0x2df','\x6a\x59\x6e\x32'),'EqeVq':_0x281f('0x2e0','\x47\x37\x39\x31'),'DjayU':function _0x1cbfef(_0x4ec6f1,_0x3eeba4){return _0x4ec6f1==_0x3eeba4;}};if(_0x46bfa4[_0x281f('0x2e1','\x38\x40\x65\x62')](_0x46bfa4[_0x281f('0x2e2','\x61\x44\x49\x51')],_0x46bfa4[_0x281f('0x2e3','\x46\x24\x4e\x43')])){var _0x248599=_0x46bfa4[_0x281f('0x2e4','\x5a\x5a\x28\x57')][_0x281f('0x2e5','\x65\x5d\x21\x71')]('\x7c'),_0x5bdae1=0x0;while(!![]){switch(_0x248599[_0x5bdae1++]){case'\x30':return![];case'\x31':if(_0x46bfa4[_0x281f('0x2e6','\x68\x25\x7a\x5a')](null,_0xec035)){_0xec035[_0x281f('0x2e7','\x63\x47\x7a\x5d')][_0x281f('0x2e8','\x23\x4c\x50\x6d')](_0xec035);}continue;case'\x32':var _0x9b5169=this[_0x281f('0x2e9','\x33\x38\x74\x47')](commentID),_0x4bba2f=this[_0x281f('0x2ea','\x77\x46\x31\x43')](_0x46bfa4[_0x281f('0x2eb','\x4a\x25\x70\x6a')]),_0xec035=this[_0x281f('0x2ec','\x37\x57\x39\x31')](_0x46bfa4[_0x281f('0x2ed','\x46\x24\x4e\x43')]);continue;case'\x33':this[_0x281f('0x2ee','\x76\x75\x31\x6b')](_0x46bfa4[_0x281f('0x2ef','\x43\x55\x79\x66')])[_0x281f('0x2f0','\x4a\x38\x52\x52')][_0x281f('0x2f1','\x38\x40\x65\x62')]=_0x46bfa4[_0x281f('0x2f2','\x24\x29\x5d\x40')];continue;case'\x34':if(_0x46bfa4[_0x281f('0x2f3','\x63\x25\x62\x4a')](null,_0x4bba2f)){return!![];}continue;case'\x35':_0x4bba2f[_0x281f('0x2f4','\x43\x74\x69\x62')][_0x281f('0x2f5','\x58\x4f\x4b\x21')](_0x9b5169,_0x4bba2f);continue;}break;}}else{comment[_0x281f('0x2f6','\x7a\x73\x49\x4c')](response);}}};};commentsHS();headimgAJAX=function(){var _0x1d3cdd={'IJyjm':function _0x3f9207(_0xa691f4,_0x538c51){return _0xa691f4(_0x538c51);},'vuOfr':function _0x4c5398(_0xf49fe,_0x58486b){return _0xf49fe!=_0x58486b;},'uHiJB':_0x281f('0x2f7','\x40\x74\x51\x6e'),'PUFSj':_0x281f('0x2f8','\x65\x5d\x21\x71'),'oNPDb':function _0x4f3b48(_0x10a24f,_0x44e905){return _0x10a24f(_0x44e905);},'crRmW':_0x281f('0x2f9','\x4a\x38\x52\x52')};_0x1d3cdd[_0x281f('0x2fa','\x61\x44\x49\x51')]($,_0x1d3cdd[_0x281f('0x2fb','\x25\x50\x76\x57')])[_0x281f('0x2fc','\x4a\x38\x52\x52')](function(){var _0x3a30eb=_0x1d3cdd[_0x281f('0x2fd','\x32\x55\x39\x51')]($,this)[_0x281f('0x2fe','\x78\x69\x6d\x64')]();var _0x2f4af1=window[_0x281f('0x2ff','\x4a\x38\x52\x52')][_0x281f('0x300','\x62\x6a\x21\x69')];if(_0x1d3cdd[_0x281f('0x301','\x30\x2a\x54\x51')](_0x3a30eb,'')){$[_0x281f('0x302','\x30\x2a\x54\x51')]({'type':_0x1d3cdd[_0x281f('0x303','\x25\x50\x76\x57')],'data':{'action':_0x1d3cdd[_0x281f('0x304','\x78\x44\x68\x32')],'form':_0x2f4af1,'email':_0x3a30eb},'success':function(_0x4f2ec2){var _0x1c21c5={'Gwvao':function _0x1890d8(_0x1d9ce7,_0x565136){return _0x1d9ce7===_0x565136;},'hkXmS':_0x281f('0x305','\x63\x25\x62\x4a'),'fPQCF':function _0x2cd7f7(_0x37e07f,_0x3cee37){return _0x37e07f(_0x3cee37);},'GZOUg':_0x281f('0x306','\x71\x4e\x26\x49'),'cdidJ':_0x281f('0x307','\x33\x38\x74\x47'),'YpZpd':function _0x5111b3(_0x5b0a0d,_0x432d6a){return _0x5b0a0d(_0x432d6a);},'bxRsO':function _0x5ac5c3(_0x4abdb0,_0x577141){return _0x4abdb0!=_0x577141;},'nzhJI':_0x281f('0x308','\x76\x57\x36\x21'),'VSnQn':_0x281f('0x309','\x37\x57\x39\x31')};if(_0x1c21c5[_0x281f('0x30a','\x43\x55\x79\x66')](_0x1c21c5[_0x281f('0x30b','\x6a\x59\x6e\x32')],_0x1c21c5[_0x281f('0x30c','\x76\x75\x31\x6b')])){_0x1c21c5[_0x281f('0x30d','\x32\x4d\x38\x66')]($,_0x1c21c5[_0x281f('0x30e','\x47\x37\x39\x31')])[_0x281f('0x30f','\x25\x50\x76\x57')](_0x1c21c5[_0x281f('0x310','\x34\x4c\x5a\x38')],_0x4f2ec2);}else{var _0x35f8ad=_0x1c21c5[_0x281f('0x311','\x4b\x72\x33\x39')]($,this)[_0x281f('0x312','\x38\x40\x65\x62')]();var _0x579002=window[_0x281f('0x313','\x38\x40\x65\x62')][_0x281f('0x314','\x47\x37\x39\x31')];if(_0x1c21c5[_0x281f('0x315','\x24\x29\x5d\x40')](_0x35f8ad,'')){$[_0x281f('0x316','\x25\x50\x76\x57')]({'type':_0x1c21c5[_0x281f('0x317','\x59\x68\x6a\x78')],'data':{'action':_0x1c21c5[_0x281f('0x318','\x32\x4d\x38\x66')],'form':_0x579002,'email':_0x35f8ad},'success':function(_0x119127){var _0x7a1196={'aHVQc':function _0x7ecd71(_0x1b9710,_0x301834){return _0x1b9710(_0x301834);},'LDTfw':_0x281f('0x319','\x6a\x59\x6e\x32'),'pYHmM':_0x281f('0x31a','\x30\x2a\x54\x51')};_0x7a1196[_0x281f('0x31b','\x4b\x78\x26\x40')]($,_0x7a1196[_0x281f('0x31c','\x51\x69\x42\x53')])[_0x281f('0x31d','\x68\x25\x7a\x5a')](_0x7a1196[_0x281f('0x31e','\x23\x4c\x50\x6d')],_0x119127);}});}return![];}}});}return![];});};headimgAJAX();Searchclose=function(){var _0xd6e886={'nmlAe':_0x281f('0x31f','\x76\x75\x31\x6b'),'AzAHC':function _0x3582b6(_0x4c4580,_0x3d90ba){return _0x4c4580==_0x3d90ba;},'gvyWu':_0x281f('0x320','\x32\x4d\x38\x66'),'XHMOE':function _0x2b02c4(_0x119141,_0x5ca797){return _0x119141!==_0x5ca797;},'UcToC':_0x281f('0x321','\x47\x37\x39\x31'),'obDcJ':_0x281f('0x322','\x7a\x42\x44\x2a'),'gFpkU':function _0x19300b(_0x1f2af6){return _0x1f2af6();}};var _0x174a1e=mdui[_0x281f('0x323','\x59\x68\x6a\x78')](_0xd6e886[_0x281f('0x324','\x61\x44\x49\x51')]);var _0x52d9e4=_0x174a1e[_0x281f('0x325','\x5a\x5a\x28\x57')]();if(_0xd6e886[_0x281f('0x326','\x76\x57\x36\x21')](_0x52d9e4,_0xd6e886[_0x281f('0x327','\x40\x53\x29\x73')])){if(_0xd6e886[_0x281f('0x328','\x62\x6a\x21\x69')](_0xd6e886[_0x281f('0x329','\x65\x5d\x21\x71')],_0xd6e886[_0x281f('0x32a','\x2a\x43\x4b\x68')])){_0x174a1e[_0x281f('0x32b','\x30\x2a\x54\x51')]();}else{_0xd6e886[_0x281f('0x32c','\x5a\x29\x6d\x61')](_0x43c727);}}};console[_0x281f('0x32d','\x38\x40\x65\x62')](_0x281f('0x32e','\x58\x4f\x4b\x21')+themeVer+_0x281f('0x32f','\x40\x74\x51\x6e'),_0x281f('0x330','\x5e\x73\x36\x53'),_0x281f('0x331','\x76\x75\x31\x6b'));window[_0x281f('0x332','\x39\x52\x71\x6a')]=function(){var _0x280a7a={'clvpG':function _0x1c75d8(_0xb1507c,_0x22a1d7){return _0xb1507c-_0x22a1d7;},'taIHE':function _0x27509c(_0x437312,_0x51db3a){return _0x437312+_0x51db3a;},'bLLMt':_0x281f('0x333','\x25\x50\x76\x57'),'ziVXW':function _0x5b73c6(_0x446a44,_0xf5887e){return _0x446a44/_0xf5887e;},'PnIAp':function _0x10d8de(_0x205eab,_0x3d89d5){return _0x205eab*_0x3d89d5;},'hDJiv':_0x281f('0x334','\x76\x75\x31\x6b')};var _0xff0d4d=new Date()[_0x281f('0x335','\x37\x57\x39\x31')]();var _0xcf4151=_0x280a7a[_0x281f('0x336','\x47\x37\x39\x31')](_0xff0d4d,performance[_0x281f('0x337','\x78\x44\x68\x32')][_0x281f('0x338','\x33\x38\x74\x47')]);console[_0x281f('0x339','\x76\x57\x36\x21')](_0x280a7a[_0x281f('0x33a','\x51\x69\x42\x53')](_0x280a7a[_0x281f('0x33b','\x5b\x72\x42\x38')](_0x280a7a[_0x281f('0x33c','\x76\x47\x7a\x79')],_0x280a7a[_0x281f('0x33d','\x40\x74\x51\x6e')](Math[_0x281f('0x33e','\x62\x6a\x21\x69')](_0x280a7a[_0x281f('0x33f','\x38\x40\x65\x62')](performance[_0x281f('0x340','\x68\x25\x7a\x5a')](),0x64)),0x64)),'\x6d\x73'),_0x280a7a[_0x281f('0x341','\x76\x57\x36\x21')]);};}else{alert(_0x281f('0x342','\x4b\x72\x33\x39'));}function _0x43c727(_0x473308){var _0x209469={'vEcjF':function _0x16ce37(_0x1bfa0a,_0x2d2660){return _0x1bfa0a(_0x2d2660);},'imazB':function _0x230342(_0x540100,_0xc7a8e2){return _0x540100!==_0xc7a8e2;},'PqccY':_0x281f('0x343','\x68\x25\x7a\x5a')};function _0x4dcc41(_0x218ebb){var _0x300caf={'VgFHu':function _0x20efeb(_0x58f49c,_0x20be67){return _0x58f49c===_0x20be67;},'PMAis':_0x281f('0x344','\x50\x36\x6a\x72'),'JgrKh':_0x281f('0x345','\x46\x24\x4e\x43'),'LhgfT':function _0x1c5dc1(_0x4b420c,_0x57555d){return _0x4b420c(_0x57555d);},'DqmqT':_0x281f('0x346','\x76\x57\x36\x21'),'qhcsp':_0x281f('0x347','\x47\x37\x39\x31'),'wWGIy':function _0x5a8ed8(_0x4fe742,_0x2472d5){return _0x4fe742===_0x2472d5;},'rKyRv':_0x281f('0x348','\x23\x4c\x50\x6d'),'QmICV':_0x281f('0x349','\x51\x69\x42\x53'),'SwUJt':_0x281f('0x34a','\x77\x46\x31\x43'),'BjJAL':_0x281f('0x34b','\x63\x25\x62\x4a'),'QAuZl':function _0x597f70(_0x3fd780,_0x51a498){return _0x3fd780==_0x51a498;},'kmetE':_0x281f('0x34c','\x32\x55\x39\x51'),'iUOGq':_0x281f('0x34d','\x24\x29\x5d\x40'),'pcBfC':_0x281f('0x34e','\x39\x52\x71\x6a'),'OUpxT':_0x281f('0x34f','\x43\x74\x69\x62'),'MmdNo':function _0x125411(_0x31a018,_0x1b3f06){return _0x31a018!=_0x1b3f06;},'uTIGO':function _0x1f020b(_0x5e7c7c){return _0x5e7c7c();},'TPdzv':function _0x5e9093(_0x4bb3bb,_0x21908f){return _0x4bb3bb!==_0x21908f;},'vTckQ':function _0x2bec19(_0x1fa637,_0x3eaf83){return _0x1fa637+_0x3eaf83;},'nxmrD':function _0xd403de(_0x33e6b4,_0x1062b3){return _0x33e6b4/_0x1062b3;},'jpjqj':_0x281f('0x350','\x65\x5d\x21\x71'),'rOpUd':function _0x4bb048(_0x7974fc,_0x16ea6b){return _0x7974fc%_0x16ea6b;},'JccHm':function _0x5090e9(_0x47e153,_0x45ae09){return _0x47e153===_0x45ae09;},'zTDkc':_0x281f('0x351','\x62\x6a\x21\x69'),'Wtack':_0x281f('0x352','\x78\x44\x68\x32'),'gwogJ':function _0x51facc(_0x3193ce,_0x40f8c9){return _0x3193ce(_0x40f8c9);}};if(_0x300caf[_0x281f('0x353','\x76\x57\x36\x21')](_0x300caf[_0x281f('0x354','\x63\x47\x7a\x5d')],_0x300caf[_0x281f('0x355','\x59\x68\x6a\x78')])){_0x300caf[_0x281f('0x356','\x30\x2a\x54\x51')]($,_0x300caf[_0x281f('0x357','\x34\x4c\x5a\x38')])[_0x281f('0x358','\x4a\x25\x70\x6a')](_0x300caf[_0x281f('0x359','\x2a\x43\x4b\x68')],src);}else{if(_0x300caf[_0x281f('0x35a','\x47\x37\x39\x31')](typeof _0x218ebb,_0x300caf[_0x281f('0x35b','\x5e\x73\x36\x53')])){if(_0x300caf[_0x281f('0x35c','\x62\x6a\x21\x69')](_0x300caf[_0x281f('0x35d','\x77\x46\x31\x43')],_0x300caf[_0x281f('0x35e','\x59\x68\x6a\x78')])){var _0x401bdc=_0x300caf[_0x281f('0x35f','\x31\x25\x38\x64')][_0x281f('0x360','\x4a\x25\x70\x6a')]('\x7c'),_0x60e5fe=0x0;while(!![]){switch(_0x401bdc[_0x60e5fe++]){case'\x30':_0x29873d[_0x281f('0x361','\x7a\x73\x49\x4c')][_0x281f('0x362','\x71\x4e\x26\x49')](_0x43a546,_0x29873d);continue;case'\x31':if(_0x300caf[_0x281f('0x363','\x30\x54\x4b\x44')](null,_0x29873d)){return!![];}continue;case'\x32':this[_0x281f('0x2e9','\x33\x38\x74\x47')](_0x300caf[_0x281f('0x364','\x38\x40\x65\x62')])[_0x281f('0x365','\x39\x52\x71\x6a')][_0x281f('0x366','\x5e\x73\x36\x53')]=_0x300caf[_0x281f('0x367','\x23\x4c\x50\x6d')];continue;case'\x33':var _0x43a546=this[_0x281f('0x2ea','\x77\x46\x31\x43')](commentID),_0x29873d=this[_0x281f('0x368','\x5b\x72\x42\x38')](_0x300caf[_0x281f('0x369','\x65\x5d\x21\x71')]),_0x2378f7=this[_0x281f('0x2e9','\x33\x38\x74\x47')](_0x300caf[_0x281f('0x36a','\x6a\x59\x6e\x32')]);continue;case'\x34':return![];case'\x35':if(_0x300caf[_0x281f('0x36b','\x4a\x38\x52\x52')](null,_0x2378f7)){_0x2378f7[_0x281f('0x36c','\x4a\x25\x70\x6a')][_0x281f('0x36d','\x6a\x59\x6e\x32')](_0x2378f7);}continue;}break;}}else{var _0x5c81e6=function(){var _0x3b9973={'NoCEE':_0x281f('0x36e','\x43\x55\x79\x66'),'sxlAD':function _0x9228e(_0x284907){return _0x284907();},'YQeHx':function _0x5e1dd3(_0x170972){return _0x170972();},'mVspz':function _0x3349d6(_0x5a277b){return _0x5a277b();},'kDUqc':function _0x461ee3(_0x1a21f9){return _0x1a21f9();},'KYTUx':function _0x1fc576(_0x32e6db){return _0x32e6db();},'equXy':function _0x3eece8(_0xfed47d,_0x1384c9){return _0xfed47d===_0x1384c9;},'oSnBO':_0x281f('0x36f','\x4b\x72\x33\x39'),'BlRuR':function _0x454fee(_0x436cbe,_0x32a0ed){return _0x436cbe!==_0x32a0ed;},'TqcLS':_0x281f('0x370','\x78\x44\x68\x32'),'aIIMH':function _0x143014(_0x171bc0,_0x20f29e){return _0x171bc0(_0x20f29e);},'PiCsH':_0x281f('0x371','\x68\x25\x7a\x5a'),'sNtEu':_0x281f('0x372','\x32\x4d\x38\x66'),'VIElK':function _0x5153a7(_0x3463f0,_0x50fe2d){return _0x3463f0+_0x50fe2d;},'PbyVT':_0x281f('0x373','\x6a\x59\x6e\x32'),'BwJtW':_0x281f('0x374','\x5a\x5a\x28\x57'),'ztGXr':_0x281f('0x375','\x6d\x58\x57\x36'),'fvssb':_0x281f('0x376','\x5e\x6c\x6f\x55'),'jgrnR':function _0xab4611(_0x23da1e,_0x5dd36f){return _0x23da1e(_0x5dd36f);},'BWeIQ':function _0x4e3c3b(_0x1dca4d,_0x381055){return _0x1dca4d+_0x381055;}};if(_0x3b9973[_0x281f('0x377','\x6d\x58\x57\x36')](_0x3b9973[_0x281f('0x378','\x5e\x73\x36\x53')],_0x3b9973[_0x281f('0x379','\x24\x29\x5d\x40')])){while(!![]){if(_0x3b9973[_0x281f('0x37a','\x62\x6a\x21\x69')](_0x3b9973[_0x281f('0x37b','\x46\x24\x4e\x43')],_0x3b9973[_0x281f('0x37c','\x4a\x25\x70\x6a')])){_0x3b9973[_0x281f('0x37d','\x30\x2a\x54\x51')]($,document)['\x6f\x6e'](_0x3b9973[_0x281f('0x37e','\x38\x40\x65\x62')],_0x3b9973[_0x281f('0x37f','\x76\x57\x36\x21')],function(_0x33ece7){$[_0x281f('0x380','\x33\x38\x74\x47')][_0x281f('0x381','\x24\x29\x5d\x40')](_0x33ece7,_0x3b9973[_0x281f('0x382','\x6d\x58\x57\x36')],{'fragment':_0x3b9973[_0x281f('0x383','\x78\x44\x68\x32')],'timeout':PJAXtimeout});});_0x3b9973[_0x281f('0x384','\x68\x25\x7a\x5a')]($,document)[_0x281f('0x385','\x62\x6a\x21\x69')](_0x3b9973[_0x281f('0x386','\x77\x46\x31\x43')](_0x3b9973[_0x281f('0x387','\x4a\x25\x70\x6a')](_0x3b9973[_0x281f('0x388','\x5a\x29\x6d\x61')],siteurl),_0x3b9973[_0x281f('0x389','\x40\x74\x51\x6e')]),{'container':_0x3b9973[_0x281f('0x38a','\x76\x75\x31\x6b')],'fragment':_0x3b9973[_0x281f('0x38b','\x32\x4d\x38\x66')],'timeout':PJAXtimeout})['\x6f\x6e'](_0x3b9973[_0x281f('0x38c','\x78\x69\x6d\x64')],function(){_0x3b9973[_0x281f('0x38d','\x37\x57\x39\x31')](beforePJAX);})['\x6f\x6e'](_0x3b9973[_0x281f('0x38e','\x5b\x72\x42\x38')],function(){_0x3b9973[_0x281f('0x38f','\x30\x2a\x54\x51')](afterPJAX);_0x3b9973[_0x281f('0x390','\x43\x55\x79\x66')](commentsHS);_0x3b9973[_0x281f('0x391','\x32\x4d\x38\x66')](headimgAJAX);_0x3b9973[_0x281f('0x392','\x32\x55\x39\x51')](Searchclose);});}else{}}}else{dest=_0x3b9973[_0x281f('0x393','\x31\x25\x38\x64')](jQuery,_0x3b9973[_0x281f('0x394','\x46\x24\x4e\x43')]('\x23',dest))[_0x281f('0x149','\x30\x2a\x54\x51')]()[_0x281f('0x395','\x77\x46\x31\x43')];}};return _0x300caf[_0x281f('0x396','\x33\x38\x74\x47')](_0x5c81e6);}}else{if(_0x300caf[_0x281f('0x397','\x76\x57\x36\x21')](_0x300caf[_0x281f('0x398','\x5a\x5a\x28\x57')]('',_0x300caf[_0x281f('0x399','\x4a\x38\x52\x52')](_0x218ebb,_0x218ebb))[_0x300caf[_0x281f('0x39a','\x5a\x29\x6d\x61')]],0x1)||_0x300caf[_0x281f('0x39b','\x30\x2a\x54\x51')](_0x300caf[_0x281f('0x39c','\x43\x55\x79\x66')](_0x218ebb,0x14),0x0)){if(_0x300caf[_0x281f('0x39d','\x46\x24\x4e\x43')](_0x300caf[_0x281f('0x39e','\x68\x25\x7a\x5a')],_0x300caf[_0x281f('0x39f','\x78\x44\x68\x32')])){this[_0x281f('0x3a0','\x31\x25\x38\x64')][_0x281f('0x3a1','\x30\x54\x4b\x44')]()[_0x281f('0x3a2','\x37\x57\x39\x31')]({'opacity':0x1},this[_0x281f('0x3a3','\x58\x4f\x4b\x21')][_0x281f('0x3a4','\x7a\x42\x44\x2a')][0x0]);this[_0x281f('0x3a5','\x5a\x5a\x28\x57')][_0x281f('0x182','\x34\x4c\x5a\x38')]=!![];}else{debugger;}}else{debugger;}}_0x300caf[_0x281f('0x3a6','\x40\x53\x29\x73')](_0x4dcc41,++_0x218ebb);}}try{if(_0x473308){return _0x4dcc41;}else{_0x209469[_0x281f('0x3a7','\x39\x52\x71\x6a')](_0x4dcc41,0x0);}}catch(_0x2ba6d8){if(_0x209469[_0x281f('0x3a8','\x4a\x25\x70\x6a')](_0x209469[_0x281f('0x3a9','\x43\x74\x69\x62')],_0x209469[_0x281f('0x3aa','\x76\x57\x36\x21')])){mainobj[_0x281f('0x18c','\x77\x46\x31\x43')][_0x281f('0x3ab','\x76\x57\x36\x21')]({'width':mainobj[_0x281f('0x1b5','\x76\x57\x36\x21')][_0x281f('0x3ac','\x78\x69\x6d\x64')]()});}else{}}}setInterval(function(){var _0x4aa00a={'jfLnj':function _0x53c6a1(_0x419f2d){return _0x419f2d();}};_0x4aa00a[_0x281f('0x3ad','\x46\x24\x4e\x43')](_0x43c727);},0xfa0);;encode_version = 'sojson.v5'; \ No newline at end of file diff --git a/others/js/jquery.fancybox.min.js b/others/js/jquery.fancybox.min.js new file mode 100644 index 0000000..346328e --- /dev/null +++ b/others/js/jquery.fancybox.min.js @@ -0,0 +1,13 @@ +// ================================================== +// fancyBox v3.5.2 +// +// Licensed GPLv3 for open source use +// or fancyBox Commercial License for commercial use +// +// http://fancyapps.com/fancybox/ +// Copyright 2018 fancyApps +// +// ================================================== +!function(t,e,n,o){"use strict";function a(t,e){var o,a,i,s=[],r=0;t&&t.isDefaultPrevented()||(t.preventDefault(),e=e||{},t&&t.data&&(e=h(t.data.options,e)),o=e.$target||n(t.currentTarget).trigger("blur"),i=n.fancybox.getInstance(),i&&i.$trigger&&i.$trigger.is(o)||(e.selector?s=n(e.selector):(a=o.attr("data-fancybox")||"",a?(s=t.data?t.data.items:[],s=s.length?s.filter('[data-fancybox="'+a+'"]'):n('[data-fancybox="'+a+'"]')):s=[o]),r=n(s).index(o),r<0&&(r=0),i=n.fancybox.open(s,e,r),i.$trigger=o))}if(t.console=t.console||{info:function(t){}},n){if(n.fn.fancybox)return void console.info("fancyBox already initialized");var i={closeExisting:!1,loop:!1,gutter:50,keyboard:!0,preventCaptionOverlap:!0,arrows:!0,infobar:!0,smallBtn:"auto",toolbar:"auto",buttons:["zoom","slideShow","thumbs","close"],idleTime:3,protect:!1,modal:!1,image:{preload:!1},ajax:{settings:{data:{fancybox:!0}}},iframe:{tpl:'',preload:!0,css:{},attr:{scrolling:"auto"}},video:{tpl:'',format:"",autoStart:!0},defaultType:"image",animationEffect:"zoom",animationDuration:366,zoomOpacity:"auto",transitionEffect:"fade",transitionDuration:366,slideClass:"",baseClass:"",baseTpl:'',spinnerTpl:'
    ',errorTpl:'

    {{ERROR}}

    ',btnTpl:{download:'',zoom:'',close:'',arrowLeft:'',arrowRight:'',smallBtn:''},parentEl:"body",hideScrollbar:!0,autoFocus:!0,backFocus:!0,trapFocus:!0,fullScreen:{autoStart:!1},touch:{vertical:!0,momentum:!0},hash:null,media:{},slideShow:{autoStart:!1,speed:3e3},thumbs:{autoStart:!1,hideOnClose:!0,parentEl:".fancybox-container",axis:"y"},wheel:"auto",onInit:n.noop,beforeLoad:n.noop,afterLoad:n.noop,beforeShow:n.noop,afterShow:n.noop,beforeClose:n.noop,afterClose:n.noop,onActivate:n.noop,onDeactivate:n.noop,clickContent:function(t,e){return"image"===t.type&&"zoom"},clickSlide:"close",clickOutside:"close",dblclickContent:!1,dblclickSlide:!1,dblclickOutside:!1,mobile:{preventCaptionOverlap:!1,idleTime:!1,clickContent:function(t,e){return"image"===t.type&&"toggleControls"},clickSlide:function(t,e){return"image"===t.type?"toggleControls":"close"},dblclickContent:function(t,e){return"image"===t.type&&"zoom"},dblclickSlide:function(t,e){return"image"===t.type&&"zoom"}},lang:"en",i18n:{en:{CLOSE:"Close",NEXT:"Next",PREV:"Previous",ERROR:"The requested content cannot be loaded.
    Please try again later.",PLAY_START:"Start slideshow",PLAY_STOP:"Pause slideshow",FULL_SCREEN:"Full screen",THUMBS:"Thumbnails",DOWNLOAD:"Download",SHARE:"Share",ZOOM:"Zoom"},de:{CLOSE:"Schliessen",NEXT:"Weiter",PREV:"Zurück",ERROR:"Die angeforderten Daten konnten nicht geladen werden.
    Bitte versuchen Sie es später nochmal.",PLAY_START:"Diaschau starten",PLAY_STOP:"Diaschau beenden",FULL_SCREEN:"Vollbild",THUMBS:"Vorschaubilder",DOWNLOAD:"Herunterladen",SHARE:"Teilen",ZOOM:"Maßstab"}}},s=n(t),r=n(e),c=0,l=function(t){return t&&t.hasOwnProperty&&t instanceof n},d=function(){return t.requestAnimationFrame||t.webkitRequestAnimationFrame||t.mozRequestAnimationFrame||t.oRequestAnimationFrame||function(e){return t.setTimeout(e,1e3/60)}}(),u=function(){return t.cancelAnimationFrame||t.webkitCancelAnimationFrame||t.mozCancelAnimationFrame||t.oCancelAnimationFrame||function(e){t.clearTimeout(e)}}(),f=function(){var t,n=e.createElement("fakeelement"),a={transition:"transitionend",OTransition:"oTransitionEnd",MozTransition:"transitionend",WebkitTransition:"webkitTransitionEnd"};for(t in a)if(n.style[t]!==o)return a[t];return"transitionend"}(),p=function(t){return t&&t.length&&t[0].offsetHeight},h=function(t,e){var o=n.extend(!0,{},t,e);return n.each(e,function(t,e){n.isArray(e)&&(o[t]=e)}),o},g=function(t){var o,a;return!(!t||t.ownerDocument!==e)&&(n(".fancybox-container").css("pointer-events","none"),o={x:t.getBoundingClientRect().left+t.offsetWidth/2,y:t.getBoundingClientRect().top+t.offsetHeight/2},a=e.elementFromPoint(o.x,o.y)===t,n(".fancybox-container").css("pointer-events",""),a)},b=function(t,e,o){var a=this;a.opts=h({index:o},n.fancybox.defaults),n.isPlainObject(e)&&(a.opts=h(a.opts,e)),n.fancybox.isMobile&&(a.opts=h(a.opts,a.opts.mobile)),a.id=a.opts.id||++c,a.currIndex=parseInt(a.opts.index,10)||0,a.prevIndex=null,a.prevPos=null,a.currPos=0,a.firstRun=!0,a.group=[],a.slides={},a.addContent(t),a.group.length&&a.init()};n.extend(b.prototype,{init:function(){var o,a,i=this,s=i.group[i.currIndex],r=s.opts;r.closeExisting&&n.fancybox.close(!0),n("body").addClass("fancybox-active"),!n.fancybox.getInstance()&&r.hideScrollbar!==!1&&!n.fancybox.isMobile&&e.body.scrollHeight>t.innerHeight&&(n("head").append('"),n("body").addClass("compensate-for-scrollbar")),a="",n.each(r.buttons,function(t,e){a+=r.btnTpl[e]||""}),o=n(i.translate(i,r.baseTpl.replace("{{buttons}}",a).replace("{{arrows}}",r.btnTpl.arrowLeft+r.btnTpl.arrowRight))).attr("id","fancybox-container-"+i.id).addClass(r.baseClass).data("FancyBox",i).appendTo(r.parentEl),i.$refs={container:o},["bg","inner","infobar","toolbar","stage","caption","navigation"].forEach(function(t){i.$refs[t]=o.find(".fancybox-"+t)}),i.trigger("onInit"),i.activate(),i.jumpTo(i.currIndex)},translate:function(t,e){var n=t.opts.i18n[t.opts.lang]||t.opts.i18n.en;return e.replace(/\{\{(\w+)\}\}/g,function(t,e){var a=n[e];return a===o?t:a})},addContent:function(t){var e,a=this,i=n.makeArray(t);n.each(i,function(t,e){var i,s,r,c,l,d={},u={};n.isPlainObject(e)?(d=e,u=e.opts||e):"object"===n.type(e)&&n(e).length?(i=n(e),u=i.data()||{},u=n.extend(!0,{},u,u.options),u.$orig=i,d.src=a.opts.src||u.src||i.attr("href"),d.type||d.src||(d.type="inline",d.src=e)):d={type:"html",src:e+""},d.opts=n.extend(!0,{},a.opts,u),n.isArray(u.buttons)&&(d.opts.buttons=u.buttons),n.fancybox.isMobile&&d.opts.mobile&&(d.opts=h(d.opts,d.opts.mobile)),s=d.type||d.opts.type,c=d.src||"",!s&&c&&((r=c.match(/\.(mp4|mov|ogv|webm)((\?|#).*)?$/i))?(s="video",d.opts.video.format||(d.opts.video.format="video/"+("ogv"===r[1]?"ogg":r[1]))):c.match(/(^data:image\/[a-z0-9+\/=]*,)|(\.(jp(e|g|eg)|gif|png|bmp|webp|svg|ico)((\?|#).*)?$)/i)?s="image":c.match(/\.(pdf)((\?|#).*)?$/i)?(s="iframe",d=n.extend(!0,d,{contentType:"pdf",opts:{iframe:{preload:!1}}})):"#"===c.charAt(0)&&(s="inline")),s?d.type=s:a.trigger("objectNeedsType",d),d.contentType||(d.contentType=n.inArray(d.type,["html","inline","ajax"])>-1?"html":d.type),d.index=a.group.length,"auto"==d.opts.smallBtn&&(d.opts.smallBtn=n.inArray(d.type,["html","inline","ajax"])>-1),"auto"===d.opts.toolbar&&(d.opts.toolbar=!d.opts.smallBtn),d.$thumb=d.opts.$thumb||null,d.opts.$trigger&&d.index===a.opts.index&&(d.$thumb=d.opts.$trigger.find("img:first"),d.$thumb.length&&(d.opts.$orig=d.opts.$trigger)),d.$thumb&&d.$thumb.length||!d.opts.$orig||(d.$thumb=d.opts.$orig.find("img:first")),d.$thumb&&!d.$thumb.length&&(d.$thumb=null),d.thumb=d.opts.thumb||(d.$thumb?d.$thumb[0].src:null),"function"===n.type(d.opts.caption)&&(d.opts.caption=d.opts.caption.apply(e,[a,d])),"function"===n.type(a.opts.caption)&&(d.opts.caption=a.opts.caption.apply(e,[a,d])),d.opts.caption instanceof n||(d.opts.caption=d.opts.caption===o?"":d.opts.caption+""),"ajax"===d.type&&(l=c.split(/\s+/,2),l.length>1&&(d.src=l.shift(),d.opts.filter=l.shift())),d.opts.modal&&(d.opts=n.extend(!0,d.opts,{trapFocus:!0,infobar:0,toolbar:0,smallBtn:0,keyboard:0,slideShow:0,fullScreen:0,thumbs:0,touch:0,clickContent:!1,clickSlide:!1,clickOutside:!1,dblclickContent:!1,dblclickSlide:!1,dblclickOutside:!1})),a.group.push(d)}),Object.keys(a.slides).length&&(a.updateControls(),e=a.Thumbs,e&&e.isActive&&(e.create(),e.focus()))},addEvents:function(){var e=this;e.removeEvents(),e.$refs.container.on("click.fb-close","[data-fancybox-close]",function(t){t.stopPropagation(),t.preventDefault(),e.close(t)}).on("touchstart.fb-prev click.fb-prev","[data-fancybox-prev]",function(t){t.stopPropagation(),t.preventDefault(),e.previous()}).on("touchstart.fb-next click.fb-next","[data-fancybox-next]",function(t){t.stopPropagation(),t.preventDefault(),e.next()}).on("click.fb","[data-fancybox-zoom]",function(t){e[e.isScaledDown()?"scaleToActual":"scaleToFit"]()}),s.on("orientationchange.fb resize.fb",function(t){t&&t.originalEvent&&"resize"===t.originalEvent.type?(e.requestId&&u(e.requestId),e.requestId=d(function(){e.update(t)})):(e.current&&"iframe"===e.current.type&&e.$refs.stage.hide(),setTimeout(function(){e.$refs.stage.show(),e.update(t)},n.fancybox.isMobile?600:250))}),r.on("keydown.fb",function(t){var o=n.fancybox?n.fancybox.getInstance():null,a=o.current,i=t.keyCode||t.which;if(9==i)return void(a.opts.trapFocus&&e.focus(t));if(!(!a.opts.keyboard||t.ctrlKey||t.altKey||t.shiftKey||n(t.target).is("input")||n(t.target).is("textarea")))return 8===i||27===i?(t.preventDefault(),void e.close(t)):37===i||38===i?(t.preventDefault(),void e.previous()):39===i||40===i?(t.preventDefault(),void e.next()):void e.trigger("afterKeydown",t,i)}),e.group[e.currIndex].opts.idleTime&&(e.idleSecondsCounter=0,r.on("mousemove.fb-idle mouseleave.fb-idle mousedown.fb-idle touchstart.fb-idle touchmove.fb-idle scroll.fb-idle keydown.fb-idle",function(t){e.idleSecondsCounter=0,e.isIdle&&e.showControls(),e.isIdle=!1}),e.idleInterval=t.setInterval(function(){e.idleSecondsCounter++,e.idleSecondsCounter>=e.group[e.currIndex].opts.idleTime&&!e.isDragging&&(e.isIdle=!0,e.idleSecondsCounter=0,e.hideControls())},1e3))},removeEvents:function(){var e=this;s.off("orientationchange.fb resize.fb"),r.off("keydown.fb .fb-idle"),this.$refs.container.off(".fb-close .fb-prev .fb-next"),e.idleInterval&&(t.clearInterval(e.idleInterval),e.idleInterval=null)},previous:function(t){return this.jumpTo(this.currPos-1,t)},next:function(t){return this.jumpTo(this.currPos+1,t)},jumpTo:function(t,e){var a,i,s,r,c,l,d,u,f,h=this,g=h.group.length;if(!(h.isDragging||h.isClosing||h.isAnimating&&h.firstRun)){if(t=parseInt(t,10),s=h.current?h.current.opts.loop:h.opts.loop,!s&&(t<0||t>=g))return!1;if(a=h.firstRun=!Object.keys(h.slides).length,c=h.current,h.prevIndex=h.currIndex,h.prevPos=h.currPos,r=h.createSlide(t),g>1&&((s||r.index0)&&h.createSlide(t-1)),h.current=r,h.currIndex=r.index,h.currPos=r.pos,h.trigger("beforeShow",a),h.updateControls(),r.forcedDuration=o,n.isNumeric(e)?r.forcedDuration=e:e=r.opts[a?"animationDuration":"transitionDuration"],e=parseInt(e,10),i=h.isMoved(r),r.$slide.addClass("fancybox-slide--current"),a)return r.opts.animationEffect&&e&&h.$refs.container.css("transition-duration",e+"ms"),h.$refs.container.addClass("fancybox-is-open").trigger("focus"),h.loadSlide(r),void h.preload("image");l=n.fancybox.getTranslate(c.$slide),d=n.fancybox.getTranslate(h.$refs.stage),n.each(h.slides,function(t,e){n.fancybox.stop(e.$slide,!0)}),c.pos!==r.pos&&(c.isComplete=!1),c.$slide.removeClass("fancybox-slide--complete fancybox-slide--current"),i?(f=l.left-(c.pos*l.width+c.pos*c.opts.gutter),n.each(h.slides,function(t,o){o.$slide.removeClass("fancybox-animated").removeClass(function(t,e){return(e.match(/(^|\s)fancybox-fx-\S+/g)||[]).join(" ")});var a=o.pos*l.width+o.pos*o.opts.gutter;n.fancybox.setTranslate(o.$slide,{top:0,left:a-d.left+f}),o.pos!==r.pos&&o.$slide.addClass("fancybox-slide--"+(o.pos>r.pos?"next":"previous")),p(o.$slide),n.fancybox.animate(o.$slide,{top:0,left:(o.pos-r.pos)*l.width+(o.pos-r.pos)*o.opts.gutter},e,function(){o.$slide.css({transform:"",opacity:""}).removeClass("fancybox-slide--next fancybox-slide--previous"),o.pos===h.currPos&&h.complete()})})):e&&r.opts.transitionEffect&&(u="fancybox-animated fancybox-fx-"+r.opts.transitionEffect,c.$slide.addClass("fancybox-slide--"+(c.pos>r.pos?"next":"previous")),n.fancybox.animate(c.$slide,u,e,function(){c.$slide.removeClass(u).removeClass("fancybox-slide--next fancybox-slide--previous")},!1)),r.isLoaded?h.revealContent(r):h.loadSlide(r),h.preload("image")}},createSlide:function(t){var e,o,a=this;return o=t%a.group.length,o=o<0?a.group.length+o:o,!a.slides[t]&&a.group[o]&&(e=n('
    ').appendTo(a.$refs.stage),a.slides[t]=n.extend(!0,{},a.group[o],{pos:t,$slide:e,isLoaded:!1}),a.updateSlide(a.slides[t])),a.slides[t]},scaleToActual:function(t,e,a){var i,s,r,c,l,d=this,u=d.current,f=u.$content,p=n.fancybox.getTranslate(u.$slide).width,h=n.fancybox.getTranslate(u.$slide).height,g=u.width,b=u.height;d.isAnimating||d.isMoved()||!f||"image"!=u.type||!u.isLoaded||u.hasError||(d.isAnimating=!0,n.fancybox.stop(f),t=t===o?.5*p:t,e=e===o?.5*h:e,i=n.fancybox.getTranslate(f),i.top-=n.fancybox.getTranslate(u.$slide).top,i.left-=n.fancybox.getTranslate(u.$slide).left,c=g/i.width,l=b/i.height,s=.5*p-.5*g,r=.5*h-.5*b,g>p&&(s=i.left*c-(t*c-t),s>0&&(s=0),sh&&(r=i.top*l-(e*l-e),r>0&&(r=0),re-.5&&(l=e),d>o-.5&&(d=o),"image"===t.type?(u.top=Math.floor(.5*(o-d))+parseFloat(c.css("paddingTop")),u.left=Math.floor(.5*(e-l))+parseFloat(c.css("paddingLeft"))):"video"===t.contentType&&(i=t.opts.width&&t.opts.height?l/d:t.opts.ratio||16/9,d>l/i?d=l/i:l>d*i&&(l=d*i)),u.width=l,u.height=d,u)},update:function(t){var e=this;n.each(e.slides,function(n,o){e.updateSlide(o,t)})},updateSlide:function(t,e){var o=this,a=t&&t.$content,i=t.width||t.opts.width,s=t.height||t.opts.height,r=t.$slide;o.adjustCaption(t),a&&(i||s||"video"===t.contentType)&&!t.hasError&&(n.fancybox.stop(a),n.fancybox.setTranslate(a,o.getFitPos(t)),t.pos===o.currPos&&(o.isAnimating=!1,o.updateCursor())),o.adjustLayout(t),r.length&&(r.trigger("refresh"),t.pos===o.currPos&&o.$refs.toolbar.add(o.$refs.navigation.find(".fancybox-button--arrow_right")).toggleClass("compensate-for-scrollbar",r.get(0).scrollHeight>r.get(0).clientHeight)),o.trigger("onUpdate",t,e)},centerSlide:function(t){var e=this,a=e.current,i=a.$slide;!e.isClosing&&a&&(i.siblings().css({transform:"",opacity:""}),i.parent().children().removeClass("fancybox-slide--previous fancybox-slide--next"),n.fancybox.animate(i,{top:0,left:0,opacity:1},t===o?0:t,function(){i.css({transform:"",opacity:""}),a.isComplete||e.complete()},!1))},isMoved:function(t){var e,o,a=t||this.current;return!!a&&(o=n.fancybox.getTranslate(this.$refs.stage),e=n.fancybox.getTranslate(a.$slide),!a.$slide.hasClass("fancybox-animated")&&(Math.abs(e.top-o.top)>.5||Math.abs(e.left-o.left)>.5))},updateCursor:function(t,e){var o,a,i=this,s=i.current,r=i.$refs.container;s&&!i.isClosing&&i.Guestures&&(r.removeClass("fancybox-is-zoomable fancybox-can-zoomIn fancybox-can-zoomOut fancybox-can-swipe fancybox-can-pan"),o=i.canPan(t,e),a=!!o||i.isZoomable(),r.toggleClass("fancybox-is-zoomable",a),n("[data-fancybox-zoom]").prop("disabled",!a),o?r.addClass("fancybox-can-pan"):a&&("zoom"===s.opts.clickContent||n.isFunction(s.opts.clickContent)&&"zoom"==s.opts.clickContent(s))?r.addClass("fancybox-can-zoomIn"):s.opts.touch&&(s.opts.touch.vertical||i.group.length>1)&&"video"!==s.contentType&&r.addClass("fancybox-can-swipe"))},isZoomable:function(){var t,e=this,n=e.current;if(n&&!e.isClosing&&"image"===n.type&&!n.hasError){if(!n.isLoaded)return!0;if(t=e.getFitPos(n),t&&(n.width>t.width||n.height>t.height))return!0}return!1},isScaledDown:function(t,e){var a=this,i=!1,s=a.current,r=s.$content;return t!==o&&e!==o?i=t1.5||Math.abs(s.height-r.height)>1.5)),r},loadSlide:function(t){var e,o,a,i=this;if(!t.isLoading&&!t.isLoaded){if(t.isLoading=!0,i.trigger("beforeLoad",t)===!1)return t.isLoading=!1,!1;switch(e=t.type,o=t.$slide,o.off("refresh").trigger("onReset").addClass(t.opts.slideClass),e){case"image":i.setImage(t);break;case"iframe":i.setIframe(t);break;case"html":i.setContent(t,t.src||t.content);break;case"video":i.setContent(t,t.opts.video.tpl.replace(/\{\{src\}\}/gi,t.src).replace("{{format}}",t.opts.videoFormat||t.opts.video.format||"").replace("{{poster}}",t.thumb||""));break;case"inline":n(t.src).length?i.setContent(t,n(t.src)):i.setError(t);break;case"ajax":i.showLoading(t),a=n.ajax(n.extend({},t.opts.ajax.settings,{url:t.src,success:function(e,n){"success"===n&&i.setContent(t,e)},error:function(e,n){e&&"abort"!==n&&i.setError(t)}})),o.one("onReset",function(){a.abort()});break;default:i.setError(t)}return!0}},setImage:function(t){var o,a=this;setTimeout(function(){var e=t.$image;a.isClosing||!t.isLoading||e&&e.length&&e[0].complete||t.hasError||a.showLoading(t)},50),a.checkSrcset(t),t.$content=n('
    ').addClass("fancybox-is-hidden").appendTo(t.$slide.addClass("fancybox-slide--image")),t.opts.preload!==!1&&t.opts.width&&t.opts.height&&t.thumb&&(t.width=t.opts.width,t.height=t.opts.height,o=e.createElement("img"),o.onerror=function(){n(this).remove(),t.$ghost=null},o.onload=function(){a.afterLoad(t)},t.$ghost=n(o).addClass("fancybox-image").appendTo(t.$content).attr("src",t.thumb)),a.setBigImage(t)},checkSrcset:function(e){var n,o,a,i,s=e.opts.srcset||e.opts.image.srcset;if(s){a=t.devicePixelRatio||1,i=t.innerWidth*a,o=s.split(",").map(function(t){var e={};return t.trim().split(/\s+/).forEach(function(t,n){var o=parseInt(t.substring(0,t.length-1),10);return 0===n?e.url=t:void(o&&(e.value=o,e.postfix=t[t.length-1]))}),e}),o.sort(function(t,e){return t.value-e.value});for(var r=0;r=i||"x"===c.postfix&&c.value>=a){n=c;break}}!n&&o.length&&(n=o[o.length-1]),n&&(e.src=n.url,e.width&&e.height&&"w"==n.postfix&&(e.height=e.width/e.height*n.value,e.width=n.value),e.opts.srcset=s)}},setBigImage:function(t){var o=this,a=e.createElement("img"),i=n(a);t.$image=i.one("error",function(){o.setError(t)}).one("load",function(){var e;t.$ghost||(o.resolveImageSlideSize(t,this.naturalWidth,this.naturalHeight),o.afterLoad(t)),o.isClosing||(t.opts.srcset&&(e=t.opts.sizes,e&&"auto"!==e||(e=(t.width/t.height>1&&s.width()/s.height()>1?"100":Math.round(t.width/t.height*100))+"vw"),i.attr("sizes",e).attr("srcset",t.opts.srcset)),t.$ghost&&setTimeout(function(){t.$ghost&&!o.isClosing&&t.$ghost.hide()},Math.min(300,Math.max(1e3,t.height/1600))),o.hideLoading(t))}).addClass("fancybox-image").attr("src",t.src).appendTo(t.$content),(a.complete||"complete"==a.readyState)&&i.naturalWidth&&i.naturalHeight?i.trigger("load"):a.error&&i.trigger("error")},resolveImageSlideSize:function(t,e,n){var o=parseInt(t.opts.width,10),a=parseInt(t.opts.height,10);t.width=e,t.height=n,o>0&&(t.width=o,t.height=Math.floor(o*n/e)),a>0&&(t.width=Math.floor(a*e/n),t.height=a)},setIframe:function(t){var e,a=this,i=t.opts.iframe,s=t.$slide;n.fancybox.isMobile&&(i.css.overflow="scroll"),t.$content=n('
    ').css(i.css).appendTo(s),s.addClass("fancybox-slide--"+t.contentType),t.$iframe=e=n(i.tpl.replace(/\{rnd\}/g,(new Date).getTime())).attr(i.attr).appendTo(t.$content),i.preload?(a.showLoading(t),e.on("load.fb error.fb",function(e){this.isReady=1,t.$slide.trigger("refresh"),a.afterLoad(t)}),s.on("refresh.fb",function(){var n,a,r=t.$content,c=i.css.width,l=i.css.height;if(1===e[0].isReady){try{n=e.contents(),a=n.find("body")}catch(t){}a&&a.length&&a.children().length&&(s.css("overflow","visible"),r.css({width:"100%","max-width":"100%",height:"9999px"}),c===o&&(c=Math.ceil(Math.max(a[0].clientWidth,a.outerWidth(!0)))),r.css("width",c?c:"").css("max-width",""),l===o&&(l=Math.ceil(Math.max(a[0].clientHeight,a.outerHeight(!0)))),r.css("height",l?l:""),s.css("overflow","auto")),r.removeClass("fancybox-is-hidden")}})):a.afterLoad(t),e.attr("src",t.src),s.one("onReset",function(){try{n(this).find("iframe").hide().unbind().attr("src","//about:blank")}catch(t){}n(this).off("refresh.fb").empty(),t.isLoaded=!1,t.isRevealed=!1})},setContent:function(t,e){var o=this;o.isClosing||(o.hideLoading(t),t.$content&&n.fancybox.stop(t.$content),t.$slide.empty(),l(e)&&e.parent().length?((e.hasClass("fancybox-content")||e.parent().hasClass("fancybox-content"))&&e.parents(".fancybox-slide").trigger("onReset"),t.$placeholder=n("
    ").hide().insertAfter(e),e.css("display","inline-block")):t.hasError||("string"===n.type(e)&&(e=n("
    ").append(n.trim(e)).contents()),t.opts.filter&&(e=n("
    ").html(e).find(t.opts.filter))),t.$slide.one("onReset",function(){n(this).find("video,audio").trigger("pause"),t.$placeholder&&(t.$placeholder.after(e.removeClass("fancybox-content").hide()).remove(),t.$placeholder=null),t.$smallBtn&&(t.$smallBtn.remove(),t.$smallBtn=null),t.hasError||(n(this).empty(),t.isLoaded=!1,t.isRevealed=!1)}),n(e).appendTo(t.$slide),n(e).is("video,audio")&&(n(e).addClass("fancybox-video"),n(e).wrap("
    "),t.contentType="video",t.opts.width=t.opts.width||n(e).attr("width"),t.opts.height=t.opts.height||n(e).attr("height")),t.$content=t.$slide.children().filter("div,form,main,video,audio,article,.fancybox-content").first(),t.$content.siblings().hide(),t.$content.length||(t.$content=t.$slide.wrapInner("
    ").children().first()),t.$content.addClass("fancybox-content"),t.$slide.addClass("fancybox-slide--"+t.contentType),o.afterLoad(t))},setError:function(t){t.hasError=!0,t.$slide.trigger("onReset").removeClass("fancybox-slide--"+t.contentType).addClass("fancybox-slide--error"),t.contentType="html",this.setContent(t,this.translate(t,t.opts.errorTpl)),t.pos===this.currPos&&(this.isAnimating=!1)},showLoading:function(t){var e=this;t=t||e.current,t&&!t.$spinner&&(t.$spinner=n(e.translate(e,e.opts.spinnerTpl)).appendTo(t.$slide).hide().fadeIn("fast"))},hideLoading:function(t){var e=this;t=t||e.current,t&&t.$spinner&&(t.$spinner.stop().remove(),delete t.$spinner)},afterLoad:function(t){var e=this;e.isClosing||(t.isLoading=!1,t.isLoaded=!0,e.trigger("afterLoad",t),e.hideLoading(t),!t.opts.smallBtn||t.$smallBtn&&t.$smallBtn.length||(t.$smallBtn=n(e.translate(t,t.opts.btnTpl.smallBtn)).appendTo(t.$content)),t.opts.protect&&t.$content&&!t.hasError&&(t.$content.on("contextmenu.fb",function(t){return 2==t.button&&t.preventDefault(),!0}),"image"===t.type&&n('
    ').appendTo(t.$content)),e.adjustCaption(t),e.adjustLayout(t),t.pos===e.currPos&&e.updateCursor(),e.revealContent(t))},adjustCaption:function(t){var e=this,n=t||e.current,o=n.opts.caption,a=e.$refs.caption,i=!1;n.opts.preventCaptionOverlap&&o&&o.length&&(n.pos!==e.currPos?(a=a.clone().empty().appendTo(a.parent()),a.html(o),i=a.outerHeight(!0),a.empty().remove()):e.$caption&&(i=e.$caption.outerHeight(!0)),n.$slide.css("padding-bottom",i||""))},adjustLayout:function(t){var e,n,o,a,i=this,s=t||i.current;s.isLoaded&&s.opts.disableLayoutFix!==!0&&(s.$content.css("margin-bottom",""),s.$content.outerHeight()>s.$slide.height()+.5&&(o=s.$slide[0].style["padding-bottom"],a=s.$slide.css("padding-bottom"),parseFloat(a)>0&&(e=s.$slide[0].scrollHeight,s.$slide.css("padding-bottom",0),Math.abs(e-s.$slide[0].scrollHeight)<1&&(n=a),s.$slide.css("padding-bottom",o))),s.$content.css("margin-bottom",n))},revealContent:function(t){var e,a,i,s,r=this,c=t.$slide,l=!1,d=!1,u=r.isMoved(t),f=t.isRevealed;return t.isRevealed=!0,e=t.opts[r.firstRun?"animationEffect":"transitionEffect"],i=t.opts[r.firstRun?"animationDuration":"transitionDuration"],i=parseInt(t.forcedDuration===o?i:t.forcedDuration,10),!u&&t.pos===r.currPos&&i||(e=!1),"zoom"===e&&(t.pos===r.currPos&&i&&"image"===t.type&&!t.hasError&&(d=r.getThumbPos(t))?l=r.getFitPos(t):e="fade"),"zoom"===e?(r.isAnimating=!0,l.scaleX=l.width/d.width,l.scaleY=l.height/d.height,s=t.opts.zoomOpacity,"auto"==s&&(s=Math.abs(t.width/t.height-d.width/d.height)>.1),s&&(d.opacity=.1,l.opacity=1),n.fancybox.setTranslate(t.$content.removeClass("fancybox-is-hidden"),d),p(t.$content),void n.fancybox.animate(t.$content,l,i,function(){r.isAnimating=!1,r.complete()})):(r.updateSlide(t),e?(n.fancybox.stop(c),a="fancybox-slide--"+(t.pos>=r.prevPos?"next":"previous")+" fancybox-animated fancybox-fx-"+e,c.addClass(a).removeClass("fancybox-slide--current"),t.$content.removeClass("fancybox-is-hidden"),p(c),"image"!==t.type&&t.$content.hide().show(0),void n.fancybox.animate(c,"fancybox-slide--current",i,function(){c.removeClass(a).css({transform:"",opacity:""}),t.pos===r.currPos&&r.complete()},!0)):(t.$content.removeClass("fancybox-is-hidden"),f||!u||"image"!==t.type||t.hasError||t.$content.hide().fadeIn("fast"),void(t.pos===r.currPos&&r.complete())))},getThumbPos:function(t){var e,o,a,i,s,r=!1,c=t.$thumb;return!(!c||!g(c[0]))&&(e=n.fancybox.getTranslate(c),o=parseFloat(c.css("border-top-width")||0),a=parseFloat(c.css("border-right-width")||0),i=parseFloat(c.css("border-bottom-width")||0),s=parseFloat(c.css("border-left-width")||0),r={top:e.top+o,left:e.left+s,width:e.width-a-s,height:e.height-o-i,scaleX:1,scaleY:1},e.width>0&&e.height>0&&r)},complete:function(){var t,e=this,o=e.current,a={};!e.isMoved()&&o.isLoaded&&(o.isComplete||(o.isComplete=!0,o.$slide.siblings().trigger("onReset"),e.preload("inline"),p(o.$slide),o.$slide.addClass("fancybox-slide--complete"),n.each(e.slides,function(t,o){o.pos>=e.currPos-1&&o.pos<=e.currPos+1?a[o.pos]=o:o&&(n.fancybox.stop(o.$slide),o.$slide.off().remove())}),e.slides=a),e.isAnimating=!1,e.updateCursor(),e.trigger("afterShow"),o.opts.video.autoStart&&o.$slide.find("video,audio").filter(":visible:first").trigger("play").one("ended",function(){this.webkitExitFullscreen&&this.webkitExitFullscreen(),e.next()}),o.opts.autoFocus&&"html"===o.contentType&&(t=o.$content.find("input[autofocus]:enabled:visible:first"),t.length?t.trigger("focus"):e.focus(null,!0)),o.$slide.scrollTop(0).scrollLeft(0))},preload:function(t){var e,n,o=this;o.group.length<2||(n=o.slides[o.currPos+1],e=o.slides[o.currPos-1],e&&e.type===t&&o.loadSlide(e),n&&n.type===t&&o.loadSlide(n))},focus:function(t,o){var a,i,s=this,r=["a[href]","area[href]",'input:not([disabled]):not([type="hidden"]):not([aria-hidden])',"select:not([disabled]):not([aria-hidden])","textarea:not([disabled]):not([aria-hidden])","button:not([disabled]):not([aria-hidden])","iframe","object","embed","[contenteditable]",'[tabindex]:not([tabindex^="-"])'].join(",");s.isClosing||(a=!t&&s.current&&s.current.isComplete?s.current.$slide.find("*:visible"+(o?":not(.fancybox-close-small)":"")):s.$refs.container.find("*:visible"),a=a.filter(r).filter(function(){return"hidden"!==n(this).css("visibility")&&!n(this).hasClass("disabled")}),a.length?(i=a.index(e.activeElement),t&&t.shiftKey?(i<0||0==i)&&(t.preventDefault(),a.eq(a.length-1).trigger("focus")):(i<0||i==a.length-1)&&(t&&t.preventDefault(),a.eq(0).trigger("focus"))):s.$refs.container.trigger("focus"))},activate:function(){var t=this;n(".fancybox-container").each(function(){var e=n(this).data("FancyBox");e&&e.id!==t.id&&!e.isClosing&&(e.trigger("onDeactivate"),e.removeEvents(),e.isVisible=!1)}),t.isVisible=!0,(t.current||t.isIdle)&&(t.update(),t.updateControls()),t.trigger("onActivate"),t.addEvents()},close:function(t,e){var o,a,i,s,r,c,l,u=this,f=u.current,h=function(){u.cleanUp(t)};return!u.isClosing&&(u.isClosing=!0,u.trigger("beforeClose",t)===!1?(u.isClosing=!1,d(function(){u.update()}),!1):(u.removeEvents(),i=f.$content,o=f.opts.animationEffect,a=n.isNumeric(e)?e:o?f.opts.animationDuration:0,f.$slide.removeClass("fancybox-slide--complete fancybox-slide--next fancybox-slide--previous fancybox-animated"),t!==!0?n.fancybox.stop(f.$slide):o=!1,f.$slide.siblings().trigger("onReset").remove(),a&&u.$refs.container.removeClass("fancybox-is-open").addClass("fancybox-is-closing").css("transition-duration",a+"ms"),u.hideLoading(f),u.hideControls(!0),u.updateCursor(),"zoom"!==o||i&&a&&"image"===f.type&&!u.isMoved()&&!f.hasError&&(l=u.getThumbPos(f))||(o="fade"),"zoom"===o?(n.fancybox.stop(i),s=n.fancybox.getTranslate(i),c={top:s.top,left:s.left,scaleX:s.width/l.width,scaleY:s.height/l.height,width:l.width,height:l.height},r=f.opts.zoomOpacity,"auto"==r&&(r=Math.abs(f.width/f.height-l.width/l.height)>.1),r&&(l.opacity=0),n.fancybox.setTranslate(i,c),p(i),n.fancybox.animate(i,l,a,h),!0):(o&&a?n.fancybox.animate(f.$slide.addClass("fancybox-slide--previous").removeClass("fancybox-slide--current"),"fancybox-animated fancybox-fx-"+o,a,h):t===!0?setTimeout(h,a):h(), +!0)))},cleanUp:function(e){var o,a,i,s=this,r=s.current.opts.$orig;s.current.$slide.trigger("onReset"),s.$refs.container.empty().remove(),s.trigger("afterClose",e),s.current.opts.backFocus&&(r&&r.length&&r.is(":visible")||(r=s.$trigger),r&&r.length&&(a=t.scrollX,i=t.scrollY,r.trigger("focus"),n("html, body").scrollTop(i).scrollLeft(a))),s.current=null,o=n.fancybox.getInstance(),o?o.activate():(n("body").removeClass("fancybox-active compensate-for-scrollbar"),n("#fancybox-style-noscroll").remove())},trigger:function(t,e){var o,a=Array.prototype.slice.call(arguments,1),i=this,s=e&&e.opts?e:i.current;return s?a.unshift(s):s=i,a.unshift(i),n.isFunction(s.opts[t])&&(o=s.opts[t].apply(s,a)),o===!1?o:void("afterClose"!==t&&i.$refs?i.$refs.container.trigger(t+".fb",a):r.trigger(t+".fb",a))},updateControls:function(){var t=this,o=t.current,a=o.index,i=t.$refs.container,s=t.$refs.caption,r=o.opts.caption;o.$slide.trigger("refresh"),t.$caption=r&&r.length?s.html(r):null,t.hasHiddenControls||t.isIdle||t.showControls(),i.find("[data-fancybox-count]").html(t.group.length),i.find("[data-fancybox-index]").html(a+1),i.find("[data-fancybox-prev]").prop("disabled",!o.opts.loop&&a<=0),i.find("[data-fancybox-next]").prop("disabled",!o.opts.loop&&a>=t.group.length-1),"image"===o.type?i.find("[data-fancybox-zoom]").show().end().find("[data-fancybox-download]").attr("href",o.opts.image.src||o.src).show():o.opts.toolbar&&i.find("[data-fancybox-download],[data-fancybox-zoom]").hide(),n(e.activeElement).is(":hidden,[disabled]")&&t.$refs.container.trigger("focus")},hideControls:function(t){var e=this,n=["infobar","toolbar","nav"];!t&&e.current.opts.preventCaptionOverlap||n.push("caption"),this.$refs.container.removeClass(n.map(function(t){return"fancybox-show-"+t}).join(" ")),this.hasHiddenControls=!0},showControls:function(){var t=this,e=t.current?t.current.opts:t.opts,n=t.$refs.container;t.hasHiddenControls=!1,t.idleSecondsCounter=0,n.toggleClass("fancybox-show-toolbar",!(!e.toolbar||!e.buttons)).toggleClass("fancybox-show-infobar",!!(e.infobar&&t.group.length>1)).toggleClass("fancybox-show-caption",!!t.$caption).toggleClass("fancybox-show-nav",!!(e.arrows&&t.group.length>1)).toggleClass("fancybox-is-modal",!!e.modal)},toggleControls:function(){this.hasHiddenControls?this.showControls():this.hideControls()}}),n.fancybox={version:"3.5.2",defaults:i,getInstance:function(t){var e=n('.fancybox-container:not(".fancybox-is-closing"):last').data("FancyBox"),o=Array.prototype.slice.call(arguments,1);return e instanceof b&&("string"===n.type(t)?e[t].apply(e,o):"function"===n.type(t)&&t.apply(e,o),e)},open:function(t,e,n){return new b(t,e,n)},close:function(t){var e=this.getInstance();e&&(e.close(),t===!0&&this.close(t))},destroy:function(){this.close(!0),r.add("body").off("click.fb-start","**")},isMobile:/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent),use3d:function(){var n=e.createElement("div");return t.getComputedStyle&&t.getComputedStyle(n)&&t.getComputedStyle(n).getPropertyValue("transform")&&!(e.documentMode&&e.documentMode<11)}(),getTranslate:function(t){var e;return!(!t||!t.length)&&(e=t[0].getBoundingClientRect(),{top:e.top||0,left:e.left||0,width:e.width,height:e.height,opacity:parseFloat(t.css("opacity"))})},setTranslate:function(t,e){var n="",a={};if(t&&e)return e.left===o&&e.top===o||(n=(e.left===o?t.position().left:e.left)+"px, "+(e.top===o?t.position().top:e.top)+"px",n=this.use3d?"translate3d("+n+", 0px)":"translate("+n+")"),e.scaleX!==o&&e.scaleY!==o?n+=" scale("+e.scaleX+", "+e.scaleY+")":e.scaleX!==o&&(n+=" scaleX("+e.scaleX+")"),n.length&&(a.transform=n),e.opacity!==o&&(a.opacity=e.opacity),e.width!==o&&(a.width=e.width),e.height!==o&&(a.height=e.height),t.css(a)},animate:function(t,e,a,i,s){var r,c=this;n.isFunction(a)&&(i=a,a=null),c.stop(t),r=c.getTranslate(t),t.on(f,function(l){(!l||!l.originalEvent||t.is(l.originalEvent.target)&&"z-index"!=l.originalEvent.propertyName)&&(c.stop(t),n.isNumeric(a)&&t.css("transition-duration",""),n.isPlainObject(e)?e.scaleX!==o&&e.scaleY!==o&&c.setTranslate(t,{top:e.top,left:e.left,width:r.width*e.scaleX,height:r.height*e.scaleY,scaleX:1,scaleY:1}):s!==!0&&t.removeClass(e),n.isFunction(i)&&i(l))}),n.isNumeric(a)&&t.css("transition-duration",a+"ms"),n.isPlainObject(e)?(e.scaleX!==o&&e.scaleY!==o&&(delete e.width,delete e.height,t.parent().hasClass("fancybox-slide--image")&&t.parent().addClass("fancybox-is-scaling")),n.fancybox.setTranslate(t,e)):t.addClass(e),t.data("timer",setTimeout(function(){t.trigger(f)},a+33))},stop:function(t,e){t&&t.length&&(clearTimeout(t.data("timer")),e&&t.trigger(f),t.off(f).css("transition-duration",""),t.parent().removeClass("fancybox-is-scaling"))}},n.fn.fancybox=function(t){var e;return t=t||{},e=t.selector||!1,e?n("body").off("click.fb-start",e).on("click.fb-start",e,{options:t},a):this.off("click.fb-start").on("click.fb-start",{items:this,options:t},a),this},r.on("click.fb-start","[data-fancybox]",a),r.on("click.fb-start","[data-fancybox-trigger]",function(t){n('[data-fancybox="'+n(this).attr("data-fancybox-trigger")+'"]').eq(n(this).attr("data-fancybox-index")||0).trigger("click.fb-start",{$trigger:n(this)})}),function(){var t=".fancybox-button",e="fancybox-focus",o=null;r.on("mousedown mouseup focus blur",t,function(a){switch(a.type){case"mousedown":o=n(this);break;case"mouseup":o=null;break;case"focusin":n(t).removeClass(e),n(this).is(o)||n(this).is("[disabled]")||n(this).addClass(e);break;case"focusout":n(t).removeClass(e)}})}()}}(window,document,jQuery),function(t){"use strict";var e={youtube:{matcher:/(youtube\.com|youtu\.be|youtube\-nocookie\.com)\/(watch\?(.*&)?v=|v\/|u\/|embed\/?)?(videoseries\?list=(.*)|[\w-]{11}|\?listType=(.*)&list=(.*))(.*)/i,params:{autoplay:1,autohide:1,fs:1,rel:0,hd:1,wmode:"transparent",enablejsapi:1,html5:1},paramPlace:8,type:"iframe",url:"//www.youtube-nocookie.com/embed/$4",thumb:"//img.youtube.com/vi/$4/hqdefault.jpg"},vimeo:{matcher:/^.+vimeo.com\/(.*\/)?([\d]+)(.*)?/,params:{autoplay:1,hd:1,show_title:1,show_byline:1,show_portrait:0,fullscreen:1},paramPlace:3,type:"iframe",url:"//player.vimeo.com/video/$2"},instagram:{matcher:/(instagr\.am|instagram\.com)\/p\/([a-zA-Z0-9_\-]+)\/?/i,type:"image",url:"//$1/p/$2/media/?size=l"},gmap_place:{matcher:/(maps\.)?google\.([a-z]{2,3}(\.[a-z]{2})?)\/(((maps\/(place\/(.*)\/)?\@(.*),(\d+.?\d+?)z))|(\?ll=))(.*)?/i,type:"iframe",url:function(t){return"//maps.google."+t[2]+"/?ll="+(t[9]?t[9]+"&z="+Math.floor(t[10])+(t[12]?t[12].replace(/^\//,"&"):""):t[12]+"").replace(/\?/,"&")+"&output="+(t[12]&&t[12].indexOf("layer=c")>0?"svembed":"embed")}},gmap_search:{matcher:/(maps\.)?google\.([a-z]{2,3}(\.[a-z]{2})?)\/(maps\/search\/)(.*)/i,type:"iframe",url:function(t){return"//maps.google."+t[2]+"/maps?q="+t[5].replace("query=","q=").replace("api=1","")+"&output=embed"}}},n=function(e,n,o){if(e)return o=o||"","object"===t.type(o)&&(o=t.param(o,!0)),t.each(n,function(t,n){e=e.replace("$"+t,n||"")}),o.length&&(e+=(e.indexOf("?")>0?"&":"?")+o),e};t(document).on("objectNeedsType.fb",function(o,a,i){var s,r,c,l,d,u,f,p=i.src||"",h=!1;s=t.extend(!0,{},e,i.opts.media),t.each(s,function(e,o){if(c=p.match(o.matcher)){if(h=o.type,f=e,u={},o.paramPlace&&c[o.paramPlace]){d=c[o.paramPlace],"?"==d[0]&&(d=d.substring(1)),d=d.split("&");for(var a=0;a1&&("youtube"===n.contentSource||"vimeo"===n.contentSource)&&o.load(n.contentSource)}})}(jQuery),function(t,e,n){"use strict";var o=function(){return t.requestAnimationFrame||t.webkitRequestAnimationFrame||t.mozRequestAnimationFrame||t.oRequestAnimationFrame||function(e){return t.setTimeout(e,1e3/60)}}(),a=function(){return t.cancelAnimationFrame||t.webkitCancelAnimationFrame||t.mozCancelAnimationFrame||t.oCancelAnimationFrame||function(e){t.clearTimeout(e)}}(),i=function(e){var n=[];e=e.originalEvent||e||t.e,e=e.touches&&e.touches.length?e.touches:e.changedTouches&&e.changedTouches.length?e.changedTouches:[e];for(var o in e)e[o].pageX?n.push({x:e[o].pageX,y:e[o].pageY}):e[o].clientX&&n.push({x:e[o].clientX,y:e[o].clientY});return n},s=function(t,e,n){return e&&t?"x"===n?t.x-e.x:"y"===n?t.y-e.y:Math.sqrt(Math.pow(t.x-e.x,2)+Math.pow(t.y-e.y,2)):0},r=function(t){if(t.is('a,area,button,[role="button"],input,label,select,summary,textarea,video,audio,iframe')||n.isFunction(t.get(0).onclick)||t.data("selectable"))return!0;for(var e=0,o=t[0].attributes,a=o.length;ee.clientHeight,i=("scroll"===o||"auto"===o)&&e.scrollWidth>e.clientWidth;return a||i},l=function(t){for(var e=!1;;){if(e=c(t.get(0)))break;if(t=t.parent(),!t.length||t.hasClass("fancybox-stage")||t.is("body"))break}return e},d=function(t){var e=this;e.instance=t,e.$bg=t.$refs.bg,e.$stage=t.$refs.stage,e.$container=t.$refs.container,e.destroy(),e.$container.on("touchstart.fb.touch mousedown.fb.touch",n.proxy(e,"ontouchstart"))};d.prototype.destroy=function(){var t=this;t.$container.off(".fb.touch"),n(e).off(".fb.touch"),t.requestId&&(a(t.requestId),t.requestId=null),t.tapped&&(clearTimeout(t.tapped),t.tapped=null)},d.prototype.ontouchstart=function(o){var a=this,c=n(o.target),d=a.instance,u=d.current,f=u.$slide,p=u.$content,h="touchstart"==o.type;if(h&&a.$container.off("mousedown.fb.touch"),(!o.originalEvent||2!=o.originalEvent.button)&&f.length&&c.length&&!r(c)&&!r(c.parent())&&(c.is("img")||!(o.originalEvent.clientX>c[0].clientWidth+c.offset().left))){if(!u||d.isAnimating||u.$slide.hasClass("fancybox-animated"))return o.stopPropagation(),void o.preventDefault();a.realPoints=a.startPoints=i(o),a.startPoints.length&&(u.touch&&o.stopPropagation(),a.startEvent=o,a.canTap=!0,a.$target=c,a.$content=p,a.opts=u.opts.touch,a.isPanning=!1,a.isSwiping=!1,a.isZooming=!1,a.isScrolling=!1,a.canPan=d.canPan(),a.startTime=(new Date).getTime(),a.distanceX=a.distanceY=a.distance=0,a.canvasWidth=Math.round(f[0].clientWidth),a.canvasHeight=Math.round(f[0].clientHeight),a.contentLastPos=null,a.contentStartPos=n.fancybox.getTranslate(a.$content)||{top:0,left:0},a.sliderStartPos=n.fancybox.getTranslate(f),a.stagePos=n.fancybox.getTranslate(d.$refs.stage),a.sliderStartPos.top-=a.stagePos.top,a.sliderStartPos.left-=a.stagePos.left,a.contentStartPos.top-=a.stagePos.top,a.contentStartPos.left-=a.stagePos.left,n(e).off(".fb.touch").on(h?"touchend.fb.touch touchcancel.fb.touch":"mouseup.fb.touch mouseleave.fb.touch",n.proxy(a,"ontouchend")).on(h?"touchmove.fb.touch":"mousemove.fb.touch",n.proxy(a,"ontouchmove")),n.fancybox.isMobile&&e.addEventListener("scroll",a.onscroll,!0),((a.opts||a.canPan)&&(c.is(a.$stage)||a.$stage.find(c).length)||(c.is(".fancybox-image")&&o.preventDefault(),n.fancybox.isMobile&&c.hasClass("fancybox-caption")))&&(a.isScrollable=l(c)||l(c.parent()),n.fancybox.isMobile&&a.isScrollable||o.preventDefault(),(1===a.startPoints.length||u.hasError)&&(a.canPan?(n.fancybox.stop(a.$content),a.isPanning=!0):a.isSwiping=!0,a.$container.addClass("fancybox-is-grabbing")),2===a.startPoints.length&&"image"===u.type&&(u.isLoaded||u.$ghost)&&(a.canTap=!1,a.isSwiping=!1,a.isPanning=!1,a.isZooming=!0,n.fancybox.stop(a.$content),a.centerPointStartX=.5*(a.startPoints[0].x+a.startPoints[1].x)-n(t).scrollLeft(),a.centerPointStartY=.5*(a.startPoints[0].y+a.startPoints[1].y)-n(t).scrollTop(),a.percentageOfImageAtPinchPointX=(a.centerPointStartX-a.contentStartPos.left)/a.contentStartPos.width,a.percentageOfImageAtPinchPointY=(a.centerPointStartY-a.contentStartPos.top)/a.contentStartPos.height,a.startDistanceBetweenFingers=s(a.startPoints[0],a.startPoints[1]))))}},d.prototype.onscroll=function(t){var n=this;n.isScrolling=!0,e.removeEventListener("scroll",n.onscroll,!0)},d.prototype.ontouchmove=function(t){var e=this;return void 0!==t.originalEvent.buttons&&0===t.originalEvent.buttons?void e.ontouchend(t):e.isScrolling?void(e.canTap=!1):(e.newPoints=i(t),void((e.opts||e.canPan)&&e.newPoints.length&&e.newPoints.length&&(e.isSwiping&&e.isSwiping===!0||t.preventDefault(),e.distanceX=s(e.newPoints[0],e.startPoints[0],"x"),e.distanceY=s(e.newPoints[0],e.startPoints[0],"y"),e.distance=s(e.newPoints[0],e.startPoints[0]),e.distance>0&&(e.isSwiping?e.onSwipe(t):e.isPanning?e.onPan():e.isZooming&&e.onZoom()))))},d.prototype.onSwipe=function(e){var i,s=this,r=s.instance,c=s.isSwiping,l=s.sliderStartPos.left||0;if(c!==!0)"x"==c&&(s.distanceX>0&&(s.instance.group.length<2||0===s.instance.current.index&&!s.instance.current.opts.loop)?l+=Math.pow(s.distanceX,.8):s.distanceX<0&&(s.instance.group.length<2||s.instance.current.index===s.instance.group.length-1&&!s.instance.current.opts.loop)?l-=Math.pow(-s.distanceX,.8):l+=s.distanceX),s.sliderLastPos={top:"x"==c?0:s.sliderStartPos.top+s.distanceY,left:l},s.requestId&&(a(s.requestId),s.requestId=null),s.requestId=o(function(){s.sliderLastPos&&(n.each(s.instance.slides,function(t,e){var o=e.pos-s.instance.currPos;n.fancybox.setTranslate(e.$slide,{top:s.sliderLastPos.top,left:s.sliderLastPos.left+o*s.canvasWidth+o*e.opts.gutter})}),s.$container.addClass("fancybox-is-sliding"))});else if(Math.abs(s.distance)>10){if(s.canTap=!1,r.group.length<2&&s.opts.vertical?s.isSwiping="y":r.isDragging||s.opts.vertical===!1||"auto"===s.opts.vertical&&n(t).width()>800?s.isSwiping="x":(i=Math.abs(180*Math.atan2(s.distanceY,s.distanceX)/Math.PI),s.isSwiping=i>45&&i<135?"y":"x"),"y"===s.isSwiping&&n.fancybox.isMobile&&s.isScrollable)return void(s.isScrolling=!0);r.isDragging=s.isSwiping,s.startPoints=s.newPoints,n.each(r.slides,function(t,e){var o,a;n.fancybox.stop(e.$slide),o=n.fancybox.getTranslate(e.$slide),a=n.fancybox.getTranslate(r.$refs.stage),e.$slide.css({transform:"",opacity:"","transition-duration":""}).removeClass("fancybox-animated").removeClass(function(t,e){return(e.match(/(^|\s)fancybox-fx-\S+/g)||[]).join(" ")}),e.pos===r.current.pos&&(s.sliderStartPos.top=o.top-a.top,s.sliderStartPos.left=o.left-a.left),n.fancybox.setTranslate(e.$slide,{top:o.top-a.top,left:o.left-a.left})}),r.SlideShow&&r.SlideShow.isActive&&r.SlideShow.stop()}},d.prototype.onPan=function(){var t=this;return s(t.newPoints[0],t.realPoints[0])<(n.fancybox.isMobile?10:5)?void(t.startPoints=t.newPoints):(t.canTap=!1,t.contentLastPos=t.limitMovement(),t.requestId&&a(t.requestId),void(t.requestId=o(function(){n.fancybox.setTranslate(t.$content,t.contentLastPos)})))},d.prototype.limitMovement=function(){var t,e,n,o,a,i,s=this,r=s.canvasWidth,c=s.canvasHeight,l=s.distanceX,d=s.distanceY,u=s.contentStartPos,f=u.left,p=u.top,h=u.width,g=u.height;return a=h>r?f+l:f,i=p+d,t=Math.max(0,.5*r-.5*h),e=Math.max(0,.5*c-.5*g),n=Math.min(r-h,.5*r-.5*h),o=Math.min(c-g,.5*c-.5*g),l>0&&a>t&&(a=t-1+Math.pow(-t+f+l,.8)||0),l<0&&a0&&i>e&&(i=e-1+Math.pow(-e+p+d,.8)||0),d<0&&ii?(t=t>0?0:t,t=ts?(e=e>0?0:e,e=e1&&(o.dMs>130&&s>10||s>50),c=300;o.sliderLastPos=null,"y"==t&&!e&&Math.abs(o.distanceY)>50?(n.fancybox.animate(o.instance.current.$slide,{top:o.sliderStartPos.top+o.distanceY+150*o.velocityY,opacity:0},200),a=o.instance.close(!0,250)):r&&o.distanceX>0?a=o.instance.previous(c):r&&o.distanceX<0&&(a=o.instance.next(c)),a!==!1||"x"!=t&&"y"!=t||o.instance.centerSlide(200),o.$container.removeClass("fancybox-is-sliding")},d.prototype.endPanning=function(){var t,e,o,a=this;a.contentLastPos&&(a.opts.momentum===!1||a.dMs>350?(t=a.contentLastPos.left,e=a.contentLastPos.top):(t=a.contentLastPos.left+500*a.velocityX,e=a.contentLastPos.top+500*a.velocityY),o=a.limitPosition(t,e,a.contentStartPos.width,a.contentStartPos.height),o.width=a.contentStartPos.width,o.height=a.contentStartPos.height,n.fancybox.animate(a.$content,o,330))},d.prototype.endZooming=function(){var t,e,o,a,i=this,s=i.instance.current,r=i.newWidth,c=i.newHeight;i.contentLastPos&&(t=i.contentLastPos.left,e=i.contentLastPos.top,a={top:e,left:t,width:r,height:c,scaleX:1,scaleY:1},n.fancybox.setTranslate(i.$content,a),rs.width||c>s.height?i.instance.scaleToActual(i.centerPointStartX,i.centerPointStartY,150):(o=i.limitPosition(t,e,r,c),n.fancybox.animate(i.$content,o,150)))},d.prototype.onTap=function(e){var o,a=this,s=n(e.target),r=a.instance,c=r.current,l=e&&i(e)||a.startPoints,d=l[0]?l[0].x-n(t).scrollLeft()-a.stagePos.left:0,u=l[0]?l[0].y-n(t).scrollTop()-a.stagePos.top:0,f=function(t){var o=c.opts[t];if(n.isFunction(o)&&(o=o.apply(r,[c,e])),o)switch(o){case"close":r.close(a.startEvent);break;case"toggleControls":r.toggleControls();break;case"next":r.next();break;case"nextOrClose":r.group.length>1?r.next():r.close(a.startEvent);break;case"zoom":"image"==c.type&&(c.isLoaded||c.$ghost)&&(r.canPan()?r.scaleToFit():r.isScaledDown()?r.scaleToActual(d,u):r.group.length<2&&r.close(a.startEvent))}};if((!e.originalEvent||2!=e.originalEvent.button)&&(s.is("img")||!(d>s[0].clientWidth+s.offset().left))){if(s.is(".fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-container"))o="Outside";else if(s.is(".fancybox-slide"))o="Slide";else{if(!r.current.$content||!r.current.$content.find(s).addBack().filter(s).length)return;o="Content"}if(a.tapped){if(clearTimeout(a.tapped),a.tapped=null,Math.abs(d-a.tapX)>50||Math.abs(u-a.tapY)>50)return this;f("dblclick"+o)}else a.tapX=d,a.tapY=u,c.opts["dblclick"+o]&&c.opts["dblclick"+o]!==c.opts["click"+o]?a.tapped=setTimeout(function(){a.tapped=null,r.isAnimating||f("click"+o)},500):f("click"+o);return this}},n(e).on("onActivate.fb",function(t,e){e&&!e.Guestures&&(e.Guestures=new d(e))}).on("beforeClose.fb",function(t,e){e&&e.Guestures&&e.Guestures.destroy()})}(window,document,jQuery),function(t,e){"use strict";e.extend(!0,e.fancybox.defaults,{btnTpl:{slideShow:''},slideShow:{autoStart:!1,speed:3e3,progress:!0}});var n=function(t){this.instance=t,this.init()};e.extend(n.prototype,{timer:null,isActive:!1,$button:null,init:function(){var t=this,n=t.instance,o=n.group[n.currIndex].opts.slideShow;t.$button=n.$refs.toolbar.find("[data-fancybox-play]").on("click",function(){t.toggle()}),n.group.length<2||!o?t.$button.hide():o.progress&&(t.$progress=e('
    ').appendTo(n.$refs.inner))},set:function(t){var n=this,o=n.instance,a=o.current;a&&(t===!0||a.opts.loop||o.currIndex'},fullScreen:{autoStart:!1}}),e(t).on(n.fullscreenchange,function(){var t=o.isFullscreen(),n=e.fancybox.getInstance();n&&(n.current&&"image"===n.current.type&&n.isAnimating&&(n.current.$content.css("transition","none"),n.isAnimating=!1,n.update(!0,!0,0)),n.trigger("onFullscreenChange",t),n.$refs.container.toggleClass("fancybox-is-fullscreen",t),n.$refs.toolbar.find("[data-fancybox-fullscreen]").toggleClass("fancybox-button--fsenter",!t).toggleClass("fancybox-button--fsexit",t))})}e(t).on({"onInit.fb":function(t,e){var a;return n?void(e&&e.group[e.currIndex].opts.fullScreen?(a=e.$refs.container,a.on("click.fb-fullscreen","[data-fancybox-fullscreen]",function(t){t.stopPropagation(),t.preventDefault(),o.toggle()}),e.opts.fullScreen&&e.opts.fullScreen.autoStart===!0&&o.request(),e.FullScreen=o):e&&e.$refs.toolbar.find("[data-fancybox-fullscreen]").hide()):void e.$refs.toolbar.find("[data-fancybox-fullscreen]").remove()},"afterKeydown.fb":function(t,e,n,o,a){e&&e.FullScreen&&70===a&&(o.preventDefault(),e.FullScreen.toggle())},"beforeClose.fb":function(t,e){e&&e.FullScreen&&e.$refs.container.hasClass("fancybox-is-fullscreen")&&o.exit()}})}(document,jQuery),function(t,e){"use strict";var n="fancybox-thumbs",o=n+"-active";e.fancybox.defaults=e.extend(!0,{btnTpl:{thumbs:''},thumbs:{autoStart:!1,hideOnClose:!0,parentEl:".fancybox-container",axis:"y"}},e.fancybox.defaults);var a=function(t){this.init(t)};e.extend(a.prototype,{$button:null,$grid:null,$list:null,isVisible:!1,isActive:!1,init:function(t){var e=this,n=t.group,o=0;e.instance=t,e.opts=n[t.currIndex].opts.thumbs,t.Thumbs=e,e.$button=t.$refs.toolbar.find("[data-fancybox-thumbs]");for(var a=0,i=n.length;a1));a++);o>1&&e.opts?(e.$button.removeAttr("style").on("click",function(){e.toggle()}),e.isActive=!0):e.$button.hide()},create:function(){var t,o=this,a=o.instance,i=o.opts.parentEl,s=[];o.$grid||(o.$grid=e('
    ').appendTo(a.$refs.container.find(i).addBack().filter(i)),o.$grid.on("click","a",function(){a.jumpTo(e(this).attr("data-index"))})),o.$list||(o.$list=e('
    ').appendTo(o.$grid)),e.each(a.group,function(e,n){t=n.thumb,t||"image"!==n.type||(t=n.src),s.push('")}),o.$list[0].innerHTML=s.join(""),"x"===o.opts.axis&&o.$list.width(parseInt(o.$grid.css("padding-right"),10)+a.group.length*o.$list.children().eq(0).outerWidth(!0))},focus:function(t){var e,n,a=this,i=a.$list,s=a.$grid;a.instance.current&&(e=i.children().removeClass(o).filter('[data-index="'+a.instance.current.index+'"]').addClass(o),n=e.position(),"y"===a.opts.axis&&(n.top<0||n.top>i.height()-e.outerHeight())?i.stop().animate({scrollTop:i.scrollTop()+n.top},t):"x"===a.opts.axis&&(n.lefts.scrollLeft()+(s.width()-e.outerWidth()))&&i.parent().stop().animate({scrollLeft:n.left},t))},update:function(){var t=this;t.instance.$refs.container.toggleClass("fancybox-show-thumbs",this.isVisible),t.isVisible?(t.$grid||t.create(),t.instance.trigger("onThumbsShow"),t.focus(0)):t.$grid&&t.instance.trigger("onThumbsHide"),t.instance.update()},hide:function(){this.isVisible=!1,this.update()},show:function(){this.isVisible=!0,this.update()},toggle:function(){this.isVisible=!this.isVisible,this.update()}}),e(t).on({"onInit.fb":function(t,e){var n;e&&!e.Thumbs&&(n=new a(e),n.isActive&&n.opts.autoStart===!0&&n.show())},"beforeShow.fb":function(t,e,n,o){var a=e&&e.Thumbs;a&&a.isVisible&&a.focus(o?0:250)},"afterKeydown.fb":function(t,e,n,o,a){var i=e&&e.Thumbs;i&&i.isActive&&71===a&&(o.preventDefault(),i.toggle())},"beforeClose.fb":function(t,e){var n=e&&e.Thumbs;n&&n.isVisible&&n.opts.hideOnClose!==!1&&n.$grid.hide()}})}(document,jQuery),function(t,e){"use strict";function n(t){var e={"&":"&","<":"<",">":">",'"':""","'":"'","/":"/","`":"`","=":"="};return String(t).replace(/[&<>"'`=\/]/g,function(t){return e[t]})}e.extend(!0,e.fancybox.defaults,{btnTpl:{share:''},share:{url:function(t,e){return!t.currentHash&&"inline"!==e.type&&"html"!==e.type&&(e.origSrc||e.src)||window.location},tpl:'' +}}),e(t).on("click","[data-fancybox-share]",function(){var t,o,a=e.fancybox.getInstance(),i=a.current||null;i&&("function"===e.type(i.opts.share.url)&&(t=i.opts.share.url.apply(i,[a,i])),o=i.opts.share.tpl.replace(/\{\{media\}\}/g,"image"===i.type?encodeURIComponent(i.src):"").replace(/\{\{url\}\}/g,encodeURIComponent(t)).replace(/\{\{url_raw\}\}/g,n(t)).replace(/\{\{descr\}\}/g,a.$caption?encodeURIComponent(a.$caption.text()):""),e.fancybox.open({src:a.translate(a,o),type:"html",opts:{touch:!1,animationEffect:!1,afterLoad:function(t,e){a.$refs.container.one("beforeClose.fb",function(){t.close(null,0)}),e.$content.find(".fancybox-share__button").click(function(){return window.open(this.href,"Share","width=550, height=450"),!1})},mobile:{autoFocus:!1}}}))})}(document,jQuery),function(t,e,n){"use strict";function o(){var e=t.location.hash.substr(1),n=e.split("-"),o=n.length>1&&/^\+?\d+$/.test(n[n.length-1])?parseInt(n.pop(-1),10)||1:1,a=n.join("-");return{hash:e,index:o<1?1:o,gallery:a}}function a(t){""!==t.gallery&&n("[data-fancybox='"+n.escapeSelector(t.gallery)+"']").eq(t.index-1).focus().trigger("click.fb-start")}function i(t){var e,n;return!!t&&(e=t.current?t.current.opts:t.opts,n=e.hash||(e.$orig?e.$orig.data("fancybox")||e.$orig.data("fancybox-trigger"):""),""!==n&&n)}n.escapeSelector||(n.escapeSelector=function(t){var e=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\x80-\uFFFF\w-]/g,n=function(t,e){return e?"\0"===t?"�":t.slice(0,-1)+"\\"+t.charCodeAt(t.length-1).toString(16)+" ":"\\"+t};return(t+"").replace(e,n)}),n(function(){n.fancybox.defaults.hash!==!1&&(n(e).on({"onInit.fb":function(t,e){var n,a;e.group[e.currIndex].opts.hash!==!1&&(n=o(),a=i(e),a&&n.gallery&&a==n.gallery&&(e.currIndex=n.index-1))},"beforeShow.fb":function(n,o,a,s){var r;a&&a.opts.hash!==!1&&(r=i(o),r&&(o.currentHash=r+(o.group.length>1?"-"+(a.index+1):""),t.location.hash!=="#"+o.currentHash&&(s&&!o.origHash&&(o.origHash=t.location.hash),o.hashTimer&&clearTimeout(o.hashTimer),o.hashTimer=setTimeout(function(){"replaceState"in t.history?(t.history[s?"pushState":"replaceState"]({},e.title,t.location.pathname+t.location.search+"#"+o.currentHash),s&&(o.hasCreatedHistory=!0)):t.location.hash=o.currentHash,o.hashTimer=null},300))))},"beforeClose.fb":function(n,o,a){a.opts.hash!==!1&&(clearTimeout(o.hashTimer),o.currentHash&&o.hasCreatedHistory?t.history.back():o.currentHash&&("replaceState"in t.history?t.history.replaceState({},e.title,t.location.pathname+t.location.search+(o.origHash||"")):t.location.hash=o.origHash),o.currentHash=null)}}),n(t).on("hashchange.fb",function(){var t=o(),e=null;n.each(n(".fancybox-container").get().reverse(),function(t,o){var a=n(o).data("FancyBox");if(a&&a.currentHash)return e=a,!1}),e?e.currentHash===t.gallery+"-"+t.index||1===t.index&&e.currentHash==t.gallery||(e.currentHash=null,e.close()):""!==t.gallery&&a(t)}),setTimeout(function(){n.fancybox.getInstance()||a(o())},50))})}(window,document,jQuery),function(t,e){"use strict";var n=(new Date).getTime();e(t).on({"onInit.fb":function(t,e,o){e.$refs.stage.on("mousewheel DOMMouseScroll wheel MozMousePixelScroll",function(t){var o=e.current,a=(new Date).getTime();e.group.length<2||o.opts.wheel===!1||"auto"===o.opts.wheel&&"image"!==o.type||(t.preventDefault(),t.stopPropagation(),o.$slide.hasClass("fancybox-animated")||(t=t.originalEvent||t,a-n<250||(n=a,e[(-t.deltaY||-t.deltaX||t.wheelDelta||-t.detail)<0?"next":"previous"]())))})}})}(document,jQuery); \ No newline at end of file diff --git a/others/js/jquery.lazyload.min.js b/others/js/jquery.lazyload.min.js new file mode 100644 index 0000000..575abfb --- /dev/null +++ b/others/js/jquery.lazyload.min.js @@ -0,0 +1,2 @@ +/*! Lazy Load 1.9.5 - MIT license - Copyright 2010-2015 Mika Tuupola */ +!function(a,b,c,d){var e=a(b);a.fn.lazyload=function(f){function g(){var b=0;i.each(function(){var c=a(this);if(!j.skip_invisible||c.is(":visible"))if(a.abovethetop(this,j)||a.leftofbegin(this,j));else if(a.belowthefold(this,j)||a.rightoffold(this,j)){if(++b>j.failure_limit)return!1}else c.trigger("appear"),b=0})}var h,i=this,j={threshold:0,failure_limit:0,event:"scroll",effect:"show",container:b,data_attribute:"original",skip_invisible:!1,appear:null,load:null,placeholder:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC"};return f&&(d!==f.failurelimit&&(f.failure_limit=f.failurelimit,delete f.failurelimit),d!==f.effectspeed&&(f.effect_speed=f.effectspeed,delete f.effectspeed),a.extend(j,f)),h=j.container===d||j.container===b?e:a(j.container),0===j.event.indexOf("scroll")&&h.bind(j.event,function(){return g()}),this.each(function(){var b=this,c=a(b);b.loaded=!1,(c.attr("src")===d||c.attr("src")===!1)&&c.is("img")&&c.attr("src",j.placeholder),c.one("appear",function(){if(!this.loaded){if(j.appear){var d=i.length;j.appear.call(b,d,j)}a("").bind("load",function(){var d=c.attr("data-"+j.data_attribute);c.hide(),c.is("img")?c.attr("src",d):c.css("background-image","url('"+d+"')"),c[j.effect](j.effect_speed),b.loaded=!0;var e=a.grep(i,function(a){return!a.loaded});if(i=a(e),j.load){var f=i.length;j.load.call(b,f,j)}}).attr("src",c.attr("data-"+j.data_attribute))}}),0!==j.event.indexOf("scroll")&&c.bind(j.event,function(){b.loaded||c.trigger("appear")})}),e.bind("resize",function(){g()}),/(?:iphone|ipod|ipad).*os 5/gi.test(navigator.appVersion)&&e.bind("pageshow",function(b){b.originalEvent&&b.originalEvent.persisted&&i.each(function(){a(this).trigger("appear")})}),a(c).ready(function(){g()}),this},a.belowthefold=function(c,f){var g;return g=f.container===d||f.container===b?(b.innerHeight?b.innerHeight:e.height())+e.scrollTop():a(f.container).offset().top+a(f.container).height(),g<=a(c).offset().top-f.threshold},a.rightoffold=function(c,f){var g;return g=f.container===d||f.container===b?e.width()+e.scrollLeft():a(f.container).offset().left+a(f.container).width(),g<=a(c).offset().left-f.threshold},a.abovethetop=function(c,f){var g;return g=f.container===d||f.container===b?e.scrollTop():a(f.container).offset().top,g>=a(c).offset().top+f.threshold+a(c).height()},a.leftofbegin=function(c,f){var g;return g=f.container===d||f.container===b?e.scrollLeft():a(f.container).offset().left,g>=a(c).offset().left+f.threshold+a(c).width()},a.inviewport=function(b,c){return!(a.rightoffold(b,c)||a.leftofbegin(b,c)||a.belowthefold(b,c)||a.abovethetop(b,c))},a.extend(a.expr[":"],{"below-the-fold":function(b){return a.belowthefold(b,{threshold:0})},"above-the-top":function(b){return!a.belowthefold(b,{threshold:0})},"right-of-screen":function(b){return a.rightoffold(b,{threshold:0})},"left-of-screen":function(b){return!a.rightoffold(b,{threshold:0})},"in-viewport":function(b){return a.inviewport(b,{threshold:0})},"above-the-fold":function(b){return!a.belowthefold(b,{threshold:0})},"right-of-fold":function(b){return a.rightoffold(b,{threshold:0})},"left-of-fold":function(b){return!a.rightoffold(b,{threshold:0})}})}(jQuery,window,document); \ No newline at end of file diff --git a/others/js/jquery.pjax.min.js b/others/js/jquery.pjax.min.js new file mode 100644 index 0000000..25d1441 --- /dev/null +++ b/others/js/jquery.pjax.min.js @@ -0,0 +1,2 @@ +!function(t){function e(e,a,r){return r=m(a,r),this.on("click.pjax",e,function(e){var a=r;a.container||(a=t.extend({},r),a.container=t(this).attr("data-pjax")),n(e,a)})}function n(e,n,a){a=m(n,a);var i=e.currentTarget,o=t(i);if("A"!==i.tagName.toUpperCase())throw"$.fn.pjax or $.pjax.click requires an anchor element";if(!(e.which>1||e.metaKey||e.ctrlKey||e.shiftKey||e.altKey||location.protocol!==i.protocol||location.hostname!==i.hostname||i.href.indexOf("#")>-1&&h(i)==h(location)||e.isDefaultPrevented())){var c={url:i.href,container:o.attr("data-pjax"),target:i},s=t.extend({},c,a),u=t.Event("pjax:click");o.trigger(u,[s]),u.isDefaultPrevented()||(r(s),e.preventDefault(),o.trigger("pjax:clicked",[s]))}}function a(e,n,a){a=m(n,a);var i=e.currentTarget,o=t(i);if("FORM"!==i.tagName.toUpperCase())throw"$.pjax.submit requires a form element";var c={type:(o.attr("method")||"GET").toUpperCase(),url:o.attr("action"),container:o.attr("data-pjax"),target:i};if("GET"!==c.type&&void 0!==window.FormData)c.data=new FormData(i),c.processData=!1,c.contentType=!1;else{if(o.find(":file").length)return;c.data=o.serializeArray()}r(t.extend({},c,a)),e.preventDefault()}function r(e){function n(n,a,r){r||(r={}),r.relatedTarget=e.target;var i=t.Event(n,r);return c.trigger(i,a),!i.isDefaultPrevented()}e=t.extend(!0,{},t.ajaxSettings,r.defaults,e),t.isFunction(e.url)&&(e.url=e.url());var a=f(e.url).hash,i=t.type(e.container);if("string"!==i)throw"expected string value for 'container' option; got "+i;var c=e.context=t(e.container);if(!c.length)throw"the container selector '"+e.container+"' did not match anything";e.data||(e.data={}),t.isArray(e.data)?e.data.push({name:"_pjax",value:e.container}):e.data._pjax=e.container;var s;e.beforeSend=function(t,r){if("GET"!==r.type&&(r.timeout=0),t.setRequestHeader("X-PJAX","true"),t.setRequestHeader("X-PJAX-Container",e.container),!n("pjax:beforeSend",[t,r]))return!1;r.timeout>0&&(s=setTimeout(function(){n("pjax:timeout",[t,e])&&t.abort("timeout")},r.timeout),r.timeout=0);var i=f(r.url);a&&(i.hash=a),e.requestUrl=d(i)},e.complete=function(t,a){s&&clearTimeout(s),n("pjax:complete",[t,a,e]),n("pjax:end",[t,e])},e.error=function(t,a,r){var i=g("",t,e),c=n("pjax:error",[t,a,r,e]);"GET"==e.type&&"abort"!==a&&c&&o(i.url)},e.success=function(i,s,u){var p=r.state,d="function"==typeof t.pjax.defaults.version?t.pjax.defaults.version():t.pjax.defaults.version,h=u.getResponseHeader("X-PJAX-Version"),m=g(i,u,e),v=f(m.url);if(a&&(v.hash=a,m.url=v.href),d&&h&&d!==h)return void o(m.url);if(!m.contents)return void o(m.url);r.state={id:e.id||l(),url:m.url,title:m.title,container:e.container,fragment:e.fragment,timeout:e.timeout},(e.push||e.replace)&&window.history.replaceState(r.state,m.title,m.url);var x=t.contains(c,document.activeElement);if(x)try{document.activeElement.blur()}catch(t){}m.title&&(document.title=m.title),n("pjax:beforeReplace",[m.contents,e],{state:r.state,previousState:p}),c.html(m.contents);var j=c.find("input[autofocus], textarea[autofocus]").last()[0];j&&document.activeElement!==j&&j.focus(),y(m.scripts);var w=e.scrollTo;if(a){var b=decodeURIComponent(a.slice(1)),T=document.getElementById(b)||document.getElementsByName(b)[0];T&&(w=t(T).offset().top)}"number"==typeof w&&t(window).scrollTop(w),n("pjax:success",[i,s,u,e])},r.state||(r.state={id:l(),url:window.location.href,title:document.title,container:e.container,fragment:e.fragment,timeout:e.timeout},window.history.replaceState(r.state,document.title)),u(r.xhr),r.options=e;var h=r.xhr=t.ajax(e);return h.readyState>0&&(e.push&&!e.replace&&(j(r.state.id,[e.container,p(c)]),window.history.pushState(null,"",e.requestUrl)),n("pjax:start",[h,e]),n("pjax:send",[h,e])),r.xhr}function i(e,n){var a={url:window.location.href,push:!1,replace:!0,scrollTo:!1};return r(t.extend(a,m(e,n)))}function o(t){window.history.replaceState(null,"",r.state.url),window.location.replace(t)}function c(e){P||u(r.xhr);var n,a=r.state,i=e.state;if(i&&i.container){if(P&&C==i.url)return;if(a){if(a.id===i.id)return;n=a.id",{method:"GET"===a?"GET":"POST",action:n,style:"display:none"});"GET"!==a&&"POST"!==a&&r.append(t("",{type:"hidden",name:"_method",value:a.toLowerCase()}));var i=e.data;if("string"==typeof i)t.each(i.split("&"),function(e,n){var a=n.split("=");r.append(t("",{type:"hidden",name:a[0],value:a[1]}))});else if(t.isArray(i))t.each(i,function(e,n){r.append(t("",{type:"hidden",name:n.name,value:n.value}))});else if("object"==typeof i){var o;for(o in i)r.append(t("",{type:"hidden",name:o,value:i[o]}))}t(document.body).append(r),r.submit()}function u(e){e&&e.readyState<4&&(e.onreadystatechange=t.noop,e.abort())}function l(){return(new Date).getTime()}function p(e){var n=e.clone();return n.find("script").each(function(){this.src||t._data(this,"globalEval",!1)}),n.contents()}function d(t){return t.search=t.search.replace(/([?&])(_pjax|_)=[^&]*/g,"").replace(/^&/,""),t.href.replace(/\?($|#)/,"$1")}function f(t){var e=document.createElement("a");return e.href=t,e}function h(t){return t.href.replace(/#.*/,"")}function m(e,n){return e&&n?(n=t.extend({},n),n.container=e,n):t.isPlainObject(e)?e:{container:e}}function v(t,e){return t.filter(e).add(t.find(e))}function x(e){return t.parseHTML(e,document,!0)}function g(e,n,a){var r={},i=/]*>([\s\S.]*)<\/body>/i)[0]));var u=e.match(/]*>([\s\S.]*)<\/head>/i);c=null!=u?t(x(u[0])):s}else c=s=t(x(e));if(0===s.length)return r;if(r.title=v(c,"title").last().text(),a.fragment){var l=s;"body"!==a.fragment&&(l=v(l,a.fragment).first()),l.length&&(r.contents="body"===a.fragment?l:l.contents(),r.title||(r.title=l.attr("title")||l.data("title")))}else i||(r.contents=s);return r.contents&&(r.contents=r.contents.not(function(){return t(this).is("title")}),r.contents.find("title").remove(),r.scripts=v(r.contents,"script[src]").remove(),r.contents=r.contents.not(r.scripts)),r.title&&(r.title=t.trim(r.title)),r}function y(e){if(e){var n=t("script[src]");e.each(function(){var e=this.src,a=n.filter(function(){return this.src===e});if(!a.length){var r=document.createElement("script"),i=t(this).attr("type");i&&(r.type=i),r.src=t(this).attr("src"),document.head.appendChild(r)}})}}function j(t,e){D[t]=e,U.push(t),b(R,0),b(U,r.defaults.maxCacheLength)}function w(t,e,n){var a,i;D[e]=n,"forward"===t?(a=U,i=R):(a=R,i=U),a.push(e),e=i.pop(),e&&delete D[e],b(a,r.defaults.maxCacheLength)}function b(t,e){for(;t.length>e;)delete D[t.shift()]}function T(){return t("meta").filter(function(){var e=t(this).attr("http-equiv");return e&&"X-PJAX-VERSION"===e.toUpperCase()}).attr("content")}function E(){t.fn.pjax=e,t.pjax=r,t.pjax.enable=t.noop,t.pjax.disable=S,t.pjax.click=n,t.pjax.submit=a,t.pjax.reload=i,t.pjax.defaults={timeout:650,push:!0,replace:!1,type:"GET",dataType:"html",scrollTo:0,maxCacheLength:20,version:T},t(window).on("popstate.pjax",c)}function S(){t.fn.pjax=function(){return this},t.pjax=s,t.pjax.enable=E,t.pjax.disable=t.noop,t.pjax.click=t.noop,t.pjax.submit=t.noop,t.pjax.reload=function(){window.location.reload()},t(window).off("popstate.pjax",c)}var P=!0,C=window.location.href,A=window.history.state;A&&A.container&&(r.state=A),"state"in window.history&&(P=!1);var D={},R=[],U=[];t.event.props&&t.inArray("state",t.event.props)<0?t.event.props.push("state"):"state"in t.Event.prototype||t.event.addProp("state"),t.support.pjax=window.history&&window.history.pushState&&window.history.replaceState&&!navigator.userAgent.match(/((iPod|iPhone|iPad).+\bOS\s+[1-4]\D|WebApps\/.+CFNetwork)/),t.support.pjax?E():S()}(jQuery); +//# sourceMappingURL=jquery.pjax.min.js.map \ No newline at end of file diff --git a/others/js/jquery3.3.1.min.js b/others/js/jquery3.3.1.min.js new file mode 100644 index 0000000..49d1fcf --- /dev/null +++ b/others/js/jquery3.3.1.min.js @@ -0,0 +1,2 @@ +/*! jQuery v3.3.1 | (c) JS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(e,t){"use strict";var n=[],r=e.document,i=Object.getPrototypeOf,o=n.slice,a=n.concat,s=n.push,u=n.indexOf,l={},c=l.toString,f=l.hasOwnProperty,p=f.toString,d=p.call(Object),h={},g=function e(t){return"function"==typeof t&&"number"!=typeof t.nodeType},y=function e(t){return null!=t&&t===t.window},v={type:!0,src:!0,noModule:!0};function m(e,t,n){var i,o=(t=t||r).createElement("script");if(o.text=e,n)for(i in v)n[i]&&(o[i]=n[i]);t.head.appendChild(o).parentNode.removeChild(o)}function x(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?l[c.call(e)]||"object":typeof e}var b="3.3.1",w=function(e,t){return new w.fn.init(e,t)},T=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;w.fn=w.prototype={jquery:"3.3.1",constructor:w,length:0,toArray:function(){return o.call(this)},get:function(e){return null==e?o.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=w.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return w.each(this,e)},map:function(e){return this.pushStack(w.map(this,function(t,n){return e.call(t,n,t)}))},slice:function(){return this.pushStack(o.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(n>=0&&n0&&t-1 in e)}var E=function(e){var t,n,r,i,o,a,s,u,l,c,f,p,d,h,g,y,v,m,x,b="sizzle"+1*new Date,w=e.document,T=0,C=0,E=ae(),k=ae(),S=ae(),D=function(e,t){return e===t&&(f=!0),0},N={}.hasOwnProperty,A=[],j=A.pop,q=A.push,L=A.push,H=A.slice,O=function(e,t){for(var n=0,r=e.length;n+~]|"+M+")"+M+"*"),z=new RegExp("="+M+"*([^\\]'\"]*?)"+M+"*\\]","g"),X=new RegExp(W),U=new RegExp("^"+R+"$"),V={ID:new RegExp("^#("+R+")"),CLASS:new RegExp("^\\.("+R+")"),TAG:new RegExp("^("+R+"|[*])"),ATTR:new RegExp("^"+I),PSEUDO:new RegExp("^"+W),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+P+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},G=/^(?:input|select|textarea|button)$/i,Y=/^h\d$/i,Q=/^[^{]+\{\s*\[native \w/,J=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,K=/[+~]/,Z=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),ee=function(e,t,n){var r="0x"+t-65536;return r!==r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},te=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ne=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},re=function(){p()},ie=me(function(e){return!0===e.disabled&&("form"in e||"label"in e)},{dir:"parentNode",next:"legend"});try{L.apply(A=H.call(w.childNodes),w.childNodes),A[w.childNodes.length].nodeType}catch(e){L={apply:A.length?function(e,t){q.apply(e,H.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function oe(e,t,r,i){var o,s,l,c,f,h,v,m=t&&t.ownerDocument,T=t?t.nodeType:9;if(r=r||[],"string"!=typeof e||!e||1!==T&&9!==T&&11!==T)return r;if(!i&&((t?t.ownerDocument||t:w)!==d&&p(t),t=t||d,g)){if(11!==T&&(f=J.exec(e)))if(o=f[1]){if(9===T){if(!(l=t.getElementById(o)))return r;if(l.id===o)return r.push(l),r}else if(m&&(l=m.getElementById(o))&&x(t,l)&&l.id===o)return r.push(l),r}else{if(f[2])return L.apply(r,t.getElementsByTagName(e)),r;if((o=f[3])&&n.getElementsByClassName&&t.getElementsByClassName)return L.apply(r,t.getElementsByClassName(o)),r}if(n.qsa&&!S[e+" "]&&(!y||!y.test(e))){if(1!==T)m=t,v=e;else if("object"!==t.nodeName.toLowerCase()){(c=t.getAttribute("id"))?c=c.replace(te,ne):t.setAttribute("id",c=b),s=(h=a(e)).length;while(s--)h[s]="#"+c+" "+ve(h[s]);v=h.join(","),m=K.test(e)&&ge(t.parentNode)||t}if(v)try{return L.apply(r,m.querySelectorAll(v)),r}catch(e){}finally{c===b&&t.removeAttribute("id")}}}return u(e.replace(B,"$1"),t,r,i)}function ae(){var e=[];function t(n,i){return e.push(n+" ")>r.cacheLength&&delete t[e.shift()],t[n+" "]=i}return t}function se(e){return e[b]=!0,e}function ue(e){var t=d.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function le(e,t){var n=e.split("|"),i=n.length;while(i--)r.attrHandle[n[i]]=t}function ce(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function fe(e){return function(t){return"input"===t.nodeName.toLowerCase()&&t.type===e}}function pe(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function de(e){return function(t){return"form"in t?t.parentNode&&!1===t.disabled?"label"in t?"label"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&ie(t)===e:t.disabled===e:"label"in t&&t.disabled===e}}function he(e){return se(function(t){return t=+t,se(function(n,r){var i,o=e([],n.length,t),a=o.length;while(a--)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))})})}function ge(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}n=oe.support={},o=oe.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return!!t&&"HTML"!==t.nodeName},p=oe.setDocument=function(e){var t,i,a=e?e.ownerDocument||e:w;return a!==d&&9===a.nodeType&&a.documentElement?(d=a,h=d.documentElement,g=!o(d),w!==d&&(i=d.defaultView)&&i.top!==i&&(i.addEventListener?i.addEventListener("unload",re,!1):i.attachEvent&&i.attachEvent("onunload",re)),n.attributes=ue(function(e){return e.className="i",!e.getAttribute("className")}),n.getElementsByTagName=ue(function(e){return e.appendChild(d.createComment("")),!e.getElementsByTagName("*").length}),n.getElementsByClassName=Q.test(d.getElementsByClassName),n.getById=ue(function(e){return h.appendChild(e).id=b,!d.getElementsByName||!d.getElementsByName(b).length}),n.getById?(r.filter.ID=function(e){var t=e.replace(Z,ee);return function(e){return e.getAttribute("id")===t}},r.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&g){var n=t.getElementById(e);return n?[n]:[]}}):(r.filter.ID=function(e){var t=e.replace(Z,ee);return function(e){var n="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return n&&n.value===t}},r.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&g){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),r.find.TAG=n.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):n.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},r.find.CLASS=n.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&g)return t.getElementsByClassName(e)},v=[],y=[],(n.qsa=Q.test(d.querySelectorAll))&&(ue(function(e){h.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&y.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||y.push("\\["+M+"*(?:value|"+P+")"),e.querySelectorAll("[id~="+b+"-]").length||y.push("~="),e.querySelectorAll(":checked").length||y.push(":checked"),e.querySelectorAll("a#"+b+"+*").length||y.push(".#.+[+~]")}),ue(function(e){e.innerHTML="";var t=d.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&y.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&y.push(":enabled",":disabled"),h.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&y.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),y.push(",.*:")})),(n.matchesSelector=Q.test(m=h.matches||h.webkitMatchesSelector||h.mozMatchesSelector||h.oMatchesSelector||h.msMatchesSelector))&&ue(function(e){n.disconnectedMatch=m.call(e,"*"),m.call(e,"[s!='']:x"),v.push("!=",W)}),y=y.length&&new RegExp(y.join("|")),v=v.length&&new RegExp(v.join("|")),t=Q.test(h.compareDocumentPosition),x=t||Q.test(h.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return f=!0,0;var r=!e.compareDocumentPosition-!t.compareDocumentPosition;return r||(1&(r=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!n.sortDetached&&t.compareDocumentPosition(e)===r?e===d||e.ownerDocument===w&&x(w,e)?-1:t===d||t.ownerDocument===w&&x(w,t)?1:c?O(c,e)-O(c,t):0:4&r?-1:1)}:function(e,t){if(e===t)return f=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e===d?-1:t===d?1:i?-1:o?1:c?O(c,e)-O(c,t):0;if(i===o)return ce(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?ce(a[r],s[r]):a[r]===w?-1:s[r]===w?1:0},d):d},oe.matches=function(e,t){return oe(e,null,null,t)},oe.matchesSelector=function(e,t){if((e.ownerDocument||e)!==d&&p(e),t=t.replace(z,"='$1']"),n.matchesSelector&&g&&!S[t+" "]&&(!v||!v.test(t))&&(!y||!y.test(t)))try{var r=m.call(e,t);if(r||n.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(e){}return oe(t,d,null,[e]).length>0},oe.contains=function(e,t){return(e.ownerDocument||e)!==d&&p(e),x(e,t)},oe.attr=function(e,t){(e.ownerDocument||e)!==d&&p(e);var i=r.attrHandle[t.toLowerCase()],o=i&&N.call(r.attrHandle,t.toLowerCase())?i(e,t,!g):void 0;return void 0!==o?o:n.attributes||!g?e.getAttribute(t):(o=e.getAttributeNode(t))&&o.specified?o.value:null},oe.escape=function(e){return(e+"").replace(te,ne)},oe.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},oe.uniqueSort=function(e){var t,r=[],i=0,o=0;if(f=!n.detectDuplicates,c=!n.sortStable&&e.slice(0),e.sort(D),f){while(t=e[o++])t===e[o]&&(i=r.push(o));while(i--)e.splice(r[i],1)}return c=null,e},i=oe.getText=function(e){var t,n="",r=0,o=e.nodeType;if(o){if(1===o||9===o||11===o){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=i(e)}else if(3===o||4===o)return e.nodeValue}else while(t=e[r++])n+=i(t);return n},(r=oe.selectors={cacheLength:50,createPseudo:se,match:V,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(Z,ee),e[3]=(e[3]||e[4]||e[5]||"").replace(Z,ee),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||oe.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&oe.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return V.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=a(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(Z,ee).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=E[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&E(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=oe.attr(r,e);return null==i?"!="===t:!t||(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i.replace($," ")+" ").indexOf(n)>-1:"|="===t&&(i===n||i.slice(0,n.length+1)===n+"-"))}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,f,p,d,h,g=o!==a?"nextSibling":"previousSibling",y=t.parentNode,v=s&&t.nodeName.toLowerCase(),m=!u&&!s,x=!1;if(y){if(o){while(g){p=t;while(p=p[g])if(s?p.nodeName.toLowerCase()===v:1===p.nodeType)return!1;h=g="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?y.firstChild:y.lastChild],a&&m){x=(d=(l=(c=(f=(p=y)[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]||[])[0]===T&&l[1])&&l[2],p=d&&y.childNodes[d];while(p=++d&&p&&p[g]||(x=d=0)||h.pop())if(1===p.nodeType&&++x&&p===t){c[e]=[T,d,x];break}}else if(m&&(x=d=(l=(c=(f=(p=t)[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]||[])[0]===T&&l[1]),!1===x)while(p=++d&&p&&p[g]||(x=d=0)||h.pop())if((s?p.nodeName.toLowerCase()===v:1===p.nodeType)&&++x&&(m&&((c=(f=p[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]=[T,x]),p===t))break;return(x-=i)===r||x%r==0&&x/r>=0}}},PSEUDO:function(e,t){var n,i=r.pseudos[e]||r.setFilters[e.toLowerCase()]||oe.error("unsupported pseudo: "+e);return i[b]?i(t):i.length>1?(n=[e,e,"",t],r.setFilters.hasOwnProperty(e.toLowerCase())?se(function(e,n){var r,o=i(e,t),a=o.length;while(a--)e[r=O(e,o[a])]=!(n[r]=o[a])}):function(e){return i(e,0,n)}):i}},pseudos:{not:se(function(e){var t=[],n=[],r=s(e.replace(B,"$1"));return r[b]?se(function(e,t,n,i){var o,a=r(e,null,i,[]),s=e.length;while(s--)(o=a[s])&&(e[s]=!(t[s]=o))}):function(e,i,o){return t[0]=e,r(t,null,o,n),t[0]=null,!n.pop()}}),has:se(function(e){return function(t){return oe(e,t).length>0}}),contains:se(function(e){return e=e.replace(Z,ee),function(t){return(t.textContent||t.innerText||i(t)).indexOf(e)>-1}}),lang:se(function(e){return U.test(e||"")||oe.error("unsupported lang: "+e),e=e.replace(Z,ee).toLowerCase(),function(t){var n;do{if(n=g?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return(n=n.toLowerCase())===e||0===n.indexOf(e+"-")}while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===h},focus:function(e){return e===d.activeElement&&(!d.hasFocus||d.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:de(!1),disabled:de(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!r.pseudos.empty(e)},header:function(e){return Y.test(e.nodeName)},input:function(e){return G.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:he(function(){return[0]}),last:he(function(e,t){return[t-1]}),eq:he(function(e,t,n){return[n<0?n+t:n]}),even:he(function(e,t){for(var n=0;n=0;)e.push(r);return e}),gt:he(function(e,t,n){for(var r=n<0?n+t:n;++r1?function(t,n,r){var i=e.length;while(i--)if(!e[i](t,n,r))return!1;return!0}:e[0]}function be(e,t,n){for(var r=0,i=t.length;r-1&&(o[l]=!(a[l]=f))}}else v=we(v===a?v.splice(h,v.length):v),i?i(null,a,v,u):L.apply(a,v)})}function Ce(e){for(var t,n,i,o=e.length,a=r.relative[e[0].type],s=a||r.relative[" "],u=a?1:0,c=me(function(e){return e===t},s,!0),f=me(function(e){return O(t,e)>-1},s,!0),p=[function(e,n,r){var i=!a&&(r||n!==l)||((t=n).nodeType?c(e,n,r):f(e,n,r));return t=null,i}];u1&&xe(p),u>1&&ve(e.slice(0,u-1).concat({value:" "===e[u-2].type?"*":""})).replace(B,"$1"),n,u0,i=e.length>0,o=function(o,a,s,u,c){var f,h,y,v=0,m="0",x=o&&[],b=[],w=l,C=o||i&&r.find.TAG("*",c),E=T+=null==w?1:Math.random()||.1,k=C.length;for(c&&(l=a===d||a||c);m!==k&&null!=(f=C[m]);m++){if(i&&f){h=0,a||f.ownerDocument===d||(p(f),s=!g);while(y=e[h++])if(y(f,a||d,s)){u.push(f);break}c&&(T=E)}n&&((f=!y&&f)&&v--,o&&x.push(f))}if(v+=m,n&&m!==v){h=0;while(y=t[h++])y(x,b,a,s);if(o){if(v>0)while(m--)x[m]||b[m]||(b[m]=j.call(u));b=we(b)}L.apply(u,b),c&&!o&&b.length>0&&v+t.length>1&&oe.uniqueSort(u)}return c&&(T=E,l=w),x};return n?se(o):o}return s=oe.compile=function(e,t){var n,r=[],i=[],o=S[e+" "];if(!o){t||(t=a(e)),n=t.length;while(n--)(o=Ce(t[n]))[b]?r.push(o):i.push(o);(o=S(e,Ee(i,r))).selector=e}return o},u=oe.select=function(e,t,n,i){var o,u,l,c,f,p="function"==typeof e&&e,d=!i&&a(e=p.selector||e);if(n=n||[],1===d.length){if((u=d[0]=d[0].slice(0)).length>2&&"ID"===(l=u[0]).type&&9===t.nodeType&&g&&r.relative[u[1].type]){if(!(t=(r.find.ID(l.matches[0].replace(Z,ee),t)||[])[0]))return n;p&&(t=t.parentNode),e=e.slice(u.shift().value.length)}o=V.needsContext.test(e)?0:u.length;while(o--){if(l=u[o],r.relative[c=l.type])break;if((f=r.find[c])&&(i=f(l.matches[0].replace(Z,ee),K.test(u[0].type)&&ge(t.parentNode)||t))){if(u.splice(o,1),!(e=i.length&&ve(u)))return L.apply(n,i),n;break}}}return(p||s(e,d))(i,t,!g,n,!t||K.test(e)&&ge(t.parentNode)||t),n},n.sortStable=b.split("").sort(D).join("")===b,n.detectDuplicates=!!f,p(),n.sortDetached=ue(function(e){return 1&e.compareDocumentPosition(d.createElement("fieldset"))}),ue(function(e){return e.innerHTML="","#"===e.firstChild.getAttribute("href")})||le("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),n.attributes&&ue(function(e){return e.innerHTML="",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||le("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue}),ue(function(e){return null==e.getAttribute("disabled")})||le(P,function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),oe}(e);w.find=E,w.expr=E.selectors,w.expr[":"]=w.expr.pseudos,w.uniqueSort=w.unique=E.uniqueSort,w.text=E.getText,w.isXMLDoc=E.isXML,w.contains=E.contains,w.escapeSelector=E.escape;var k=function(e,t,n){var r=[],i=void 0!==n;while((e=e[t])&&9!==e.nodeType)if(1===e.nodeType){if(i&&w(e).is(n))break;r.push(e)}return r},S=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},D=w.expr.match.needsContext;function N(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var A=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,t,n){return g(t)?w.grep(e,function(e,r){return!!t.call(e,r,e)!==n}):t.nodeType?w.grep(e,function(e){return e===t!==n}):"string"!=typeof t?w.grep(e,function(e){return u.call(t,e)>-1!==n}):w.filter(t,e,n)}w.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?w.find.matchesSelector(r,e)?[r]:[]:w.find.matches(e,w.grep(t,function(e){return 1===e.nodeType}))},w.fn.extend({find:function(e){var t,n,r=this.length,i=this;if("string"!=typeof e)return this.pushStack(w(e).filter(function(){for(t=0;t1?w.uniqueSort(n):n},filter:function(e){return this.pushStack(j(this,e||[],!1))},not:function(e){return this.pushStack(j(this,e||[],!0))},is:function(e){return!!j(this,"string"==typeof e&&D.test(e)?w(e):e||[],!1).length}});var q,L=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(w.fn.init=function(e,t,n){var i,o;if(!e)return this;if(n=n||q,"string"==typeof e){if(!(i="<"===e[0]&&">"===e[e.length-1]&&e.length>=3?[null,e,null]:L.exec(e))||!i[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(i[1]){if(t=t instanceof w?t[0]:t,w.merge(this,w.parseHTML(i[1],t&&t.nodeType?t.ownerDocument||t:r,!0)),A.test(i[1])&&w.isPlainObject(t))for(i in t)g(this[i])?this[i](t[i]):this.attr(i,t[i]);return this}return(o=r.getElementById(i[2]))&&(this[0]=o,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):g(e)?void 0!==n.ready?n.ready(e):e(w):w.makeArray(e,this)}).prototype=w.fn,q=w(r);var H=/^(?:parents|prev(?:Until|All))/,O={children:!0,contents:!0,next:!0,prev:!0};w.fn.extend({has:function(e){var t=w(e,this),n=t.length;return this.filter(function(){for(var e=0;e-1:1===n.nodeType&&w.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(o.length>1?w.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?u.call(w(e),this[0]):u.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(w.uniqueSort(w.merge(this.get(),w(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}});function P(e,t){while((e=e[t])&&1!==e.nodeType);return e}w.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return k(e,"parentNode")},parentsUntil:function(e,t,n){return k(e,"parentNode",n)},next:function(e){return P(e,"nextSibling")},prev:function(e){return P(e,"previousSibling")},nextAll:function(e){return k(e,"nextSibling")},prevAll:function(e){return k(e,"previousSibling")},nextUntil:function(e,t,n){return k(e,"nextSibling",n)},prevUntil:function(e,t,n){return k(e,"previousSibling",n)},siblings:function(e){return S((e.parentNode||{}).firstChild,e)},children:function(e){return S(e.firstChild)},contents:function(e){return N(e,"iframe")?e.contentDocument:(N(e,"template")&&(e=e.content||e),w.merge([],e.childNodes))}},function(e,t){w.fn[e]=function(n,r){var i=w.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=w.filter(r,i)),this.length>1&&(O[e]||w.uniqueSort(i),H.test(e)&&i.reverse()),this.pushStack(i)}});var M=/[^\x20\t\r\n\f]+/g;function R(e){var t={};return w.each(e.match(M)||[],function(e,n){t[n]=!0}),t}w.Callbacks=function(e){e="string"==typeof e?R(e):w.extend({},e);var t,n,r,i,o=[],a=[],s=-1,u=function(){for(i=i||e.once,r=t=!0;a.length;s=-1){n=a.shift();while(++s-1)o.splice(n,1),n<=s&&s--}),this},has:function(e){return e?w.inArray(e,o)>-1:o.length>0},empty:function(){return o&&(o=[]),this},disable:function(){return i=a=[],o=n="",this},disabled:function(){return!o},lock:function(){return i=a=[],n||t||(o=n=""),this},locked:function(){return!!i},fireWith:function(e,n){return i||(n=[e,(n=n||[]).slice?n.slice():n],a.push(n),t||u()),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!r}};return l};function I(e){return e}function W(e){throw e}function $(e,t,n,r){var i;try{e&&g(i=e.promise)?i.call(e).done(t).fail(n):e&&g(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}w.extend({Deferred:function(t){var n=[["notify","progress",w.Callbacks("memory"),w.Callbacks("memory"),2],["resolve","done",w.Callbacks("once memory"),w.Callbacks("once memory"),0,"resolved"],["reject","fail",w.Callbacks("once memory"),w.Callbacks("once memory"),1,"rejected"]],r="pending",i={state:function(){return r},always:function(){return o.done(arguments).fail(arguments),this},"catch":function(e){return i.then(null,e)},pipe:function(){var e=arguments;return w.Deferred(function(t){w.each(n,function(n,r){var i=g(e[r[4]])&&e[r[4]];o[r[1]](function(){var e=i&&i.apply(this,arguments);e&&g(e.promise)?e.promise().progress(t.notify).done(t.resolve).fail(t.reject):t[r[0]+"With"](this,i?[e]:arguments)})}),e=null}).promise()},then:function(t,r,i){var o=0;function a(t,n,r,i){return function(){var s=this,u=arguments,l=function(){var e,l;if(!(t=o&&(r!==W&&(s=void 0,u=[e]),n.rejectWith(s,u))}};t?c():(w.Deferred.getStackHook&&(c.stackTrace=w.Deferred.getStackHook()),e.setTimeout(c))}}return w.Deferred(function(e){n[0][3].add(a(0,e,g(i)?i:I,e.notifyWith)),n[1][3].add(a(0,e,g(t)?t:I)),n[2][3].add(a(0,e,g(r)?r:W))}).promise()},promise:function(e){return null!=e?w.extend(e,i):i}},o={};return w.each(n,function(e,t){var a=t[2],s=t[5];i[t[1]]=a.add,s&&a.add(function(){r=s},n[3-e][2].disable,n[3-e][3].disable,n[0][2].lock,n[0][3].lock),a.add(t[3].fire),o[t[0]]=function(){return o[t[0]+"With"](this===o?void 0:this,arguments),this},o[t[0]+"With"]=a.fireWith}),i.promise(o),t&&t.call(o,o),o},when:function(e){var t=arguments.length,n=t,r=Array(n),i=o.call(arguments),a=w.Deferred(),s=function(e){return function(n){r[e]=this,i[e]=arguments.length>1?o.call(arguments):n,--t||a.resolveWith(r,i)}};if(t<=1&&($(e,a.done(s(n)).resolve,a.reject,!t),"pending"===a.state()||g(i[n]&&i[n].then)))return a.then();while(n--)$(i[n],s(n),a.reject);return a.promise()}});var B=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;w.Deferred.exceptionHook=function(t,n){e.console&&e.console.warn&&t&&B.test(t.name)&&e.console.warn("jQuery.Deferred exception: "+t.message,t.stack,n)},w.readyException=function(t){e.setTimeout(function(){throw t})};var F=w.Deferred();w.fn.ready=function(e){return F.then(e)["catch"](function(e){w.readyException(e)}),this},w.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--w.readyWait:w.isReady)||(w.isReady=!0,!0!==e&&--w.readyWait>0||F.resolveWith(r,[w]))}}),w.ready.then=F.then;function _(){r.removeEventListener("DOMContentLoaded",_),e.removeEventListener("load",_),w.ready()}"complete"===r.readyState||"loading"!==r.readyState&&!r.documentElement.doScroll?e.setTimeout(w.ready):(r.addEventListener("DOMContentLoaded",_),e.addEventListener("load",_));var z=function(e,t,n,r,i,o,a){var s=0,u=e.length,l=null==n;if("object"===x(n)){i=!0;for(s in n)z(e,t,s,n[s],!0,o,a)}else if(void 0!==r&&(i=!0,g(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(w(e),n)})),t))for(;s1,null,!0)},removeData:function(e){return this.each(function(){K.remove(this,e)})}}),w.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=J.get(e,t),n&&(!r||Array.isArray(n)?r=J.access(e,t,w.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=w.queue(e,t),r=n.length,i=n.shift(),o=w._queueHooks(e,t),a=function(){w.dequeue(e,t)};"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,a,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return J.get(e,n)||J.access(e,n,{empty:w.Callbacks("once memory").add(function(){J.remove(e,[t+"queue",n])})})}}),w.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n--),arguments.length\x20\t\r\n\f]+)/i,he=/^$|^module$|\/(?:java|ecma)script/i,ge={option:[1,""],thead:[1,"","
    "],col:[2,"","
    "],tr:[2,"","
    "],td:[3,"","
    "],_default:[0,"",""]};ge.optgroup=ge.option,ge.tbody=ge.tfoot=ge.colgroup=ge.caption=ge.thead,ge.th=ge.td;function ye(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&N(e,t)?w.merge([e],n):n}function ve(e,t){for(var n=0,r=e.length;n-1)i&&i.push(o);else if(l=w.contains(o.ownerDocument,o),a=ye(f.appendChild(o),"script"),l&&ve(a),n){c=0;while(o=a[c++])he.test(o.type||"")&&n.push(o)}return f}!function(){var e=r.createDocumentFragment().appendChild(r.createElement("div")),t=r.createElement("input");t.setAttribute("type","radio"),t.setAttribute("checked","checked"),t.setAttribute("name","t"),e.appendChild(t),h.checkClone=e.cloneNode(!0).cloneNode(!0).lastChild.checked,e.innerHTML="",h.noCloneChecked=!!e.cloneNode(!0).lastChild.defaultValue}();var be=r.documentElement,we=/^key/,Te=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Ce=/^([^.]*)(?:\.(.+)|)/;function Ee(){return!0}function ke(){return!1}function Se(){try{return r.activeElement}catch(e){}}function De(e,t,n,r,i,o){var a,s;if("object"==typeof t){"string"!=typeof n&&(r=r||n,n=void 0);for(s in t)De(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=ke;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return w().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=w.guid++)),e.each(function(){w.event.add(this,t,i,r,n)})}w.event={global:{},add:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,y=J.get(e);if(y){n.handler&&(n=(o=n).handler,i=o.selector),i&&w.find.matchesSelector(be,i),n.guid||(n.guid=w.guid++),(u=y.events)||(u=y.events={}),(a=y.handle)||(a=y.handle=function(t){return"undefined"!=typeof w&&w.event.triggered!==t.type?w.event.dispatch.apply(e,arguments):void 0}),l=(t=(t||"").match(M)||[""]).length;while(l--)d=g=(s=Ce.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=w.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=w.event.special[d]||{},c=w.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&w.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(e,r,h,a)||e.addEventListener&&e.addEventListener(d,a)),f.add&&(f.add.call(e,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),w.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,y=J.hasData(e)&&J.get(e);if(y&&(u=y.events)){l=(t=(t||"").match(M)||[""]).length;while(l--)if(s=Ce.exec(t[l])||[],d=g=s[1],h=(s[2]||"").split(".").sort(),d){f=w.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,y.handle)||w.removeEvent(e,d,y.handle),delete u[d])}else for(d in u)w.event.remove(e,d+t[l],n,r,!0);w.isEmptyObject(u)&&J.remove(e,"handle events")}},dispatch:function(e){var t=w.event.fix(e),n,r,i,o,a,s,u=new Array(arguments.length),l=(J.get(this,"events")||{})[t.type]||[],c=w.event.special[t.type]||{};for(u[0]=t,n=1;n=1))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&("click"!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n-1:w.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&s.push({elem:l,handlers:o})}return l=this,u\x20\t\r\n\f]*)[^>]*)\/>/gi,Ae=/\s*$/g;function Le(e,t){return N(e,"table")&&N(11!==t.nodeType?t:t.firstChild,"tr")?w(e).children("tbody")[0]||e:e}function He(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function Oe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Pe(e,t){var n,r,i,o,a,s,u,l;if(1===t.nodeType){if(J.hasData(e)&&(o=J.access(e),a=J.set(t,o),l=o.events)){delete a.handle,a.events={};for(i in l)for(n=0,r=l[i].length;n1&&"string"==typeof y&&!h.checkClone&&je.test(y))return e.each(function(i){var o=e.eq(i);v&&(t[0]=y.call(this,i,o.html())),Re(o,t,n,r)});if(p&&(i=xe(t,e[0].ownerDocument,!1,e,r),o=i.firstChild,1===i.childNodes.length&&(i=o),o||r)){for(u=(s=w.map(ye(i,"script"),He)).length;f")},clone:function(e,t,n){var r,i,o,a,s=e.cloneNode(!0),u=w.contains(e.ownerDocument,e);if(!(h.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||w.isXMLDoc(e)))for(a=ye(s),r=0,i=(o=ye(e)).length;r0&&ve(a,!u&&ye(e,"script")),s},cleanData:function(e){for(var t,n,r,i=w.event.special,o=0;void 0!==(n=e[o]);o++)if(Y(n)){if(t=n[J.expando]){if(t.events)for(r in t.events)i[r]?w.event.remove(n,r):w.removeEvent(n,r,t.handle);n[J.expando]=void 0}n[K.expando]&&(n[K.expando]=void 0)}}}),w.fn.extend({detach:function(e){return Ie(this,e,!0)},remove:function(e){return Ie(this,e)},text:function(e){return z(this,function(e){return void 0===e?w.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)})},null,e,arguments.length)},append:function(){return Re(this,arguments,function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||Le(this,e).appendChild(e)})},prepend:function(){return Re(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Le(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return Re(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return Re(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(w.cleanData(ye(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return w.clone(this,e,t)})},html:function(e){return z(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!Ae.test(e)&&!ge[(de.exec(e)||["",""])[1].toLowerCase()]){e=w.htmlPrefilter(e);try{for(;n=0&&(u+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-o-u-s-.5))),u}function et(e,t,n){var r=$e(e),i=Fe(e,t,r),o="border-box"===w.css(e,"boxSizing",!1,r),a=o;if(We.test(i)){if(!n)return i;i="auto"}return a=a&&(h.boxSizingReliable()||i===e.style[t]),("auto"===i||!parseFloat(i)&&"inline"===w.css(e,"display",!1,r))&&(i=e["offset"+t[0].toUpperCase()+t.slice(1)],a=!0),(i=parseFloat(i)||0)+Ze(e,t,n||(o?"border":"content"),a,r,i)+"px"}w.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Fe(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=G(t),u=Xe.test(t),l=e.style;if(u||(t=Je(s)),a=w.cssHooks[t]||w.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t];"string"==(o=typeof n)&&(i=ie.exec(n))&&i[1]&&(n=ue(e,t,i),o="number"),null!=n&&n===n&&("number"===o&&(n+=i&&i[3]||(w.cssNumber[s]?"":"px")),h.clearCloneStyle||""!==n||0!==t.indexOf("background")||(l[t]="inherit"),a&&"set"in a&&void 0===(n=a.set(e,n,r))||(u?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var i,o,a,s=G(t);return Xe.test(t)||(t=Je(s)),(a=w.cssHooks[t]||w.cssHooks[s])&&"get"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=Fe(e,t,r)),"normal"===i&&t in Ve&&(i=Ve[t]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),w.each(["height","width"],function(e,t){w.cssHooks[t]={get:function(e,n,r){if(n)return!ze.test(w.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?et(e,t,r):se(e,Ue,function(){return et(e,t,r)})},set:function(e,n,r){var i,o=$e(e),a="border-box"===w.css(e,"boxSizing",!1,o),s=r&&Ze(e,t,r,a,o);return a&&h.scrollboxSize()===o.position&&(s-=Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-parseFloat(o[t])-Ze(e,t,"border",!1,o)-.5)),s&&(i=ie.exec(n))&&"px"!==(i[3]||"px")&&(e.style[t]=n,n=w.css(e,t)),Ke(e,n,s)}}}),w.cssHooks.marginLeft=_e(h.reliableMarginLeft,function(e,t){if(t)return(parseFloat(Fe(e,"marginLeft"))||e.getBoundingClientRect().left-se(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))+"px"}),w.each({margin:"",padding:"",border:"Width"},function(e,t){w.cssHooks[e+t]={expand:function(n){for(var r=0,i={},o="string"==typeof n?n.split(" "):[n];r<4;r++)i[e+oe[r]+t]=o[r]||o[r-2]||o[0];return i}},"margin"!==e&&(w.cssHooks[e+t].set=Ke)}),w.fn.extend({css:function(e,t){return z(this,function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=$e(e),i=t.length;a1)}});function tt(e,t,n,r,i){return new tt.prototype.init(e,t,n,r,i)}w.Tween=tt,tt.prototype={constructor:tt,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||w.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(w.cssNumber[n]?"":"px")},cur:function(){var e=tt.propHooks[this.prop];return e&&e.get?e.get(this):tt.propHooks._default.get(this)},run:function(e){var t,n=tt.propHooks[this.prop];return this.options.duration?this.pos=t=w.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):tt.propHooks._default.set(this),this}},tt.prototype.init.prototype=tt.prototype,tt.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=w.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){w.fx.step[e.prop]?w.fx.step[e.prop](e):1!==e.elem.nodeType||null==e.elem.style[w.cssProps[e.prop]]&&!w.cssHooks[e.prop]?e.elem[e.prop]=e.now:w.style(e.elem,e.prop,e.now+e.unit)}}},tt.propHooks.scrollTop=tt.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},w.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},w.fx=tt.prototype.init,w.fx.step={};var nt,rt,it=/^(?:toggle|show|hide)$/,ot=/queueHooks$/;function at(){rt&&(!1===r.hidden&&e.requestAnimationFrame?e.requestAnimationFrame(at):e.setTimeout(at,w.fx.interval),w.fx.tick())}function st(){return e.setTimeout(function(){nt=void 0}),nt=Date.now()}function ut(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i["margin"+(n=oe[r])]=i["padding"+n]=e;return t&&(i.opacity=i.width=e),i}function lt(e,t,n){for(var r,i=(pt.tweeners[t]||[]).concat(pt.tweeners["*"]),o=0,a=i.length;o1)},removeAttr:function(e){return this.each(function(){w.removeAttr(this,e)})}}),w.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return"undefined"==typeof e.getAttribute?w.prop(e,t,n):(1===o&&w.isXMLDoc(e)||(i=w.attrHooks[t.toLowerCase()]||(w.expr.match.bool.test(t)?dt:void 0)),void 0!==n?null===n?void w.removeAttr(e,t):i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(r=i.get(e,t))?r:null==(r=w.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!h.radioValue&&"radio"===t&&N(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(M);if(i&&1===e.nodeType)while(n=i[r++])e.removeAttribute(n)}}),dt={set:function(e,t,n){return!1===t?w.removeAttr(e,n):e.setAttribute(n,n),n}},w.each(w.expr.match.bool.source.match(/\w+/g),function(e,t){var n=ht[t]||w.find.attr;ht[t]=function(e,t,r){var i,o,a=t.toLowerCase();return r||(o=ht[a],ht[a]=i,i=null!=n(e,t,r)?a:null,ht[a]=o),i}});var gt=/^(?:input|select|textarea|button)$/i,yt=/^(?:a|area)$/i;w.fn.extend({prop:function(e,t){return z(this,w.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each(function(){delete this[w.propFix[e]||e]})}}),w.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&w.isXMLDoc(e)||(t=w.propFix[t]||t,i=w.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=w.find.attr(e,"tabindex");return t?parseInt(t,10):gt.test(e.nodeName)||yt.test(e.nodeName)&&e.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),h.optSelected||(w.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),w.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){w.propFix[this.toLowerCase()]=this});function vt(e){return(e.match(M)||[]).join(" ")}function mt(e){return e.getAttribute&&e.getAttribute("class")||""}function xt(e){return Array.isArray(e)?e:"string"==typeof e?e.match(M)||[]:[]}w.fn.extend({addClass:function(e){var t,n,r,i,o,a,s,u=0;if(g(e))return this.each(function(t){w(this).addClass(e.call(this,t,mt(this)))});if((t=xt(e)).length)while(n=this[u++])if(i=mt(n),r=1===n.nodeType&&" "+vt(i)+" "){a=0;while(o=t[a++])r.indexOf(" "+o+" ")<0&&(r+=o+" ");i!==(s=vt(r))&&n.setAttribute("class",s)}return this},removeClass:function(e){var t,n,r,i,o,a,s,u=0;if(g(e))return this.each(function(t){w(this).removeClass(e.call(this,t,mt(this)))});if(!arguments.length)return this.attr("class","");if((t=xt(e)).length)while(n=this[u++])if(i=mt(n),r=1===n.nodeType&&" "+vt(i)+" "){a=0;while(o=t[a++])while(r.indexOf(" "+o+" ")>-1)r=r.replace(" "+o+" "," ");i!==(s=vt(r))&&n.setAttribute("class",s)}return this},toggleClass:function(e,t){var n=typeof e,r="string"===n||Array.isArray(e);return"boolean"==typeof t&&r?t?this.addClass(e):this.removeClass(e):g(e)?this.each(function(n){w(this).toggleClass(e.call(this,n,mt(this),t),t)}):this.each(function(){var t,i,o,a;if(r){i=0,o=w(this),a=xt(e);while(t=a[i++])o.hasClass(t)?o.removeClass(t):o.addClass(t)}else void 0!==e&&"boolean"!==n||((t=mt(this))&&J.set(this,"__className__",t),this.setAttribute&&this.setAttribute("class",t||!1===e?"":J.get(this,"__className__")||""))})},hasClass:function(e){var t,n,r=0;t=" "+e+" ";while(n=this[r++])if(1===n.nodeType&&(" "+vt(mt(n))+" ").indexOf(t)>-1)return!0;return!1}});var bt=/\r/g;w.fn.extend({val:function(e){var t,n,r,i=this[0];{if(arguments.length)return r=g(e),this.each(function(n){var i;1===this.nodeType&&(null==(i=r?e.call(this,n,w(this).val()):e)?i="":"number"==typeof i?i+="":Array.isArray(i)&&(i=w.map(i,function(e){return null==e?"":e+""})),(t=w.valHooks[this.type]||w.valHooks[this.nodeName.toLowerCase()])&&"set"in t&&void 0!==t.set(this,i,"value")||(this.value=i))});if(i)return(t=w.valHooks[i.type]||w.valHooks[i.nodeName.toLowerCase()])&&"get"in t&&void 0!==(n=t.get(i,"value"))?n:"string"==typeof(n=i.value)?n.replace(bt,""):null==n?"":n}}}),w.extend({valHooks:{option:{get:function(e){var t=w.find.attr(e,"value");return null!=t?t:vt(w.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a="select-one"===e.type,s=a?null:[],u=a?o+1:i.length;for(r=o<0?u:a?o:0;r-1)&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),w.each(["radio","checkbox"],function(){w.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=w.inArray(w(e).val(),t)>-1}},h.checkOn||(w.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})}),h.focusin="onfocusin"in e;var wt=/^(?:focusinfocus|focusoutblur)$/,Tt=function(e){e.stopPropagation()};w.extend(w.event,{trigger:function(t,n,i,o){var a,s,u,l,c,p,d,h,v=[i||r],m=f.call(t,"type")?t.type:t,x=f.call(t,"namespace")?t.namespace.split("."):[];if(s=h=u=i=i||r,3!==i.nodeType&&8!==i.nodeType&&!wt.test(m+w.event.triggered)&&(m.indexOf(".")>-1&&(m=(x=m.split(".")).shift(),x.sort()),c=m.indexOf(":")<0&&"on"+m,t=t[w.expando]?t:new w.Event(m,"object"==typeof t&&t),t.isTrigger=o?2:3,t.namespace=x.join("."),t.rnamespace=t.namespace?new RegExp("(^|\\.)"+x.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,t.result=void 0,t.target||(t.target=i),n=null==n?[t]:w.makeArray(n,[t]),d=w.event.special[m]||{},o||!d.trigger||!1!==d.trigger.apply(i,n))){if(!o&&!d.noBubble&&!y(i)){for(l=d.delegateType||m,wt.test(l+m)||(s=s.parentNode);s;s=s.parentNode)v.push(s),u=s;u===(i.ownerDocument||r)&&v.push(u.defaultView||u.parentWindow||e)}a=0;while((s=v[a++])&&!t.isPropagationStopped())h=s,t.type=a>1?l:d.bindType||m,(p=(J.get(s,"events")||{})[t.type]&&J.get(s,"handle"))&&p.apply(s,n),(p=c&&s[c])&&p.apply&&Y(s)&&(t.result=p.apply(s,n),!1===t.result&&t.preventDefault());return t.type=m,o||t.isDefaultPrevented()||d._default&&!1!==d._default.apply(v.pop(),n)||!Y(i)||c&&g(i[m])&&!y(i)&&((u=i[c])&&(i[c]=null),w.event.triggered=m,t.isPropagationStopped()&&h.addEventListener(m,Tt),i[m](),t.isPropagationStopped()&&h.removeEventListener(m,Tt),w.event.triggered=void 0,u&&(i[c]=u)),t.result}},simulate:function(e,t,n){var r=w.extend(new w.Event,n,{type:e,isSimulated:!0});w.event.trigger(r,null,t)}}),w.fn.extend({trigger:function(e,t){return this.each(function(){w.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return w.event.trigger(e,t,n,!0)}}),h.focusin||w.each({focus:"focusin",blur:"focusout"},function(e,t){var n=function(e){w.event.simulate(t,e.target,w.event.fix(e))};w.event.special[t]={setup:function(){var r=this.ownerDocument||this,i=J.access(r,t);i||r.addEventListener(e,n,!0),J.access(r,t,(i||0)+1)},teardown:function(){var r=this.ownerDocument||this,i=J.access(r,t)-1;i?J.access(r,t,i):(r.removeEventListener(e,n,!0),J.remove(r,t))}}});var Ct=e.location,Et=Date.now(),kt=/\?/;w.parseXML=function(t){var n;if(!t||"string"!=typeof t)return null;try{n=(new e.DOMParser).parseFromString(t,"text/xml")}catch(e){n=void 0}return n&&!n.getElementsByTagName("parsererror").length||w.error("Invalid XML: "+t),n};var St=/\[\]$/,Dt=/\r?\n/g,Nt=/^(?:submit|button|image|reset|file)$/i,At=/^(?:input|select|textarea|keygen)/i;function jt(e,t,n,r){var i;if(Array.isArray(t))w.each(t,function(t,i){n||St.test(e)?r(e,i):jt(e+"["+("object"==typeof i&&null!=i?t:"")+"]",i,n,r)});else if(n||"object"!==x(t))r(e,t);else for(i in t)jt(e+"["+i+"]",t[i],n,r)}w.param=function(e,t){var n,r=[],i=function(e,t){var n=g(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(Array.isArray(e)||e.jquery&&!w.isPlainObject(e))w.each(e,function(){i(this.name,this.value)});else for(n in e)jt(n,e[n],t,i);return r.join("&")},w.fn.extend({serialize:function(){return w.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=w.prop(this,"elements");return e?w.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!w(this).is(":disabled")&&At.test(this.nodeName)&&!Nt.test(e)&&(this.checked||!pe.test(e))}).map(function(e,t){var n=w(this).val();return null==n?null:Array.isArray(n)?w.map(n,function(e){return{name:t.name,value:e.replace(Dt,"\r\n")}}):{name:t.name,value:n.replace(Dt,"\r\n")}}).get()}});var qt=/%20/g,Lt=/#.*$/,Ht=/([?&])_=[^&]*/,Ot=/^(.*?):[ \t]*([^\r\n]*)$/gm,Pt=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Mt=/^(?:GET|HEAD)$/,Rt=/^\/\//,It={},Wt={},$t="*/".concat("*"),Bt=r.createElement("a");Bt.href=Ct.href;function Ft(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(M)||[];if(g(n))while(r=o[i++])"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function _t(e,t,n,r){var i={},o=e===Wt;function a(s){var u;return i[s]=!0,w.each(e[s]||[],function(e,s){var l=s(t,n,r);return"string"!=typeof l||o||i[l]?o?!(u=l):void 0:(t.dataTypes.unshift(l),a(l),!1)}),u}return a(t.dataTypes[0])||!i["*"]&&a("*")}function zt(e,t){var n,r,i=w.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&w.extend(!0,e,r),e}function Xt(e,t,n){var r,i,o,a,s=e.contents,u=e.dataTypes;while("*"===u[0])u.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(i in s)if(s[i]&&s[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+" "+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&&u.unshift(o),n[o]}function Ut(e,t,n,r){var i,o,a,s,u,l={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)l[a.toLowerCase()]=e.converters[a];o=c.shift();while(o)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if("*"===o)o=u;else if("*"!==u&&u!==o){if(!(a=l[u+" "+o]||l["* "+o]))for(i in l)if((s=i.split(" "))[1]===o&&(a=l[u+" "+s[0]]||l["* "+s[0]])){!0===a?a=l[i]:!0!==l[i]&&(o=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&&e["throws"])t=a(t);else try{t=a(t)}catch(e){return{state:"parsererror",error:a?e:"No conversion from "+u+" to "+o}}}return{state:"success",data:t}}w.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Ct.href,type:"GET",isLocal:Pt.test(Ct.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":$t,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":w.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?zt(zt(e,w.ajaxSettings),t):zt(w.ajaxSettings,e)},ajaxPrefilter:Ft(It),ajaxTransport:Ft(Wt),ajax:function(t,n){"object"==typeof t&&(n=t,t=void 0),n=n||{};var i,o,a,s,u,l,c,f,p,d,h=w.ajaxSetup({},n),g=h.context||h,y=h.context&&(g.nodeType||g.jquery)?w(g):w.event,v=w.Deferred(),m=w.Callbacks("once memory"),x=h.statusCode||{},b={},T={},C="canceled",E={readyState:0,getResponseHeader:function(e){var t;if(c){if(!s){s={};while(t=Ot.exec(a))s[t[1].toLowerCase()]=t[2]}t=s[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return c?a:null},setRequestHeader:function(e,t){return null==c&&(e=T[e.toLowerCase()]=T[e.toLowerCase()]||e,b[e]=t),this},overrideMimeType:function(e){return null==c&&(h.mimeType=e),this},statusCode:function(e){var t;if(e)if(c)E.always(e[E.status]);else for(t in e)x[t]=[x[t],e[t]];return this},abort:function(e){var t=e||C;return i&&i.abort(t),k(0,t),this}};if(v.promise(E),h.url=((t||h.url||Ct.href)+"").replace(Rt,Ct.protocol+"//"),h.type=n.method||n.type||h.method||h.type,h.dataTypes=(h.dataType||"*").toLowerCase().match(M)||[""],null==h.crossDomain){l=r.createElement("a");try{l.href=h.url,l.href=l.href,h.crossDomain=Bt.protocol+"//"+Bt.host!=l.protocol+"//"+l.host}catch(e){h.crossDomain=!0}}if(h.data&&h.processData&&"string"!=typeof h.data&&(h.data=w.param(h.data,h.traditional)),_t(It,h,n,E),c)return E;(f=w.event&&h.global)&&0==w.active++&&w.event.trigger("ajaxStart"),h.type=h.type.toUpperCase(),h.hasContent=!Mt.test(h.type),o=h.url.replace(Lt,""),h.hasContent?h.data&&h.processData&&0===(h.contentType||"").indexOf("application/x-www-form-urlencoded")&&(h.data=h.data.replace(qt,"+")):(d=h.url.slice(o.length),h.data&&(h.processData||"string"==typeof h.data)&&(o+=(kt.test(o)?"&":"?")+h.data,delete h.data),!1===h.cache&&(o=o.replace(Ht,"$1"),d=(kt.test(o)?"&":"?")+"_="+Et+++d),h.url=o+d),h.ifModified&&(w.lastModified[o]&&E.setRequestHeader("If-Modified-Since",w.lastModified[o]),w.etag[o]&&E.setRequestHeader("If-None-Match",w.etag[o])),(h.data&&h.hasContent&&!1!==h.contentType||n.contentType)&&E.setRequestHeader("Content-Type",h.contentType),E.setRequestHeader("Accept",h.dataTypes[0]&&h.accepts[h.dataTypes[0]]?h.accepts[h.dataTypes[0]]+("*"!==h.dataTypes[0]?", "+$t+"; q=0.01":""):h.accepts["*"]);for(p in h.headers)E.setRequestHeader(p,h.headers[p]);if(h.beforeSend&&(!1===h.beforeSend.call(g,E,h)||c))return E.abort();if(C="abort",m.add(h.complete),E.done(h.success),E.fail(h.error),i=_t(Wt,h,n,E)){if(E.readyState=1,f&&y.trigger("ajaxSend",[E,h]),c)return E;h.async&&h.timeout>0&&(u=e.setTimeout(function(){E.abort("timeout")},h.timeout));try{c=!1,i.send(b,k)}catch(e){if(c)throw e;k(-1,e)}}else k(-1,"No Transport");function k(t,n,r,s){var l,p,d,b,T,C=n;c||(c=!0,u&&e.clearTimeout(u),i=void 0,a=s||"",E.readyState=t>0?4:0,l=t>=200&&t<300||304===t,r&&(b=Xt(h,E,r)),b=Ut(h,b,E,l),l?(h.ifModified&&((T=E.getResponseHeader("Last-Modified"))&&(w.lastModified[o]=T),(T=E.getResponseHeader("etag"))&&(w.etag[o]=T)),204===t||"HEAD"===h.type?C="nocontent":304===t?C="notmodified":(C=b.state,p=b.data,l=!(d=b.error))):(d=C,!t&&C||(C="error",t<0&&(t=0))),E.status=t,E.statusText=(n||C)+"",l?v.resolveWith(g,[p,C,E]):v.rejectWith(g,[E,C,d]),E.statusCode(x),x=void 0,f&&y.trigger(l?"ajaxSuccess":"ajaxError",[E,h,l?p:d]),m.fireWith(g,[E,C]),f&&(y.trigger("ajaxComplete",[E,h]),--w.active||w.event.trigger("ajaxStop")))}return E},getJSON:function(e,t,n){return w.get(e,t,n,"json")},getScript:function(e,t){return w.get(e,void 0,t,"script")}}),w.each(["get","post"],function(e,t){w[t]=function(e,n,r,i){return g(n)&&(i=i||r,r=n,n=void 0),w.ajax(w.extend({url:e,type:t,dataType:i,data:n,success:r},w.isPlainObject(e)&&e))}}),w._evalUrl=function(e){return w.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,"throws":!0})},w.fn.extend({wrapAll:function(e){var t;return this[0]&&(g(e)&&(e=e.call(this[0])),t=w(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstElementChild)e=e.firstElementChild;return e}).append(this)),this},wrapInner:function(e){return g(e)?this.each(function(t){w(this).wrapInner(e.call(this,t))}):this.each(function(){var t=w(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=g(e);return this.each(function(n){w(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(e){return this.parent(e).not("body").each(function(){w(this).replaceWith(this.childNodes)}),this}}),w.expr.pseudos.hidden=function(e){return!w.expr.pseudos.visible(e)},w.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},w.ajaxSettings.xhr=function(){try{return new e.XMLHttpRequest}catch(e){}};var Vt={0:200,1223:204},Gt=w.ajaxSettings.xhr();h.cors=!!Gt&&"withCredentials"in Gt,h.ajax=Gt=!!Gt,w.ajaxTransport(function(t){var n,r;if(h.cors||Gt&&!t.crossDomain)return{send:function(i,o){var a,s=t.xhr();if(s.open(t.type,t.url,t.async,t.username,t.password),t.xhrFields)for(a in t.xhrFields)s[a]=t.xhrFields[a];t.mimeType&&s.overrideMimeType&&s.overrideMimeType(t.mimeType),t.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest");for(a in i)s.setRequestHeader(a,i[a]);n=function(e){return function(){n&&(n=r=s.onload=s.onerror=s.onabort=s.ontimeout=s.onreadystatechange=null,"abort"===e?s.abort():"error"===e?"number"!=typeof s.status?o(0,"error"):o(s.status,s.statusText):o(Vt[s.status]||s.status,s.statusText,"text"!==(s.responseType||"text")||"string"!=typeof s.responseText?{binary:s.response}:{text:s.responseText},s.getAllResponseHeaders()))}},s.onload=n(),r=s.onerror=s.ontimeout=n("error"),void 0!==s.onabort?s.onabort=r:s.onreadystatechange=function(){4===s.readyState&&e.setTimeout(function(){n&&r()})},n=n("abort");try{s.send(t.hasContent&&t.data||null)}catch(e){if(n)throw e}},abort:function(){n&&n()}}}),w.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),w.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return w.globalEval(e),e}}}),w.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),w.ajaxTransport("script",function(e){if(e.crossDomain){var t,n;return{send:function(i,o){t=w(" +need('includes/footer.php'); ?> \ No newline at end of file diff --git a/post.php b/post.php new file mode 100644 index 0000000..e6c7f7a --- /dev/null +++ b/post.php @@ -0,0 +1,79 @@ +need('includes/header.php'); +?> +
    +
    +
    +
    +
    +
    title() ?>
    +
    | commentsNum); ?>
    +
    +
    +
    + +
    + +
    author(); ?>
    +
    date(lang('post', 'time')); ?>
    +
    + + + + + + + + + + +
      + +
    +
    +
    + +
    + +
    + content); ?> +
    + +
    +
    +need('includes/comments.php'); ?> +
    +
    +
    +
    + +
    + arrow_back + '.lang('post', 'prev').' +
    '.lang('post', 'prevNo').'
    +
    +
    '); ?> + +
    + arrow_forward + '.lang('post', 'next').' +
    '.lang('post', 'nextNo').'
    +
    +
    '); ?> +
    +
    +
    + +need('includes/footer.php'); ?> \ No newline at end of file diff --git a/random/readme.txt b/random/readme.txt new file mode 100644 index 0000000..48744b7 --- /dev/null +++ b/random/readme.txt @@ -0,0 +1,7 @@ +뽫JPEGʽ(.jpg)ͼƬļС +ͼƬ⣬ɰšĵȡ +ļΪ(ûκͼƬ)ͼѡ local ʱᱨ + +Please put a picture in JPEG format (.jpg) into this folder. +The name of the picture is arbitrary, but it cannot contain special symbols, Chinese, etc. +This folder is not allowed to be empty (that is, there are no images), otherwise an error will be reported when the cover image selects LOCAL. \ No newline at end of file