(function(){
  var add_video, adjust_layout, caption, close_video, close_work_lightbox, hide_caption, home_section, init_faq, init_home, init_logo, init_who_scroll, init_work_lightbox, init_work_tooltip, lb_page, lb_pages, lightbox_caption, lightbox_go, lightbox_next, lightbox_open, lightbox_postflight, lightbox_prev, lightbox_show, open_work_lightbox, shapes, show_brands, show_hello, show_rules, splash;
  $(function() {
    $('#splash, ul.work-list li.description').lock();
    splash();
    $(window).resize(adjust_layout);
    adjust_layout();
    $('#who-container .who-copy').size() ? init_who_scroll() : null;
    if ($('#work-present, #work-past').size()) {
      init_work_tooltip();
      init_work_lightbox();
      $('li.description span').remarry();
    }
    $('#crest').size() ? init_home() : null;
    return $('#faq-player').size() ? init_faq() : null;
  });
  $(window).load(function() {
    return adjust_layout();
  });
  splash = function splash() {
    var el, source;
    if (source = $(".splash-source:last").attr('href')) {
      if (/\.(?:jpe?g|png|gif)$/i.test(source)) {
        return $('<img />', {
          src: source
        }).appendTo('#splash-content');
      } else if (/\.(?:flv|f4v)$/i.test(source)) {
        el = $('<div class="splash-video" />').appendTo('#splash-content');
        return el.media({
          src: "/media/swf/player_no_controls.swf",
          bgColor: 'transparent',
          height: 960,
          width: 1280,
          flashvars: {
            filepath: source
          },
          attrs: {
            id: 'splash-video'
          }
        });
      }
    }
  };
  adjust_layout = function adjust_layout() {
    var con, dh, wh;
    con = $('#container');
    con[0].natural_margin = con[0].natural_margin || con.css('margin-top');
    con[0].natural_top = con[0].natural_top || con.css('top');
    $(window).height() < 665 ? con.css({
      top: 32,
      marginTop: 0
    }) : con.css({
      top: con[0].natural_top,
      marginTop: con[0].natural_margin
    });
    dh = $(document).height();
    wh = $(window).height();
    return $('#splash').css({
      height: dh > wh ? dh : '100%'
    });
  };
  $.fn.scrollbar = function scrollbar(opts) {
    return this.each(function(n, item) {
      var cbks, down, drag_off, draggin, handle, kore, max_pos, move, pos, trck_off, up, update, val;
      kore = $(item);
      handle = kore.find('.handle:first').css({
        position: 'absolute',
        top: 0
      });
      cbks = opts;
      draggin = false;
      drag_off = 0;
      val = 0;
      pos = 0;
      max_pos = kore.height() - handle.height();
      trck_off = 0;
      down = function down(e) {
        e.preventDefault();
        draggin = true;
        trck_off = kore.offset().top;
        drag_off = e.pageY - trck_off - pos;
        if (cbks.start && typeof cbks.start === 'function') {
          return cbks.start(e);
        }
      };
      move = function move(e) {
        var nu_val;
        if (!(draggin)) {
          return true;
        }
        e.preventDefault();
        pos = e.pageY - trck_off - drag_off;
        pos = (function() {
          if (pos < 0) {
            return 0;
          } else if (pos > max_pos) {
            return max_pos;
          } else {
            return pos;
          }
        })();
        nu_val = pos / max_pos;
        val = nu_val;
        return update(e);
      };
      up = function up(e) {
        if (!(draggin)) {
          return true;
        }
        e.preventDefault();
        draggin = false;
        if (cbks.end && typeof cbks.end === 'function') {
          return cbks.end(e);
        }
      };
      update = function update(e) {
        handle.css({
          top: pos
        });
        if (cbks.move && typeof cbks.move === 'function') {
          return cbks.move(e, val);
        }
      };
      item.scroll = function scroll(delta) {
        val += delta;
        val = (function() {
          if (val < 0) {
            return 0;
          } else if (val > 1) {
            return 1;
          } else {
            return val;
          }
        })();
        pos = val * max_pos;
        return update();
      };
      $(document).mousemove(move).mouseup(up);
      return handle.mousedown(down);
    });
  };
  $.fn.lock = function lock() {
    return this.mousedown(function(e) {
      e.preventDefault();
      return false;
    });
  };
  $.fn.remarry = function remarry() {
    return this.each(function() {
      return $(this).html($(this).html().replace(/[\n\r\s]+([^\n\r\s(?:&#160;)]+[\n\r\s]*)$/m, '&#160;$1'));
    });
  };
  init_who_scroll = function init_who_scroll() {
    var con_ht, content, copy, copy_ht, d, diff, old_sk_val, pos, scroll, scrollbar, sk_val, slide_copy, target;
    copy = $('#who-container .who-copy');
    copy_ht = copy[0].scrollHeight;
    con_ht = copy.outerHeight();
    diff = (d = copy_ht - con_ht) && d > 0 ? d : 0;
    content = copy.find('.who-copy-inner');
    sk_val = old_sk_val = pos = target = 0;
    scroll = function scroll(e, v) {
      return sk_val = v;
    };
    slide_copy = setInterval(function() {
      var jump;
      if (sk_val === old_sk_val && pos === target) {
        return true;
      }
      target = sk_val * diff;
      jump = (target - pos) / 6;
      if (Math.abs(jump) > 8) {
        jump *= 8 / Math.abs(jump);
      }
      pos += jump;
      pos = (function() {
        if (pos < 0) {
          return 0;
        } else if (pos > diff) {
          return diff;
        } else {
          return pos;
        }
      })();
      if (Math.abs(pos - target) < 0.1) {
        pos = target;
      }
      content.css({
        marginTop: -pos
      });
      return old_sk_val = sk_val;
    }, 30);
    scrollbar = $('#who-container .who-scroll').scrollbar({
      move: scroll
    });
    $('#who-container .who-copy').mousewheel(function(e, d) {
      return scrollbar[0].scroll(-d / 10);
    });
    return content.remarry();
  };
  init_work_tooltip = function init_work_tooltip() {
    var flip_tip, hide_tip, info, last_proj, measure, really_hide_tip, show_tip, swap_info, tip, tip_bg, tip_flipped, tip_kv, tip_shape, tip_timer;
    tip = $('<div class="work-tooltip" />').appendTo('body');
    info = {
      a: $('<div class="info info-a" />').appendTo(tip),
      b: $('<div class="info info-b" />').appendTo(tip),
      c: $('<div class="info info-c" />').appendTo(tip)
    };
    tip_bg = $('<div class="tip-bg" />').appendTo(tip);
    tip_kv = Raphael(tip_bg[0], 344, 130);
    tip_shape = tip_kv.path(shapes.tooltip).attr({
      fill: '#000',
      stroke: null,
      'stroke-width': 0
    });
    measure = $('<div class="tooltip-measurer" />').appendTo('body');
    tip_flipped = false;
    flip_tip = function flip_tip(up) {
      up = up || true;
      tip_shape.rotate(180);
      tip_flipped = up;
      return tip.toggleClass('flipped');
    };
    $(document).mousemove(function(e) {
      var tw, wh, ww, x, y;
      tw = tip.width();
      x = e.pageX - (tw / 2);
      y = e.pageY + 15;
      ww = $(window).width();
      wh = $(window).height();
      x = (function() {
        if (x < 0) {
          return 0;
        } else if (x > (ww - tw)) {
          return (ww - tw);
        } else {
          return x;
        }
      })();
      if (y > wh - 145) {
        y = y - 150;
        if (!tip_flipped) {
          flip_tip(true);
        }
      } else if (tip_flipped) {
        flip_tip(false);
        tip_flipped = false;
      }
      return tip.css({
        left: parseInt(x),
        top: parseInt(y)
      });
    });
    last_proj = false;
    swap_info = function swap_info(a, b, c) {
      var el, natural_width;
      if (typeof a !== 'string' && last_proj === a) {
        return true;
      }
      if (typeof a !== 'string') {
        el = $(a);
        a = el.find('h3').text();
        b = el.find('h4').text();
        c = el.find('h5').text();
      }
      measure.html(a + '<br />' + b + '<br />' + c);
      natural_width = measure.outerWidth();
      tip.css({
        width: natural_width + 60
      });
      info.a.text(a);
      info.b.text(b);
      info.c.text(c);
      tip_shape.attr({
        fill: '#ed2090'
      }).animate({
        fill: '#ed2090'
      }, 160, '>', function() {
        return tip_shape.animate({
          fill: '#000'
        }, 580, '>');
      });
      return last_proj = a;
    };
    tip_timer = 0;
    hide_tip = function hide_tip() {
      return tip_timer = setTimeout(really_hide_tip, 60);
    };
    really_hide_tip = function really_hide_tip() {
      return tip.fadeOut(92);
    };
    show_tip = function show_tip() {
      clearTimeout(tip_timer);
      if (!(lightbox_open)) {
        return tip.fadeIn(92);
      }
    };
    return $('.work-list .work-item').each(function(i, tem) {
      return $(this).hover((function() {
        swap_info(tem);
        return show_tip();
      }), (function() {
        return hide_tip();
      }));
    });
  };
  lightbox_open = false;
  init_work_lightbox = function init_work_lightbox() {
    var close, lb, lb_bg, lb_inner, lb_kv, lb_shape, next, prev, showcase, thumbs;
    lb = $('<div id="work-lightbox" />').appendTo('#content');
    lb_bg = $('<div />').appendTo(lb);
    lb_kv = Raphael(lb_bg[0], 900, 440);
    lb_shape = lb_kv.path(shapes.lightbox).attr({
      fill: '#000',
      stroke: null,
      'stroke-width': 0
    });
    lb_inner = $('<div id="work-lightbox-inner" />').appendTo(lb);
    showcase = $('<div class="showcase" />').appendTo(lb);
    thumbs = $('<div class="thumbs-holder" />').appendTo(lb);
    close = $('<div class="work-close" />').appendTo(lb).click(close_work_lightbox);
    next = $('<a href="#" class="nav-arrow arrow-next" />').appendTo(lb).click(lightbox_next).hide();
    prev = $('<a href="#" class="nav-arrow arrow-prev" />').appendTo(lb).click(lightbox_prev).hide();
    $('.work-item a').click(function(e) {
      e.preventDefault();
      return open_work_lightbox(this);
    });
    $(document).keyup(function(e) {
      if (e.keyCode === 27) {
        close_work_lightbox();
      }
      if (e.keyCode === 39) {
        lightbox_next();
      }
      if (e.keyCode === 37) {
        return lightbox_prev();
      }
    });
    $('<div id="work-lightbox-backdrop" />').appendTo('#content').mousedown(close_work_lightbox);
    return $('#splash').mousedown(close_work_lightbox);
  };
  open_work_lightbox = function open_work_lightbox(src) {
    src = typeof src === 'string' ? src : $(src).attr('href');
    if (!(src)) {
      return false;
    }
    $('#work-lightbox .thumbs-holder, #work-lightbox .showcase').empty();
    $('#work-lightbox-inner').empty().load(src, lightbox_postflight);
    $('#work-lightbox').fadeIn(496);
    $('#work-present, #work-past').filter(':visible').animate({
      opacity: 0.55
    });
    $('#work-lightbox-backdrop').show();
    return lightbox_open = true;
  };
  close_work_lightbox = function close_work_lightbox(e) {
    if (e) {
      e.preventDefault();
    }
    if (!(lightbox_open)) {
      return true;
    }
    $('#work-lightbox').fadeOut(496);
    $('#work-present, #work-past').filter(':visible').animate({
      opacity: 1
    });
    $('#work-lightbox-backdrop').hide();
    return lightbox_open = false;
  };
  lb_page = 0;
  lb_pages = 0;
  lightbox_postflight = function lightbox_postflight() {
    var holder, thumbs;
    holder = $('#work-lightbox .thumbs-holder').empty();
    thumbs = $('#work-lightbox ul.thumbs').remove().appendTo(holder).find('li');
    thumbs.each(function(n) {
      $(this).css({
        left: (105 * n)
      }).click(function(e) {
        e.preventDefault();
        return lightbox_show(n, this);
      });
      return $(this).hover((function() {
        $(this).addClass('hover');
        return lightbox_caption($(this));
      }), (function() {
        $(this).removeClass('hover');
        return lightbox_caption();
      }));
    });
    $('#work-lightbox .nav-arrow').hide();
    if (thumbs.size() > 8) {
      $('#work-lightbox .arrow-next').show();
    }
    lb_page = 0;
    lb_pages = Math.ceil(thumbs.size() / 4) - 1;
    lightbox_show(0);
    return lightbox_caption($('#work-lightbox ul.thumbs li:first'));
  };
  lightbox_prev = function lightbox_prev(e) {
    return lightbox_go(e, -1);
  };
  lightbox_next = function lightbox_next(e) {
    return lightbox_go(e);
  };
  lightbox_go = function lightbox_go(e, dir) {
    var cap, thumbs;
    if (e) {
      e.preventDefault();
    }
    if (!(lightbox_open)) {
      return false;
    }
    thumbs = $('#work-lightbox .thumbs-holder ul.thumbs');
    lb_page += (dir || 1);
    if (lb_page >= lb_pages) {
      lb_page = lb_pages;
      $('#work-lightbox .arrow-next').hide();
    } else if (lb_page <= 0) {
      lb_page = 0;
      $('#work-lightbox .arrow-prev').hide();
    } else {
      $('#work-lightbox .arrow-prev').show();
      $('#work-lightbox .arrow-next').show();
    }
    cap = $('#thumb-caption').fadeOut();
    return thumbs.animate({
      left: -420 * lb_page
    }, function() {
      // if $('#work-lightbox ul.thumbs li.selected').position().left >= (420 * lb_page)
      Math.abs($('#work-lightbox ul.thumbs li.selected').position().left - 420 * lb_page) > 740 ? cap.fadeIn() : null;
      return lightbox_caption();
    });
  };
  caption = null;
  lightbox_caption = function lightbox_caption(el) {
    var left, text, thumb, width;
    thumb = el || $('#work-lightbox ul.thumbs li.selected');
    text = thumb.find('.caption').text();
    caption = $('#work-lightbox #thumb-caption');
    console.log(Math.abs(thumb.position().left - 420 * lb_page));
    if (Math.abs(thumb.position().left - 420 * lb_page) > 740) {
      return caption.hide();
    } else {
      caption.show();
    }
    caption.text(text).show();
    width = caption.width();
    left = thumb.offset().left - $('#work-lightbox').offset().left + 52 - width / 2;
    left = (function() {
      if (left < 10) {
        return 10;
      } else if (left > (890 - width)) {
        return (890 - width);
      } else {
        return left;
      }
    })();
    return caption.css({
      left: left
    });
  };
  hide_caption = function hide_caption() {
    return (caption || $('#thumb-caption')).hide();
  };
  lightbox_show = function lightbox_show(num, el) {
    var holder, img, media, showcase, thumb;
    thumb = $(el || '#work-lightbox .thumbs-holder ul.thumbs li:eq(' + num + ')');
    if (!(thumb && thumb.size())) {
      return true;
    }
    thumb.addClass('selected').siblings().removeClass('selected');
    media = thumb.find('a.media').attr('href');
    img = $('<img class="preview" />').attr('src', thumb.find('a.image').attr('href'));
    $('#work-lightbox .showcase').empty().append(img);
    if (media) {
      showcase = $('#work-lightbox .showcase');
      holder = $('<div class="video-holder" />').appendTo(showcase);
      img.addClass('has-media');
      img.click(function() {
        return add_video(media);
      });
      return $('<div class="play-button" />').click(function() {
        return add_video(media);
      }).appendTo(showcase);
    }
  };
  window.close_work_video = close_video = function close_video() {
    var showcase;
    showcase = $('#work-lightbox .showcase');
    showcase.find('.video-holder').empty().hide();
    return showcase.find('img.preview, .play-button').show();
  };
  add_video = function add_video(url, el, ops) {
    var o, showcase;
    showcase = $('#work-lightbox .showcase');
    o = $.extend({
      width: 380,
      height: 300,
      id: 'video-player'
    }, ops);
    showcase.find('img.preview, .play-button').hide();
    return showcase.find('.video-holder').media({
      src: "/media/swf/player.swf",
      bgColor: 'transparent',
      height: o.height,
      width: o.width,
      flashvars: {
        filepath: url
      }
    });
  };
  home_section = '#crest';
  init_logo = function init_logo() {
    var change_color, color_time, colors, last_n, logo, n, offset, paper, total;
    paper = Raphael($("#crest")[0], 426, 374);
    // paper: Raphael($("#crest")[0], 1920, 1200)
    logo = paper.path(shapes.crest).attr({
      fill: '#000',
      stroke: null,
      'stroke-width': 0
    });
    colors = ['#000', '#49a1e1', '#d83b91', '#4f432c'];
    last_n = 0;
    n = 0;
    total = $('#crest').width() + $('#crest').height();
    offset = $('#crest').offset();
    $('#crest').mousemove(function(e) {
      var pos;
      pos = (e.pageX - offset.left) + (e.pageY - offset.top);
      return n = Math.round(Math.abs(pos / total) * colors.length * 6) % colors.length;
    });
    change_color = function change_color() {
      // logo.animate({ fill:colors[n] }, 66) unless last_n is n
      if (!(last_n === n)) {
        logo.attr({
          fill: colors[n]
        });
      }
      return last_n = n;
    };
    return color_time = setInterval(change_color, 33);
    // $('#crest').hover((=> $('#splash-video')[0].show_cursor() ), (=> $('#splash-video')[0].hide_cursor() ))
  };
  show_hello = function show_hello(e) {
    if (e) {
      e.preventDefault();
    }
    $(home_section).fadeOut(294, function() {
      return $('#hello, h1#logo, ul#nav, #footer').fadeIn(496);
    });
    return home_section = '#hello';
  };
  show_rules = function show_rules(e) {
    if (e) {
      e.preventDefault();
    }
    $(home_section).fadeOut(294, function() {
      return $('#hello-rules').fadeIn(294);
    });
    return home_section = '#hello-rules';
  };
  show_brands = function show_brands(e) {
    if (e) {
      e.preventDefault();
    }
    $(home_section).fadeOut(294, function() {
      return $('#hello-brands').fadeIn(294);
    });
    home_section = '#hello-brands';
    return $('#brands-list li').each(function(i, tem) {
      return setTimeout(function() {
        return $.browser.msie ? $(tem).show() : $(tem).animate({
          opacity: 1
        }, 620 + i * 10);
      }, 76 * i + 460);
    });
  };
  init_home = function init_home() {
    if (/hello/.test(window.location.hash)) {
      $('#hello, h1#logo, ul#nav, #footer').show();
      home_section = '#hello';
    } else {
      init_logo();
      $('#crest').click(show_hello);
    }
    $('.subnav-rules-brands .subnav-rules').click(show_rules);
    $('.subnav-rules-brands .subnav-brands').click(show_brands);
    return $('.nav-muhtayzik-dunbar a').click(function(e) {
      e.preventDefault();
      window.location = '/#hello';
      return window.location.reload();
    });
  };
  init_faq = function init_faq() {
    var clips;
    clips = [];
    $('.clips-list a').each(function() {
      return clips.push($(this).attr('href'));
    });
    return $('#faq-player .player').media({
      src: "/media/swf/faq.swf",
      bgColor: 'transparent',
      height: 100,
      width: 137,
      flashvars: {
        clips: clips.join('////////')
      }
    });
  };
  shapes = {
    tooltip: "M0,52 L0,128.5 344,128.5 344,52.5 178,52.5 172,0 166,52.5",
    lightbox: "M6,0.5h888c3.313,0,6,2.687,6,6v428c0,3.313-2.687,6-6,6H6c-3.313,0-6-2.687-6-6V6.5 C0,3.187,2.687,0.5,6,0.5z",
    crest: "M215.469,188.376c0,3.73-0.393,6.968-4.858,6.968h-2.454v-23.405h2.454c4.415,0,4.858,3.289,4.858,6.968   	V188.376z M337.407,235.648c0-1.064-1.539-15.934-1.927-16.994c-0.384-1.061-2.117-4.957-2.644-7.436   	c-0.524-2.479-6.021-8.238-6.984-10.618c-0.963-2.384-5.2-5.843-5.778-7.965c-0.577-2.124-0.387-3.542-1.157-4.602   	c-0.769-1.064-2.311-1.242-2.311-1.242c-3.658-0.354-4.044,1.949-6.932,1.771c-2.889-0.178-5.202-1.061-6.74-1.241   	c-1.541-0.175-3.274,3.009-3.274,4.602c0,1.594,1.156,3.556,0.192,4.603c-0.963,1.043-8.859,4.78-14.444,7.965   	c-5.584,3.185-9.821,9.913-11.169,10.089c-1.347,0.176-3.66-0.357-4.237,0.354c-0.577,0.707-0.647,2.138-1.733,3.009   	c-0.533,0.427-0.908,0.89-1.171,1.268c2.051,1.288,4.919,3.079,8.436,4.799c-0.019-0.179-0.054-0.354-0.054-0.536   	c0-2.873,2.36-5.2,5.271-5.2c2.91,0,5.27,2.328,5.27,5.2c0,1.382-0.553,2.625-1.441,3.556c3.521,0.651,6.6,0.844,6.6,0.844   	s3.084-2.055,6.167-0.263c3.084,1.788,3.844,5.417,8.003,5.834c4.157,0.416,6.842-0.544,7.689-4.042   	c0.946-3.913-1.207-5.358-1.207-5.358s0.16,1.397-0.779,2.845c-0.758,1.168-2.094,2.248-4.853,1.642   	c-3.067-0.672-3.846-3.727-3.552-6.271c0.321-2.789,3.587-6.554,9.922-5.224c7.375,1.547,8.584,8.476,7.331,12.679   	c-1.517,5.089-6.592,7.224-6.592,7.224l1.604,0.587c0,0,4.669-2.779,7.24-1.455c4.233,2.185,4.424,5.949,8.716,7.692   	c0.951,0.383,1.957,0.612,2.975,0.77c0.529-0.878,1.636-2.739,2.211-3.758C336.83,239.41,337.407,236.708,337.407,235.648   	 M267.247,210.396c1.069-0.787,5.135-2.165,6.846-3.149c1.715-0.983,14.765-8.258,15.407-11.206   	c0.641-2.953-1.284-9.64-0.642-13.768c0.642-4.128-0.642-10.03,1.069-11.604c1.711-1.571,12.41-1.571,12.41-1.571   	s-15.192-9.639-19.041-16.717c-3.852-7.08-3.852-15.539-3.852-15.539s-10.271,1.573-11.129,3.541   	c-0.855,1.967-2.78,4.522-3.423,5.309c-0.642,0.787-2.995,3.538-2.995,3.538s-4.495,7.868-4.495,9.244   	c0,0.977,0.103,3.424-0.063,5.195v35.295c0,0,0.965,6.618-2.591,12.068c-1.103,1.687-2.836,3.299-4.705,4.72   	c0.463-0.043,0.927,0.72,1.588,0.671c2.01-0.15,0.866-2.432,3.887-2.299c1.691,0.073,4.385,1.197,6.848,2.433   	c0.641-0.314,1.256-0.671,1.67-1.048C265.319,214.328,266.176,211.18,267.247,210.396 M254.947,223.214   	c0.321-0.385-1.727-2.348-2.881-2.876c-1.156-0.528-2.636-0.413-2.579-0.927c0.057-0.51,1.341-0.396,1.473-1.32   	c0.121-0.834-1.402-1.516-1.289-2.065c-4.08,3.023-8.64,5.12-8.64,5.12l-4.931,1.814c1.709-0.234,3.474-0.427,5.329-0.578   	C247.401,221.902,254.628,223.602,254.947,223.214 M257.339,94.643v55.072c0.098-0.23,0.215-0.476,0.279-0.68   	c0.855-2.751,1.924-6.684,2.566-7.864c0.642-1.18,3.424-2.558,4.493-4.328c1.072-1.77,2.569-3.54,6.42-6.688   	c3.854-3.146,5.352-3.933,5.565-4.917c0.213-0.982,0-7.473-0.642-8.258c-0.642-0.787-8.987-11.014-9.845-12.194   	c-0.856-1.18-7.702-9.44-8.558-10.033C257.577,94.726,257.458,94.686,257.339,94.643 M228.689,128.146l-2.307-2.307l-71.309,71.308   	l2.308,2.309L228.689,128.146z M220.522,189.8v-12.269c0-6.523-2.601-10.253-9.421-10.253h-7.998v32.724h7.998   	C217.872,200.002,220.522,196.274,220.522,189.8 M215.196,230.654l-25.157,9.263v0.021l-0.027-0.01l-0.005,0.003v0.007l-0.011-0.003   	l-0.01,0.003v-0.007l-0.005-0.003l-0.028,0.01v-0.021l-25.157-9.263c2.34,1.641,4.65,3.562,6.988,5.891   	c5.305,5.28,7.623,11.131,8.542,16.184c3.479,13.746-4.011,27.103-11.629,34.417c-7.036,6.758-9.262,13.836-4.171,18.319   	c5.422,4.633,9.907-1.397,9.907-1.397s-4.797-0.971-5.736-3.125c-0.938-2.159,0.835-4.525,3.129-3.989   	c2.293,0.54,3.611,3.612,10.531,5.28c2.397,0.577,4.631,0.871,7.638,0.881c3.008-0.01,5.242-0.304,7.639-0.881   	c6.92-1.668,8.236-4.739,10.532-5.28c2.294-0.536,4.066,1.831,3.127,3.989c-0.938,2.155-5.734,3.125-5.734,3.125   	s4.484,6.03,9.908,1.397c5.089-4.483,2.866-11.562-4.172-18.319c-7.616-7.314-15.107-20.672-11.628-34.417   	c0.92-5.053,3.236-10.904,8.542-16.184C210.546,234.217,212.856,232.295,215.196,230.654 M161.194,158.473v-24.041l5.642,24.041   	h2.796l5.741-24.041v24.041h4.807v-32.724h-7.311l-4.561,20.557l-4.514-20.557h-7.408v32.724H161.194z M143.891,222.961l-4.93-1.813   	c0,0-4.56-2.099-8.64-5.12c0.114,0.55-1.413,1.232-1.291,2.065c0.134,0.924,1.417,0.811,1.475,1.32   	c0.059,0.515-1.422,0.399-2.578,0.927c-1.155,0.528-3.202,2.492-2.883,2.876c0.321,0.388,7.548-1.312,13.515-0.83   	C140.416,222.534,142.18,222.727,143.891,222.961 M128.361,216.422c0.66,0.049,1.123-0.714,1.587-0.671   	c-1.869-1.421-3.603-3.031-4.705-4.72c-3.555-5.45-2.59-12.068-2.59-12.068V163.67c-0.167-1.771-0.065-4.218-0.065-5.195   	c0-1.376-4.494-9.244-4.494-9.244s-2.353-2.751-2.995-3.538s-2.567-3.342-3.424-5.309c-0.855-1.968-11.126-3.541-11.126-3.541   	s0,8.457-3.851,15.539c-3.853,7.08-19.043,16.717-19.043,16.717s10.697,0,12.411,1.571c1.711,1.574,0.427,7.475,1.069,11.604   	s-1.284,10.817-0.642,13.768c0.642,2.95,13.693,10.223,15.405,11.207c1.713,0.984,5.777,2.362,6.848,3.149   	c1.069,0.784,1.925,3.933,3.209,5.112c0.414,0.378,1.03,0.734,1.67,1.047c2.459-1.235,5.154-2.359,6.847-2.432   	C127.494,213.992,126.349,216.273,128.361,216.422 M112.89,219.215c-0.261-0.378-0.637-0.841-1.171-1.268   	c-1.084-0.871-1.154-2.302-1.732-3.01c-0.579-0.71-2.89-0.177-4.237-0.354c-1.349-0.177-5.584-6.904-11.17-10.089   	c-5.584-3.185-13.479-6.922-14.442-7.965c-0.963-1.047,0.193-3.009,0.193-4.602c0-1.593-1.733-4.781-3.274-4.603   	c-1.54,0.18-3.851,1.064-6.741,1.242c-2.888,0.178-3.274-2.125-6.933-1.771c0,0-1.541,0.178-2.311,1.242   	c-0.771,1.061-0.578,2.478-1.155,4.603c-0.579,2.12-4.813,5.581-5.777,7.964c-0.963,2.379-6.46,8.14-6.985,10.618   	c-0.525,2.477-2.259,6.373-2.643,7.436c-0.386,1.061-1.926,15.93-1.926,16.994c0,1.06,0.577,3.762,1.348,5.13   	c0.575,1.021,1.684,2.883,2.209,3.758c1.02-0.157,2.027-0.388,2.977-0.77c4.291-1.742,4.481-5.507,8.715-7.691   	c2.571-1.324,7.24,1.454,7.24,1.454l1.605-0.587c0,0-5.076-2.135-6.595-7.224c-1.252-4.203-0.042-11.131,7.333-12.679   	c6.335-1.33,9.601,2.436,9.922,5.225c0.293,2.545-0.485,5.6-3.554,6.271c-2.759,0.606-4.094-0.474-4.852-1.642   	c-0.94-1.448-0.779-2.845-0.779-2.845s-2.154,1.444-1.208,5.356c0.847,3.499,3.533,4.459,7.69,4.043   	c4.155-0.417,4.917-4.046,8.001-5.834c3.083-1.791,6.168,0.263,6.168,0.263s3.08-0.192,6.601-0.843   	c-0.888-0.932-1.443-2.175-1.443-3.556c0-2.873,2.36-5.201,5.272-5.201c2.912,0,5.271,2.328,5.271,5.201   	c0,0.183-0.036,0.356-0.054,0.536C107.972,222.293,110.839,220.502,112.89,219.215 M103.332,125.237   	c0.214,0.984,1.711,1.771,5.564,4.916c3.851,3.148,5.349,4.918,6.417,6.688c1.071,1.77,3.853,3.148,4.495,4.328   	c0.641,1.18,1.711,5.113,2.567,7.864c0.062,0.203,0.179,0.451,0.278,0.679v-55.07c-0.12,0.043-0.238,0.083-0.278,0.109   	c-0.855,0.593-7.704,8.854-8.56,10.033c-0.855,1.178-9.2,11.406-9.842,12.193C103.332,117.764,103.118,124.255,103.332,125.237   	 M26.299,43.771c0,0-3.775-3.447-5.871-9.337c-1.487-4.189-1.262-8.646-1.262-8.646l-2.825,0.374c0,0-1.027,3.846,0.282,8.112   	c1.597,5.204,3.969,6.594,5.594,7.726C23.843,43.13,26.299,43.771,26.299,43.771 M353.693,43.771c0,0,2.456-0.641,4.083-1.773   	c1.625-1.132,3.996-2.523,5.591-7.726c1.312-4.266,0.284-8.112,0.284-8.112l-2.826-0.374c0,0,0.229,4.457-1.261,8.646   	C357.47,40.324,353.693,43.771,353.693,43.771 M357.972,257.032c0,0,2.906,2.859,1.04,6.601c-1.867,3.741-6.01,2.961-6.954,1.141   	c-0.979-1.882,0.208-4.09,2.079-4.242c1.983-0.164,2.592,1.131,2.592,1.131s0.316-1.155-0.275-2.268   	c-0.755-1.417-2.297-2.254-5.886-1.725c-3.59,0.531-4.541,3.139-9.101,3.139c-4.558,0-8.045-1.851-10.859-5.424   	c-2.816-3.572-8.28-5.941-12.57-6.998c-4.29-1.057-6.448-0.483-6.711,0.486c-0.282,1.037,0.812,2.744,5.396,3.366   	c4.522,0.616,7.97,0.97,9.86,3.671c1.719,2.456,1.132,6.093-2.295,7.292c-2.907,1.018-6.032-0.046-6.529-3.293   	c-0.454-2.964,2.092-4.157,2.092-4.157s-2.668-0.153-6.038-0.986c-4.705-1.168-13.072-5.931-16.983-4.233   	c-2.039,0.885-2.659,3.108-0.678,4.856c1.486,1.312,4.151,0.977,4.288,1.711c0.138,0.735-6.097,2.188-11.862,0.47   	c-5.765-1.719-7.63-9.726-7.63-9.726s-1.201,5.568-6.252,7.846c-4.666,2.104-8.125,0.179-8.619-2.439   	c-0.509-2.712,2.377-4.993,4.521-4.595c2.148,0.396,3.572,3.022,3.572,3.022s2.914-1.794,2.743-4.949   	c-0.148-2.741-1.878-4.452-5.352-3.909c-2.758,0.43-6.272,0.812-8.127-0.794c-1.687-1.458-0.887-6.838-2.412-9.257   	c-1.147-1.812-3.22-1.587-3.754-0.132c-0.538,1.455,1.877,2.516,1.877,5.291c0,2.779-1.341,3.969-1.341,3.969   	s-0.679-3.969-3.352-4.893c-2.669-0.927-2.814,1.455-5.229,1.455s-3.888-3.521-3.888-3.521s-1.072,2.331-4.558,2.331   	c-2.962,0-6.078-3.629-11.053-3.632c-3.911,0.5-13.899,3.226-19.57,12.01c-5.138,7.725-6.872,18.568-0.308,30.072   	c2.865,5.26,7.685,10.789,12.612,11.48c1.146,0.161,2.684,0.094,3.357,0.007c6.24-0.827,5.426-6.17,5.426-6.17   	s1.087,0.728,1.044,2.457c-0.034,1.331-0.298,2.149-0.298,2.149s1.956-2.615,4.609-4.386c2.657-1.77,4.086-0.376,3.962,1.302   	c-0.07,0.977-0.418,1.981-0.418,1.981s2.705-2.025,4.134-1.005c1.095,0.78,0.895,2.555-0.173,3.927   	c3.679-1.478,6.778-4.129,8.872-7.521c1.629-3.688,1.31-7.992-2.158-8.198c-3.65-0.214-2.398,4.202-2.398,4.202   	s-1.656-0.797-2.225-2.61c-0.632-2.025,0.408-5.014,3.038-5.61c4.078-0.924,5.468,2.544,5.468,2.544s0.554-4.892-2.44-9.692   	c-3.315-5.31-6.473-6.328-8.352-6.652c-1.877-0.323-4.042,2.732-6.44,2.195c-2.398-0.54-3.129-2.373-4.483-3.339   	c-1.356-0.97-3.964-0.021-5.009,0.626c-1.04,0.648-6.124,3.227-5.602,10.124c0.521,6.897,6.871,10.396,10.611,9.83   	c3.687-0.291,3.943-2.849,3.943-2.849s-2.157,0.393-3.423-0.924c-1.18-1.224-1.716-3.888,0.106-5.603   	c2.343-2.205,9.05-1.315,8.825,5.47c-0.127,5.603-4.154,8.164-10.152,8.388c-3.212,0.12-6.973-1.177-9.939-3.716   	c-0.029-0.024-0.062-0.046-0.091-0.073c-0.688-0.598-1.323-1.268-1.904-1.998c-0.032-0.042-0.066-0.081-0.099-0.12   	c-0.515-0.664-0.974-1.382-1.378-2.148c-0.103-0.189-0.195-0.381-0.29-0.577c-0.219-0.466-0.409-0.952-0.581-1.455   	c-0.801-2.177-1.188-4.556-0.925-7.041c0.201-1.911,0.774-3.679,1.592-5.291c0.008-0.02,0.02-0.036,0.028-0.059   	c0.166-0.322,0.35-0.63,0.534-0.941c0.179-0.336,0.359-0.675,0.561-0.984l-0.007-0.09c0.056-0.077,0.121-0.146,0.181-0.217   	c0.715-1.04,1.571-1.932,2.529-2.719c4-3.566,9.475-5.35,14.933-5.35c13.217,0,23.935,11.054,23.935,24.689   	c0,1.89-0.227,3.722-0.615,5.49c-0.738,4.816-2.847,9.55-6.942,13.326c-10.54,10.204-26.27,5.794-27.873,5.306   	c0.727,0.238,4.205,1.558,6.527,5.883c2.607,4.851,0.627,8.081,0.627,8.081s-0.419-2.908-2.087-4.633   	c-1.67-1.725-4.691-0.97-4.691-0.97s1.042,1.725,1.042,4.42c0,2.691-2.397,5.064-2.397,5.064s0.208-2.803-0.625-5.17   	c-0.835-2.372-2.92-3.45-2.92-3.45s-0.312,1.938-1.458,3.556c-1.147,1.613-4.117,4.994-9.934,4.309   	c-5.513-0.65-8.11-5.574-8.11-5.574s-2.601,0.399-5.312,1.693c-2.71,1.295-4.646,3.692-4.34,5.872c0.32,2.258,2.008,4.577,4.5,3.366   	c0.998-0.487,1.177-1.53,0.921-2.299c-0.199-0.605-0.767-1.011-0.767-1.011s1.278-0.931,2.813,0.423   	c0.939,0.827,1.198,2.202,0.886,3.395l0.042,0.006c-0.042,0.127-0.13,0.228-0.181,0.35c-0.071,0.186-0.112,0.385-0.215,0.554   	l0.008,0.003c-0.036,0.059-0.082,0.113-0.121,0.171c-0.037,0.053-0.065,0.109-0.104,0.16c-0.018,0.024-0.041,0.042-0.06,0.067   	c0,0.003-0.002,0.003-0.003,0.003c-0.48,0.69-1.137,1.211-1.887,1.596c-0.031,0.017-0.06,0.03-0.091,0.045   	c-0.323,0.158-0.648,0.291-1.004,0.378c-0.473,0.129-0.963,0.217-1.482,0.217c-2.036,0-3.807-1.091-4.799-2.715   	c-0.371-0.493-0.543-1.004-0.638-1.518c-0.043-0.167-0.043-0.347-0.074-0.521c-0.03,0.174-0.03,0.354-0.073,0.521   	c-0.095,0.514-0.266,1.025-0.641,1.518c-0.988,1.624-2.757,2.715-4.794,2.715c-0.518,0-1.01-0.087-1.482-0.217   	c-0.357-0.087-0.682-0.22-1.004-0.378c-0.031-0.017-0.062-0.031-0.091-0.045c-0.75-0.385-1.408-0.903-1.887-1.596   	c-0.002,0-0.003,0-0.003-0.003c-0.019-0.024-0.042-0.043-0.06-0.067c-0.041-0.049-0.068-0.106-0.104-0.16   	c-0.04-0.057-0.086-0.109-0.124-0.171l0.01-0.003c-0.103-0.171-0.145-0.368-0.215-0.554c-0.051-0.123-0.14-0.223-0.181-0.35   	l0.041-0.006c-0.312-1.193-0.052-2.568,0.885-3.395c1.539-1.354,2.816-0.423,2.816-0.423s-0.567,0.406-0.768,1.011   	c-0.256,0.767-0.077,1.812,0.922,2.299c2.488,1.21,4.18-1.106,4.496-3.366c0.306-2.177-1.627-4.58-4.337-5.872   	c-2.712-1.294-5.312-1.693-5.312-1.693s-2.598,4.923-8.11,5.574c-5.817,0.684-8.788-2.695-9.934-4.309   	c-1.148-1.617-1.46-3.556-1.46-3.556s-2.085,1.078-2.92,3.45c-0.834,2.369-0.625,5.17-0.625,5.17s-2.399-2.373-2.399-5.064   	c0-2.695,1.044-4.42,1.044-4.42s-3.024-0.753-4.693,0.97c-1.668,1.723-2.085,4.633-2.085,4.633s-1.98-3.232,0.627-8.081   	c2.324-4.325,5.803-5.648,6.528-5.883c-1.605,0.487-17.333,4.896-27.875-5.306c-4.093-3.776-6.202-8.508-6.94-13.326   	c-0.39-1.768-0.615-3.598-0.615-5.49c0-13.635,10.716-24.689,23.934-24.689c5.458,0,10.935,1.784,14.933,5.35   	c0.96,0.787,1.815,1.678,2.531,2.719c0.06,0.07,0.125,0.14,0.179,0.217l-0.005,0.09c0.204,0.311,0.381,0.648,0.561,0.984   	c0.186,0.311,0.37,0.62,0.536,0.941c0.008,0.023,0.018,0.039,0.027,0.059c0.815,1.61,1.39,3.38,1.589,5.291   	c0.262,2.485-0.123,4.864-0.924,7.041c-0.17,0.503-0.362,0.987-0.581,1.455c-0.094,0.196-0.189,0.388-0.292,0.577   	c-0.401,0.766-0.861,1.484-1.377,2.148c-0.031,0.039-0.065,0.078-0.098,0.12c-0.582,0.73-1.216,1.4-1.904,1.998   	c-0.029,0.027-0.062,0.049-0.092,0.073c-2.964,2.538-6.725,3.836-9.937,3.716c-6-0.224-10.025-2.785-10.154-8.388   	c-0.225-6.785,6.482-7.675,8.827-5.47c1.82,1.714,1.284,4.378,0.104,5.603c-1.266,1.317-3.423,0.924-3.423,0.924   	s0.257,2.558,3.943,2.849c3.736,0.567,10.088-2.932,10.61-9.83c0.521-6.897-4.561-9.476-5.604-10.124   	c-1.042-0.647-3.649-1.598-5.005-0.626c-1.356,0.966-2.085,2.799-4.483,3.339c-2.399,0.536-4.564-2.52-6.441-2.195   	c-1.877,0.324-5.034,1.341-8.35,6.652c-2.995,4.8-2.44,9.692-2.44,9.692s1.39-3.468,5.467-2.544c2.632,0.598,3.671,3.586,3.04,5.61   	c-0.569,1.813-2.224,2.61-2.224,2.61s1.251-4.416-2.399-4.202c-3.468,0.207-3.786,4.51-2.157,8.198   	c2.092,3.392,5.192,6.044,8.873,7.521c-1.069-1.372-1.266-3.146-0.174-3.927c1.429-1.021,4.136,1.005,4.136,1.005   	s-0.349-1.005-0.42-1.981c-0.121-1.677,1.309-3.072,3.964-1.302c2.655,1.771,4.61,4.386,4.61,4.386s-0.266-0.818-0.298-2.149   	c-0.042-1.731,1.045-2.457,1.045-2.457s-0.815,5.343,5.426,6.17c0.671,0.087,2.211,0.153,3.357-0.007   	c4.926-0.69,9.748-6.221,12.61-11.48c6.566-11.504,4.831-22.348-0.306-30.072c-5.671-8.786-15.662-11.51-19.571-12.01   	c-4.977,0.003-8.089,3.632-11.053,3.632c-3.486,0-4.558-2.331-4.558-2.331s-1.475,3.521-3.888,3.521s-2.558-2.381-5.229-1.455   	c-2.671,0.924-3.352,4.893-3.352,4.893s-1.341-1.19-1.341-3.969c0-2.775,2.413-3.835,1.877-5.291s-2.608-1.68-3.754,0.132   	c-1.527,2.418-0.726,7.798-2.414,9.257c-1.854,1.604-5.368,1.224-8.126,0.794c-3.476-0.543-5.204,1.168-5.352,3.909   	c-0.171,3.156,2.745,4.949,2.745,4.949s1.424-2.625,3.569-3.022c2.146-0.396,5.032,1.885,4.522,4.595   	c-0.494,2.618-3.954,4.543-8.617,2.439c-5.053-2.278-6.252-7.846-6.252-7.846s-1.864,8.007-7.629,9.726   	c-5.766,1.718-12.001,0.263-11.864-0.47c0.138-0.734,2.802-0.399,4.289-1.711c1.98-1.747,1.361-3.972-0.678-4.856   	c-3.911-1.698-12.278,3.065-16.984,4.233c-3.371,0.833-6.036,0.986-6.036,0.986s2.542,1.191,2.09,4.157   	c-0.497,3.245-3.622,4.309-6.529,3.293c-3.427-1.197-4.013-4.836-2.295-7.292c1.891-2.702,5.339-3.055,9.863-3.671   	c4.584-0.621,5.676-2.328,5.396-3.366c-0.264-0.97-2.421-1.543-6.712-0.486c-4.291,1.057-9.753,3.425-12.57,6.998   	c-2.816,3.573-6.301,5.424-10.859,5.424c-4.56,0-5.513-2.608-9.101-3.139c-3.59-0.53-5.133,0.308-5.886,1.725   	c-0.591,1.113-0.275,2.268-0.275,2.268s0.608-1.295,2.591-1.131c1.871,0.153,3.056,2.362,2.078,4.242   	c-0.946,1.82-5.087,2.601-6.955-1.141c-1.867-3.742,1.042-6.601,1.042-6.601s-1.177-0.346-3.372-2.292   	c-2.491-2.208-3.436-7.631-0.758-11.143c2.734-3.593,7.168-4.587,11.191-3.525c4.021,1.057,3.826,4.349,3.536,5.767   	c-0.345,1.684-2.136,3.198-4.281,3.198c-2.146,0-2.95-1.455-2.95-1.455s-1.867,1.317-1.18,3.349   	c0.751,2.222,2.653,2.806,4.262,2.806c1.609,0,3.889-1.261,4.828-3.38c0.937-2.114,1.889-3.779,3.485-4.626   	c0.678-0.36,1.555-0.546,2.543-0.658c-1.046-0.913-2.147-1.414-2.876-1.891c-0.963-0.633,0.274-3.541,0.825-7.208   	c0.549-3.665,1.375-11.304,1.513-14.286c0.137-2.985-2.751-3.919-3.026-6.222c-0.274-2.301,2.063-3.261,2.477-4.02   	c0.412-0.759,0-2.782,0.961-4.238c0.963-1.46,1.926-5.876,2.065-7.318c0.137-1.441-3.578-5.007-5.228-8.378   	c-1.651-3.37-2.119-8.85-2.119-9.792c0-0.943-0.385-2.258-1.046-1.375c-0.659,0.885-2.474,1.964-5.777,0.381   	c-3.301-1.585-1.778-4.553-1.778-4.553s1.778,1.518,2.329,1.39c0.55-0.127,1.789-2.688,3.713-4.046   	c1.926-1.357,4.127-1.519,4.127-1.519s2.2-4.172,2.751-5.382c0.55-1.214,4.54-5.109,10.178-12.44   	c5.639-7.335,12.463-21.074,14.03-26.804c1.569-5.729,0.275-8.091-0.927-13.528c-1.2-5.438,1.203-8.976,1.203-8.976   	s0.038-4.449-1.468-9.013c-1.508-4.561-3.621-9.572-4.998-15.009c-1.374-5.437-0.963-10.366-0.963-11.125   	c0-0.76-0.961-0.759-0.961-1.646c0-0.884,0.55-1.878,0.55-1.878l0.137-2.294c0,0-3.383-0.125-7.015-2.148   	c-3.632-2.024-5.64-7.333-5.64-7.333s1.184,0.378,3.301,0.378c2.119,0,3.301-0.631,5.2-0.631c1.897,0,4.428,1.896,4.979,2.782   	c0.55,0.887,3.026-0.126,3.026-0.76c0-0.63,0.137-3.032-6.979-4.171c-7.116-1.137-12.692-0.251-15.855-0.886   	c-3.165-0.629-7.015-3.411-8.115-3.919c-1.102-0.504-8.941-2.782-12.619-6.74c-3.677-3.962-3.75-9.441-3.75-9.441   	s-3.696-0.126-6.879-2.783c-3.181-2.658-3.026-10.242-3.3-11.495C1.1,15.501,0,13.839,0,13.839s2.338,0.505,3.163,2.207   	c0.827,1.704-0.412,2.092,1.788,6.645c2.201,4.551,6.052,4.172,6.052,4.172s0.414-2.909,1.376-4.679   	c0.963-1.77,2.539-3.034,6.19-6.608C22.22,12,27.51,5.369,27.51,5.369s-1.926,7.08-4.539,9.229c-2.613,2.148-5.64,8.47-5.64,8.47   	s1.1-0.125,6.704-1.896c5.603-1.771,8.563-5.833,8.563-5.833s-0.686,3.938-4.125,6.59c-3.439,2.656-6.191,3.322-6.191,3.322   	s-0.686,6.795,2.651,13.115c3.339,6.321,10.556,9.103,14.27,8.977c3.712-0.127,3.437-2.909,3.301-4.931   	c-0.139-2.025-3.303-4.551-3.026-6.828c0.274-2.276-0.277-6.701-0.277-6.701s1.926,1.771,2.751,3.287   	c0.827,1.517-0.961,3.541,0.552,5.308c1.513,1.771,3.712,4.68,4.126,7.081c0.413,2.403,1.651,4.528,5.777,4.763   	c4.126,0.237,4.126-4.51,3.714-7.292c-0.413-2.782-2.614-7.812-2.614-7.812s4.403,2.503,5.641,6.844   	c1.238,4.341,0.275,9.205,0.275,9.695c0,0.486,2.888,3.159,3.438,3.919c0.551,0.756,2.889,0.251,5.366,0.251   	c2.476,0,6.189-3.414,6.877-4.543c0.688-1.131,0.139-3.422,0.688-6.455c0.55-3.036,5.226-8.218,7.015-12.011   	c1.789-3.793,1.65-6.433,1.65-6.433s1.788,2.514,0.963,5.296c-0.825,2.778-3.026,6.573-4.813,9.456   	c-1.789,2.882-0.689,8.969-0.689,8.969l2.063-0.601c0,0,0.552-3.414,3.301-8.252c2.751-4.838,9.767-7.933,11.418-10.208   	c1.649-2.274,2.063-3.665,2.063-3.665s0.549,3.286-0.139,4.931c-0.686,1.644-3.438,2.218-7.701,6.194   	c-4.265,3.979-4.54,9.609-4.54,9.609s8.529-2.656,12.241-7.457c3.714-4.805,3.578-11.255,3.578-14.271   	c0-3.015-2.064-3.81-3.301-3.936c-1.238-0.127-2.477-2.907-3.852-4.173c-1.375-1.261-5.64-0.505-7.849-0.975   	c-2.21-0.473-4.256-3.577-4.256-3.577s4.641,1.012,6.466,1.138c1.824,0.126,3.989,0.126,6.052,1.611s7.152,2.435,7.152,2.435   	s-0.549-2.554-0.963-4.802c-0.411-2.25-2.613-3.769-4.822-6.954C94.617,3.068,97.597,0,97.597,0s0.128,1.827,1.026,4.105   	c0.9,2.275,3.303,3.539,5.228,5.941c1.926,2.403,2.348,8.217,2.348,8.217s2.879-1.625,3.704-4.3c0.825-2.671-0.963-6.32-0.963-6.32   	c0.645-0.71,4.528,4.364,3.084,8.482c-1.445,4.116-3.771,6.131-4.975,7.147c-1.204,1.017-1.204,2.658-1.284,4.369   	c-0.08,1.714-1.289,7.227-0.55,8.022c0.741,0.796,3.92-0.352,7.704-4.561c3.784-4.209,3.759-6.484,4.24-6.411   	c0.482,0.073,0.401,1.781-0.562,3.958c-0.963,2.177-5.215,7.217-7.085,8.946c-1.87,1.731-6.474,2.141-7.036,2.435   	c-0.561,0.293-1.204,2.804-4.093,4.869c-2.888,2.064-6.869,3.63-13.8,6.15c-6.931,2.521-7.462,3.88-7.944,4.29   	c-0.479,0.406-0.08,2.245,0,2.586c0.08,0.342,1.693-2.451,3.692-3.662c2-1.207,4.012-1.103,6.098-1.251   	c2.085-0.146,6.018-1.251,6.018-1.251s-1.451,7.965-5.937,9.807c-4.488,1.843-8.549,1.874-8.549,1.874s1.006,2.035,1.567,2.519   	c0.562,0.48,2.007,1.429,1.846,1.905c-0.16,0.476-1.043,0.272-1.685,0.416c-0.642,0.14-0.562,1.031-0.883,1.473   	c-0.321,0.44-1.926,3.761-2.487,4.351c-0.562,0.592,0.48,2.362,1.493,3.763c1.013,1.4,1.362,3.652,2.254,5.823   	c1.257,3.059,3.107,5.05,5.924,9.126c2.263,3.275,5.146,5.48,5.788,6.268s5.563,4.72,6.846,5.506   	c1.284,0.787,2.568,0.59,6.206-1.573c3.638-2.166,9.202-6.294,12.411-9.833c3.209-3.542,5.349-4.722,11.981-5.112   	c6.635-0.396,15.612-1.771,19.036-1.378c3.424,0.393,10.057,4.129,9.842,5.112c-0.213,0.984-2.78,1.181-2.78,1.181   	s1.283,1.767,0.427,2.36c-0.856,0.589-7.061-3.736-10.271-4.328c-0.536-0.097-1.538-0.068-2.799,0.039   	c1.971,2.268,3.098,5.81,4.034,7.139c1.474,2.092,5.197,1.986,5.197,1.986h38.046h0.033h0.021h0.032h38.046   	c0,0,3.723,0.106,5.197-1.986c0.934-1.327,2.063-4.871,4.033-7.139c-1.26-0.107-2.264-0.136-2.8-0.039   	c-3.211,0.591-9.415,4.917-10.271,4.328c-0.857-0.593,0.427-2.36,0.427-2.36s-2.567-0.197-2.782-1.181   	c-0.213-0.983,6.419-4.72,9.843-5.112c3.425-0.393,12.404,0.981,19.035,1.378c6.633,0.39,8.773,1.571,11.983,5.112   	c3.209,3.539,8.773,7.668,12.412,9.833c3.637,2.163,4.921,2.36,6.204,1.573c1.285-0.786,6.206-4.719,6.849-5.506   	c0.642-0.787,3.521-2.992,5.788-6.268c2.817-4.077,4.666-6.068,5.925-9.126c0.89-2.17,1.242-4.423,2.253-5.823   	c1.011-1.401,2.054-3.171,1.492-3.763c-0.562-0.589-2.165-3.909-2.486-4.351c-0.322-0.443-0.241-1.333-0.883-1.473   	c-0.642-0.144-1.527,0.06-1.686-0.416c-0.16-0.476,1.285-1.424,1.846-1.905c0.562-0.482,1.568-2.519,1.568-2.519   	s-4.061-0.031-8.549-1.874c-4.486-1.842-5.938-9.807-5.938-9.807s3.934,1.105,6.017,1.251c2.087,0.148,4.098,0.044,6.099,1.251   	c2,1.211,3.61,4.002,3.69,3.662c0.081-0.339,0.48-2.179,0-2.586c-0.481-0.409-1.012-1.77-7.943-4.29   	c-6.932-2.52-10.913-4.085-13.802-6.15c-2.888-2.065-3.528-4.576-4.092-4.869c-0.563-0.294-5.166-0.704-7.036-2.435   	c-1.871-1.73-6.124-6.769-7.085-8.946s-1.043-3.885-0.561-3.958c0.481-0.074,0.457,2.201,4.24,6.411   	c3.782,4.209,6.962,5.357,7.702,4.561c0.743-0.795-0.468-6.308-0.548-8.022c-0.08-1.711-0.08-3.352-1.284-4.369   	c-1.204-1.016-3.529-3.029-4.975-7.147c-1.445-4.118,2.438-9.192,3.084-8.482c0,0-1.788,3.649-0.961,6.32   	c0.825,2.673,3.704,4.3,3.704,4.3s0.421-5.814,2.348-8.217c1.925-2.401,4.327-3.665,5.227-5.941C282.268,1.827,282.395,0,282.395,0   	s2.98,3.068,0.771,6.254c-2.209,3.185-4.411,4.703-4.825,6.954c-0.411,2.249-0.959,4.802-0.959,4.802s5.088-0.951,7.153-2.435   	c2.064-1.484,4.228-1.484,6.052-1.611c1.825-0.126,6.465-1.138,6.465-1.138s-2.045,3.102-4.255,3.577   	c-2.209,0.469-6.474-0.287-7.849,0.975c-1.376,1.266-2.614,4.046-3.853,4.173c-1.24,0.124-3.303,0.919-3.303,3.936   	c0,3.018-0.135,9.466,3.578,14.271c3.714,4.801,12.243,7.457,12.243,7.457s-0.275-5.63-4.54-9.609   	c-4.264-3.976-7.015-4.55-7.703-6.194c-0.689-1.645-0.137-4.931-0.137-4.931s0.411,1.39,2.063,3.665   	c1.651,2.275,8.665,5.369,11.416,10.208c2.751,4.838,3.302,8.252,3.302,8.252l2.065,0.601c0,0,1.1-6.086-0.688-8.969   	c-1.788-2.883-3.989-6.678-4.814-9.456c-0.823-2.782,0.963-5.296,0.963-5.296s-0.138,2.64,1.649,6.433   	c1.789,3.793,6.466,8.976,7.015,12.011c0.549,3.032,0,5.324,0.688,6.455c0.686,1.129,4.4,4.543,6.876,4.543s4.814,0.505,5.364-0.251   	c0.551-0.761,3.44-3.433,3.44-3.919c0-0.49-0.963-5.354,0.275-9.695c1.238-4.341,5.639-6.844,5.639-6.844s-2.2,5.031-2.613,7.812   	c-0.413,2.783-0.413,7.528,3.715,7.292c4.126-0.235,5.365-2.36,5.777-4.763c0.412-2.401,2.613-5.309,4.125-7.081   	c1.515-1.767-0.273-3.792,0.551-5.308c0.826-1.516,2.75-3.287,2.75-3.287s-0.55,4.424-0.275,6.701   	c0.275,2.276-2.888,4.802-3.026,6.828c-0.135,2.022-0.41,4.802,3.303,4.931c3.714,0.126,10.929-2.656,14.268-8.977   	c3.337-6.32,2.65-13.115,2.65-13.115s-2.749-0.668-6.189-3.322c-3.44-2.653-4.126-6.59-4.126-6.59s2.96,4.062,8.565,5.833   	c5.605,1.771,6.703,1.896,6.703,1.896s-3.024-6.322-5.639-8.47c-2.614-2.15-4.539-9.229-4.539-9.229s5.29,6.631,8.94,10.207   	c3.649,3.574,5.228,4.838,6.19,6.608c0.961,1.77,1.375,4.679,1.375,4.679s3.853,0.379,6.053-4.172   	c2.201-4.553,0.963-4.941,1.788-6.645c0.826-1.701,3.166-2.208,3.166-2.208s-1.102,1.664-1.377,2.918   	c-0.275,1.253-0.117,8.839-3.303,11.495c-3.181,2.658-6.877,2.782-6.877,2.782s-0.073,5.479-3.748,9.441   	c-3.677,3.958-11.519,6.236-12.621,6.74c-1.1,0.507-4.95,3.29-8.115,3.919c-3.165,0.634-8.741-0.251-15.855,0.887   	c-7.116,1.137-6.979,3.541-6.979,4.17c0,0.634,2.477,1.647,3.026,0.761c0.55-0.887,3.081-2.783,4.98-2.783   	c1.898,0,3.081,0.632,5.2,0.632c2.118,0,3.301-0.378,3.301-0.378s-2.008,5.309-5.641,7.333c-3.63,2.023-7.013,2.148-7.013,2.148   	l0.137,2.294c0,0,0.55,0.993,0.55,1.878c0,0.888-0.961,0.888-0.961,1.647c0,0.758,0.411,5.688-0.961,11.125   	c-1.377,5.438-3.491,10.448-4.998,15.01c-1.506,4.562-1.468,9.012-1.468,9.012s2.402,3.538,1.201,8.976   	c-1.201,5.438-2.493,7.797-0.925,13.529c1.567,5.731,8.389,19.468,14.03,26.802c5.64,7.333,9.63,11.227,10.178,12.441   	c0.55,1.21,2.75,5.382,2.75,5.382s2.202,0.161,4.126,1.519c1.926,1.357,3.165,3.919,3.715,4.046c0.55,0.126,2.329-1.39,2.329-1.39   	s1.522,2.968-1.779,4.553c-3.301,1.584-5.117,0.503-5.777-0.381c-0.662-0.885-1.046,0.43-1.046,1.375   	c0,0.944-0.468,6.424-2.117,9.792c-1.652,3.373-5.364,6.937-5.228,8.378c0.139,1.442,1.1,5.858,2.063,7.318   	c0.961,1.458,0.551,3.479,0.961,4.238c0.414,0.757,2.751,1.718,2.477,4.021c-0.275,2.302-3.165,3.236-3.025,6.221   	c0.138,2.982,0.962,10.621,1.513,14.285c0.551,3.666,1.788,6.575,0.823,7.209c-0.729,0.476-1.829,0.977-2.878,1.89   	c0.991,0.109,1.865,0.298,2.545,0.658c1.595,0.847,2.546,2.512,3.486,4.626c0.939,2.117,3.217,3.379,4.827,3.379   	c1.607,0,3.511-0.584,4.263-2.806c0.684-2.03-1.18-3.349-1.18-3.349s-0.805,1.455-2.949,1.455c-2.146,0-3.938-1.515-4.283-3.199   	c-0.29-1.417-0.483-4.71,3.537-5.767c4.023-1.061,8.457-0.066,11.191,3.525c2.678,3.513,1.735,8.935-0.757,11.143   	C359.148,256.686,357.972,257.032,357.972,257.032"
  };
})();