diff --git a/.jshintrc b/.jshintrc
new file mode 100644
index 000000000..0cfd8a461
--- /dev/null
+++ b/.jshintrc
@@ -0,0 +1,11 @@
+{
+ "browser": true,
+ "jquery": true,
+ "devel": true,
+
+ "undef": true,
+ "unused": true,
+
+
+ "quotmark": "double"
+}
diff --git a/assets/static/alerts.js b/assets/static/alerts.js
index bb9d0c231..8f7570117 100644
--- a/assets/static/alerts.js
+++ b/assets/static/alerts.js
@@ -1,7 +1,12 @@
// jshint esversion: 6
-var Alerts = (function() {
+/* globals LRUMap */ // lru.js
+/* globals moment */ // moment.js
+/* globals Autocomplete, Colors, Config, Counter, Grid, Templates, Summary, UI, Unsee */
+
+/* exported Alerts */
+var Alerts = (function() {
var silences = {},
labelCache = new LRUMap(1000);
@@ -12,7 +17,7 @@ var Alerts = (function() {
}
Render() {
- return Templates.Render('alertGroup', {
+ return Templates.Render("alertGroup", {
group: this,
silences: silences,
static_color_label: Colors.GetStaticLabels(),
@@ -22,39 +27,37 @@ var Alerts = (function() {
// called after group was rendered for the first time
Added() {
- UI.SetupAlertGroupUI($('#' + this.id));
+ UI.SetupAlertGroupUI($("#" + this.id));
}
Update() {
// hide popovers in this group
- $('#' + this.id + ' [data-label-type="filter"]').popover('hide');
+ $("#" + this.id + " [data-label-type='filter']").popover("hide");
// remove all elements prior to content update to purge all event listeners and hooks
- $.each($('#' + this.id).find('.panel-body, .panel-heading'), function(i, elem) {
+ $.each($("#" + this.id).find(".panel-body, .panel-heading"), function(i, elem) {
$(elem).remove();
});
- $('#' + this.id).html($(this.Render()).html());
- $('#' + this.id).data('hash', this.hash);
+ $("#" + this.id).html($(this.Render()).html());
+ $("#" + this.id).data("hash", this.hash);
// pulse the badge to show that group content was changed, repeat it twice
- $('#' + this.id + ' > .panel > .panel-heading > .badge:in-viewport').finish().fadeOut(300).fadeIn(300).fadeOut(300).fadeIn(300);
+ $("#" + this.id + " > .panel > .panel-heading > .badge:in-viewport").finish().fadeOut(300).fadeIn(300).fadeOut(300).fadeIn(300);
}
}
-
- destroyGroup = function(groupID) {
- $('#' + groupID + ' [data-label-type="filter"]').popover('hide');
- $('#' + groupID + ' [data-toggle=tooltip]').tooltip('hide');
- $.each($('#' + groupID).find('.panel-body, .panel-heading'), function(i, elem) {
+ var destroyGroup = function(groupID) {
+ $("#" + groupID + " [data-label-type='filter']").popover("hide");
+ $("#" + groupID + " [data-toggle='tooltip']").tooltip("hide");
+ $.each($("#" + groupID).find(".panel-body, .panel-heading"), function(i, elem) {
$(elem).remove();
});
- Grid.Remove($('#' + groupID));
+ Grid.Remove($("#" + groupID));
};
-
- sortMapByKey = function(mapToSort) {
+ var sortMapByKey = function(mapToSort) {
var keys = Object.keys(mapToSort);
keys.sort();
var sorted = [];
@@ -62,51 +65,48 @@ var Alerts = (function() {
sorted.push({
key: key,
value: mapToSort[key],
- text: key + ': ' + mapToSort[key]
+ text: key + ": " + mapToSort[key]
});
});
return sorted;
};
-
- labelAttrs = function(key, value) {
- var label = key + ': ' + value;
+ var labelAttrs = function(key, value) {
+ var label = key + ": " + value;
var attrs = labelCache.get(label);
if (attrs !== undefined) return attrs;
attrs = {
text: label,
- class: 'label label-list ' + Colors.GetClass(key, value),
+ class: "label label-list " + Colors.GetClass(key, value),
style: Colors.Get(key, value)
};
labelCache.set(label, attrs);
return attrs;
};
-
- humanizeTimestamps = function() {
+ var humanizeTimestamps = function() {
var now = moment();
// change timestamp labels to be relative
- $.each($('.label-ts'), function(i, elem) {
- var ts = moment($(elem).data('ts'), moment.ISO_8601);
+ $.each($(".label-ts"), function(i, elem) {
+ var ts = moment($(elem).data("ts"), moment.ISO_8601);
var label = ts.fromNow();
- $(elem).find('.label-ts-span').text(label);
- $(elem).attr('data-ts-title', ts.toString());
- var ts_age = now.diff(ts, 'minutes');
+ $(elem).find(".label-ts-span").text(label);
+ $(elem).attr("data-ts-title", ts.toString());
+ var ts_age = now.diff(ts, "minutes");
if (ts_age < 3) {
- $(elem).addClass('recent-alert').find('.incident-indicator').removeClass('hidden');
+ $(elem).addClass("recent-alert").find(".incident-indicator").removeClass("hidden");
} else {
- $(elem).removeClass('recent-alert').find('.incident-indicator').addClass('hidden');
+ $(elem).removeClass("recent-alert").find(".incident-indicator").addClass("hidden");
}
});
// flash recent alerts
- $('.recent-alert:in-viewport').finish().fadeToggle(300).fadeToggle(300).fadeToggle(300).fadeToggle(300);
+ $(".recent-alert:in-viewport").finish().fadeToggle(300).fadeToggle(300).fadeToggle(300).fadeToggle(300);
};
-
- updateAlerts = function(apiResponse) {
+ var updateAlerts = function(apiResponse) {
var alertCount = 0;
var groups = {};
@@ -116,7 +116,7 @@ var Alerts = (function() {
var summaryData = {};
$.each(apiResponse.counters, function(label_key, counters){
$.each(counters, function(label_val, hits){
- summaryData[label_key + ': ' + label_val] = hits;
+ summaryData[label_key + ": " + label_val] = hits;
});
});
Summary.Update(summaryData);
@@ -164,7 +164,7 @@ var Alerts = (function() {
});
// append new groups in chunks
if (content.length > 0) {
- Grid.Append($(content.splice(0, 100).join('\n')));
+ Grid.Append($(content.splice(0, 100).join("\n")));
dirty = true;
}
@@ -178,14 +178,13 @@ var Alerts = (function() {
if (dirty) {
Autocomplete.Reset();
Grid.Redraw();
- if (Config.GetOption('flash').Get()) {
+ if (Config.GetOption("flash").Get()) {
Unsee.Flash();
}
}
};
-
return {
Update: updateAlerts,
SortMapByKey: sortMapByKey,
diff --git a/assets/static/autocomplete.js b/assets/static/autocomplete.js
index 834122dfe..ddaeb491a 100644
--- a/assets/static/autocomplete.js
+++ b/assets/static/autocomplete.js
@@ -1,54 +1,53 @@
-var Autocomplete = (function() {
+/* globals Bloodhound */ // typeahead.js
+/* exported Autocomplete */
+var Autocomplete = (function() {
var autocomplete;
-
- init = function() {
+ var init = function() {
autocomplete = new Bloodhound({
datumTokenizer: Bloodhound.tokenizers.whitespace,
queryTokenizer: Bloodhound.tokenizers.whitespace,
remote: {
- url: 'autocomplete.json?term=%QUERY',
- wildcard: '%QUERY',
- rateLimitBy: 'throttle',
+ url: "autocomplete.json?term=%QUERY",
+ wildcard: "%QUERY",
+ rateLimitBy: "throttle",
rateLimitWait: 300
},
sufficient: 12
});
};
- reset = function() {
+ var reset = function() {
autocomplete.clear();
};
-
- getAutocomplete = function() {
+ var getAutocomplete = function() {
return autocomplete;
};
-
// this is used to generate quick filters for label modal
- generateHints = function(label_key, label_val) {
+ var generateHints = function(label_key, label_val) {
var hints = [];
- if (label_key == '@silenced') {
+ if (label_key == "@silenced") {
// static list of hints for @silenced label
- hints.push('@silenced=true');
- hints.push('@silenced=false');
- } else if (label_key == '@inhibited') {
+ hints.push("@silenced=true");
+ hints.push("@silenced=false");
+ } else if (label_key == "@inhibited") {
// static list of hints for @inhibited label
- hints.push('@inhibited=true');
- hints.push('@inhibited=false');
+ hints.push("@inhibited=true");
+ hints.push("@inhibited=false");
} else {
// equal and non-equal hints for everything else
- hints.push(label_key + '=' + label_val);
- hints.push(label_key + '!=' + label_val);
+ hints.push(label_key + "=" + label_val);
+ hints.push(label_key + "!=" + label_val);
// if there's space in the label generate regexp hints for partials
- if (label_val.toString().indexOf(' ') >= 0) {
- $.each(label_val.toString().split(' '), function(l, label_part){
- hints.push(label_key + '=~' + label_part);
- hints.push(label_key + '!~' + label_part);
+ if (label_val.toString().indexOf(" ") >= 0) {
+ $.each(label_val.toString().split(" "), function(l, label_part){
+ hints.push(label_key + "=~" + label_part);
+ hints.push(label_key + "!~" + label_part);
});
}
@@ -56,15 +55,14 @@ var Autocomplete = (function() {
if ($.isNumeric(label_val)) {
var valAsNumber = parseInt(label_val);
if (!isNaN(valAsNumber)) {
- hints.push(label_key + '>' + label_val);
- hints.push(label_key + '<' + label_val);
+ hints.push(label_key + ">" + label_val);
+ hints.push(label_key + "<" + label_val);
}
}
}
return hints;
};
-
return {
Init: init,
Reset: reset,
diff --git a/assets/static/colors.js b/assets/static/colors.js
index eed43f965..cd0be3835 100644
--- a/assets/static/colors.js
+++ b/assets/static/colors.js
@@ -1,57 +1,53 @@
+/* exported Colors */
var Colors = (function() {
-
var colors,
staticColorLabels;
var specialLabels = {
- '@silenced: false': 'label-danger',
- '@silenced: true': 'label-success',
- '@inhibited: false': 'label-danger',
- '@inhibited: true': 'label-success'
+ "@silenced: false": "label-danger",
+ "@silenced: true": "label-success",
+ "@inhibited: false": "label-danger",
+ "@inhibited: true": "label-success"
};
-
- update = function(colorData) {
+ var update = function(colorData) {
colors = colorData;
};
-
- getClass = function(key, value) {
- var label = key + ': ' + value;
- if (key == 'alertname') {
- return 'label-primary'; // special case for alertname label, which is the name of alert
+ var getClass = function(key, value) {
+ var label = key + ": " + value;
+ if (key == "alertname") {
+ return "label-primary"; // special case for alertname label, which is the name of alert
} else if (specialLabels[label] !== undefined) {
return specialLabels[label];
} else if (Colors.IsStaticLabel(key)) {
- return 'label-info';
+ return "label-info";
} else {
- return 'label-warning';
+ return "label-warning";
}
};
-
- getStyle = function(key, value) {
+ var getStyle = function(key, value) {
// get color data, returned as css style string
var style = "";
if (colors[key] !== undefined && colors[key][value] !== undefined) {
var c = colors[key][value];
- style = 'background-color: rgba(' + [c.background.red, c.background.green, c.background.blue, c.background.alpha].join(', ') + '); ';
- style += 'color: rgba(' + [c.font.red, c.font.green, c.font.blue, c.font.alpha].join(', ') + '); ';
+ style = "background-color: rgba(" + [c.background.red, c.background.green, c.background.blue, c.background.alpha].join(", ") + "); ";
+ style += "color: rgba(" + [c.font.red, c.font.green, c.font.blue, c.font.alpha].join(", ") + "); ";
}
return style;
};
-
- getStaticLabels = function() {
- return $('#alerts').data('static-color-labels').split(' ');
+ var getStaticLabels = function() {
+ return $("#alerts").data("static-color-labels").split(" ");
};
- isStaticLabel = function(key) {
+ var isStaticLabel = function(key) {
return ($.inArray(key, Colors.GetStaticLabels()) >= 0);
};
- init = function(staticColors) {
+ var init = function(staticColors) {
staticColorLabels = staticColors;
};
diff --git a/assets/static/config.js b/assets/static/config.js
index 8e943695b..dcab6a4d6 100644
--- a/assets/static/config.js
+++ b/assets/static/config.js
@@ -1,7 +1,12 @@
// jshint esversion: 6
-var Option = (function(params) {
+/* globals Clipboard */ // clipboard.js
+/* globals Cookies */ // js.cookie.js
+/* globals Filters, Unsee, QueryString */
+
+/* exported ConfigOption */
+var ConfigOption = (function() {
class optionClass {
@@ -13,12 +18,12 @@ var Option = (function(params) {
return $(this.Selector).is(":checked");
};
this.Set = params.Setter || function(val) {
- $(this.Selector).bootstrapSwitch('state', $.parseJSON(val), true);
+ $(this.Selector).bootstrapSwitch("state", $.parseJSON(val), true);
};
- this.Action = params.Action || function(val) {};
+ this.Action = params.Action || function() {};
this.Init = params.Init || function() {
var elem = this;
- $(this.Selector).on('switchChange.bootstrapSwitch', function(event, val) {
+ $(this.Selector).on("switchChange.bootstrapSwitch", function(event, val) {
elem.Save(val);
elem.Action(val);
});
@@ -46,7 +51,7 @@ var Option = (function(params) {
Save(val) {
Cookies.set(this.Cookie, val, {
expires: 365,
- path: ''
+ path: ""
});
}
@@ -58,14 +63,12 @@ var Option = (function(params) {
}());
-
+/* exported Config */
var Config = (function() {
-
var options = {};
-
- loadFromCookies = function() {
+ var loadFromCookies = function() {
$.each(options, function(name, option) {
var value = option.Load();
if (value !== undefined) {
@@ -74,8 +77,7 @@ var Config = (function() {
});
};
-
- reset = function() {
+ var reset = function() {
// this is not part of options map
Cookies.remove("defaultFilter.v2");
$.each(options, function(name, option) {
@@ -83,48 +85,47 @@ var Config = (function() {
});
};
-
- init = function(params) {
+ var init = function(params) {
// copy current filter button action
new Clipboard(params.CopySelector, {
text: function(elem) {
- var baseUrl = [location.protocol, '//', location.host, location.pathname].join('');
- var query = ['q=' + Filters.GetFilters().join(',')];
+ var baseUrl = [location.protocol, "//", location.host, location.pathname].join("");
+ var query = ["q=" + Filters.GetFilters().join(",")];
$.each(options, function(name, option) {
- query.push(option.QueryParam + '=' + option.Get().toString());
+ query.push(option.QueryParam + "=" + option.Get().toString());
});
$(elem).finish().fadeOut(100).fadeIn(300);
- return baseUrl + '?' + query.join('&');
+ return baseUrl + "?" + query.join("&");
}
});
// save settings button action
- $(params.SaveSelector).on('click', function(elem) {
- var filter = Filters.GetFilters().join(',');
- Cookies.set('defaultFilter.v2', filter, {
+ $(params.SaveSelector).on("click", function() {
+ var filter = Filters.GetFilters().join(",");
+ Cookies.set("defaultFilter.v2", filter, {
expires: 365,
- path: ''
+ path: ""
});
$(params.SaveSelector).finish().fadeOut(100).fadeIn(300);
});
// reset settings button action
- $(params.ResetSelector).on('click', function(elem) {
+ $(params.ResetSelector).on("click", function() {
Config.Reset();
- QueryString.Remove('q');
+ QueryString.Remove("q");
location.reload();
});
// https://github.com/twbs/bootstrap/issues/2097
- $(document).on('click', '.dropdown-menu.dropdown-menu-form', function(e) {
+ $(document).on("click", ".dropdown-menu.dropdown-menu-form", function(e) {
e.stopPropagation();
});
Config.NewOption({
- Cookie: 'autoRefresh',
- QueryParam: 'autorefresh',
- Selector: '#autorefresh',
+ Cookie: "autoRefresh",
+ QueryParam: "autorefresh",
+ Selector: "#autorefresh",
Action: function(val) {
if (val) {
Unsee.WaitForNextReload();
@@ -135,12 +136,12 @@ var Config = (function() {
});
Config.NewOption({
- Cookie: 'refreshInterval',
- QueryParam: 'refresh',
- Selector: '#refresh-interval',
+ Cookie: "refreshInterval",
+ QueryParam: "refresh",
+ Selector: "#refresh-interval",
Init: function() {
var elem = this;
- $(this.Selector).on('change', function() {
+ $(this.Selector).on("change", function() {
var val = elem.Get();
elem.Save(val);
elem.Action(val);
@@ -159,32 +160,29 @@ var Config = (function() {
Config.NewOption({
- Cookie: 'showFlash',
- QueryParam: 'flash',
- Selector: '#show-flash'
+ Cookie: "showFlash",
+ QueryParam: "flash",
+ Selector: "#show-flash"
});
Config.NewOption({
- Cookie: 'appendTop',
- QueryParam: 'appendtop',
- Selector: '#append-top'
+ Cookie: "appendTop",
+ QueryParam: "appendtop",
+ Selector: "#append-top"
});
};
-
- newOption = function(params) {
- var option = new Option.New(params);
+ var newOption = function(params) {
+ var option = new ConfigOption.New(params);
option.Init();
options[option.QueryParam] = option;
};
-
- getOption = function(queryParam) {
+ var getOption = function(queryParam) {
return options[queryParam];
};
-
return {
Init: init,
Load: loadFromCookies,
diff --git a/assets/static/counter.js b/assets/static/counter.js
index a806ba8f0..96da45817 100644
--- a/assets/static/counter.js
+++ b/assets/static/counter.js
@@ -1,75 +1,68 @@
-var Counter = (function(params) {
+/* globals Favico */ // favico.js
+/* exported Counter */
+var Counter = (function() {
var selectors = {
- counter: '#alert-count',
- spinner: '#spinner'
+ counter: "#alert-count",
+ spinner: "#spinner"
};
-
var favicon = false;
-
- setCounter = function(val) {
+ var setCounter = function(val) {
favicon.badge(val);
Counter.Show();
$(selectors.counter).html(val);
// set alert count css based on the number of alerts
if (val === 0) {
- $(selectors.counter).removeClass('text-warning text-danger').addClass('text-success');
+ $(selectors.counter).removeClass("text-warning text-danger").addClass("text-success");
document.title = "(◕‿◕)";
} else if (val < 10) {
- $(selectors.counter).removeClass('text-success text-danger').addClass('text-warning');
+ $(selectors.counter).removeClass("text-success text-danger").addClass("text-warning");
document.title = "(◕_◕)";
} else {
- $(selectors.counter).removeClass('text-success text-warning').addClass('text-danger');
+ $(selectors.counter).removeClass("text-success text-warning").addClass("text-danger");
document.title = "(◕︵◕)";
}
};
-
- setUnknown = function() {
- favicon.badge('?');
+ var setUnknown = function() {
+ favicon.badge("?");
Counter.Show();
- $(selectors.counter).html('?');
- $(selectors.counter).removeClass('text-success text-warning text-danger');
+ $(selectors.counter).html("?");
+ $(selectors.counter).removeClass("text-success text-warning text-danger");
};
-
- hide = function() {
+ var hide = function() {
$(selectors.counter).hide();
- $(selectors.spinner).children().removeClass('spinner-success spinner-error');
+ $(selectors.spinner).children().removeClass("spinner-success spinner-error");
$(selectors.spinner).show();
};
-
- show = function() {
+ var show = function() {
$(selectors.spinner).hide();
$(selectors.counter).show();
};
-
- markError = function() {
- $(selectors.spinner).children().removeClass('spinner-success').addClass('spinner-error');
+ var markError = function() {
+ $(selectors.spinner).children().removeClass("spinner-success").addClass("spinner-error");
};
-
- markSuccess = function() {
- $(selectors.spinner).children().addClass('spinner-success');
+ var markSuccess = function() {
+ $(selectors.spinner).children().addClass("spinner-success");
};
-
- init = function() {
+ var init = function() {
favicon = new Favico({
- animation: 'none',
- position: 'up',
- bgColor: '#333',
- textColor: '#ff0'
+ animation: "none",
+ position: "up",
+ bgColor: "#333",
+ textColor: "#ff0"
});
Counter.Unknown();
};
-
return {
Init: init,
Set: setCounter,
diff --git a/assets/static/filters.js b/assets/static/filters.js
index 50be06729..6c13fe45d 100644
--- a/assets/static/filters.js
+++ b/assets/static/filters.js
@@ -1,143 +1,137 @@
+/* globals sha1 */ // sha1.js
+
+/* globals Autocomplete, Cookies, QueryString, Unsee */
+
+/* exported Filters */
var Filters = (function() {
-
- selectors = {
- filter: '#filter',
- icon: '#filter-icon'
+ var selectors = {
+ filter: "#filter",
+ icon: "#filter-icon"
};
-
- addBadge = function(text) {
- $.each($('span.tag'), function(i, tag) {
+ var addBadge = function(text) {
+ $.each($("span.tag"), function(i, tag) {
if ($(tag).text() == text) {
var chksum = sha1(text);
- $(tag).prepend('');
+ $(tag).prepend("");
}
});
};
-
- update = function() {
+ var update = function() {
Filters.Updating();
// update location so it's easy to share it
- QueryString.Set('q', Filters.GetFilters().join(','));
+ QueryString.Set("q", Filters.GetFilters().join(","));
// reload alerts
Unsee.Reload();
};
-
- init = function() {
+ var init = function() {
var initial_filter;
- if ($(selectors.filter).data('default-used') == 'false' || $(selectors.filter).data('default-used') === false) {
+ if ($(selectors.filter).data("default-used") == "false" || $(selectors.filter).data("default-used") === false) {
// user passed ?q=filter string
initial_filter = $(selectors.filter).val();
} else {
// no ?q=filter string, check if we have default filter cookie
- initial_filter = Cookies.get('defaultFilter.v2');
+ initial_filter = Cookies.get("defaultFilter.v2");
if (initial_filter === undefined) {
// no cookie, use global default
- initial_filter = $(selectors.filter).data('default-filter');
+ initial_filter = $(selectors.filter).data("default-filter");
}
}
- var initial_filter_arr = initial_filter.split(',');
- $(selectors.filter).val('');
- $('.filterbar :input').tagsinput({
+ var initial_filter_arr = initial_filter.split(",");
+ $(selectors.filter).val("");
+ $(".filterbar :input").tagsinput({
typeaheadjs: {
minLength: 1,
hint: true,
limit: 12,
- name: 'autocomplete',
+ name: "autocomplete",
source: Autocomplete.Autocomplete()
}
});
$.each(initial_filter_arr, function(i, filter) {
- $(selectors.filter).tagsinput('add', filter);
+ $(selectors.filter).tagsinput("add", filter);
addBadge(filter);
});
- $(selectors.filter).on('itemAdded itemRemoved', function(event) {
+ $(selectors.filter).on("itemAdded itemRemoved", function(event) {
Filters.SetFilters();
// add counter badge to new tag
- if (event.type == 'itemAdded') {
+ if (event.type == "itemAdded") {
addBadge(event.item);
}
});
- $(selectors.filter).tagsinput('focus');
+ $(selectors.filter).tagsinput("focus");
// stop when user is typing in the filter bar
- $('.bootstrap-tagsinput').typing({
- start: function(event, elem) {
+ $(".bootstrap-tagsinput").typing({
+ start: function(event) {
if (event.keyCode != 8 && event.keyCode != 13) Unsee.Pause();
},
- stop: function(event, elem) {
+ stop: function(event) {
if (event.keyCode != 8 && event.keyCode != 13) Unsee.WaitForNextReload();
},
delay: 1000
});
// fix body padding if needed, input might endup using more than 1 line
- $('.bootstrap-tagsinput').bind("DOMSubtreeModified", function() {
- $('body').css('padding-top', $('.navbar').height());
+ $(".bootstrap-tagsinput").bind("DOMSubtreeModified", function() {
+ $("body").css("padding-top", $(".navbar").height());
});
- $('input.tt-input').on("change keypress", function() {
- $('body').css('padding-top', $('.navbar').height());
+ $("input.tt-input").on("change keypress", function() {
+ $("body").css("padding-top", $(".navbar").height());
});
- $('.filterbar').on('resize', function(){
+ $(".filterbar").on("resize", function(){
// hack for fixing padding since input can grow and change height
- $('body').css('padding-top', $('.navbar').height());
+ $("body").css("padding-top", $(".navbar").height());
});
};
-
- getFilters = function() {
- return $(selectors.filter).tagsinput('items');
+ var getFilters = function() {
+ return $(selectors.filter).tagsinput("items");
};
-
- reloadBadges = function(filterData) {
+ var reloadBadges = function(filterData) {
$.each(filterData, function(i, filter) {
- $.each($('span.tag-badge'), function(j, tag) {
- if (sha1(filter.text) == $(tag).data('badge-id')) {
+ $.each($("span.tag-badge"), function(j, tag) {
+ if (sha1(filter.text) == $(tag).data("badge-id")) {
$(tag).html(filter.hits.toString());
if (filter.isValid === true) {
- $(tag).parent().addClass('label-info').removeClass('label-danger');
+ $(tag).parent().addClass("label-info").removeClass("label-danger");
} else {
- $(tag).parent().addClass('label-danger').removeClass('label-info');
+ $(tag).parent().addClass("label-danger").removeClass("label-info");
}
}
});
});
};
-
- addFilter = function(text) {
- $(selectors.filter).tagsinput('add', text);
+ var addFilter = function(text) {
+ $(selectors.filter).tagsinput("add", text);
};
-
- setUpdating = function() {
+ var setUpdating = function() {
// visual hint that alerts are reloaded due to filter change
- $(selectors.icon).removeClass('fa-search fa-pause').addClass('fa-circle-o-notch fa-spin');
+ $(selectors.icon).removeClass("fa-search fa-pause").addClass("fa-circle-o-notch fa-spin");
};
-
- updateDone = function() {
- $(selectors.icon).removeClass('fa-circle-o-notch fa-spin fa-pause').addClass('fa-search');
+ var updateDone = function() {
+ $(selectors.icon).removeClass("fa-circle-o-notch fa-spin fa-pause").addClass("fa-search");
};
-
- setPause = function() {
- $(selectors.icon).removeClass('fa-circle-o-notch fa-spin fa-search').addClass('fa-pause');
+ var setPause = function() {
+ $(selectors.icon).removeClass("fa-circle-o-notch fa-spin fa-search").addClass("fa-pause");
};
-
return {
Init: init,
AddFilter: addFilter,
@@ -149,5 +143,4 @@ var Filters = (function() {
Pause: setPause
};
-
}());
diff --git a/assets/static/grid.js b/assets/static/grid.js
index 0703dd3a6..65e033366 100644
--- a/assets/static/grid.js
+++ b/assets/static/grid.js
@@ -1,21 +1,22 @@
-var Grid = (function(params) {
+/* globals Config */
+/* exported Grid */
+var Grid = (function() {
var selectors = {
- alerts: '#alerts',
- incident: '.incident',
- gridSizer: '.grid-sizer',
+ alerts: "#alerts",
+ incident: ".incident",
+ gridSizer: ".grid-sizer",
};
var grid;
-
- init = function() {
+ var init = function() {
grid = $(selectors.alerts).masonry({
itemSelector: selectors.incident,
columnWidth: selectors.gridSizer,
percentPosition: true,
- transitionDuration: '0.4s',
+ transitionDuration: "0.4s",
hiddenStyle: {
opacity: 0
},
@@ -25,46 +26,38 @@ var Grid = (function(params) {
});
};
-
- clear = function() {
- grid.masonry('remove', $(selectors.incident));
+ var clear = function() {
+ grid.masonry("remove", $(selectors.incident));
};
-
- redraw = function() {
- grid.masonry('layout');
+ var redraw = function() {
+ grid.masonry("layout");
};
-
- remove = function(elem) {
- grid.masonry('remove', elem);
+ var remove = function(elem) {
+ grid.masonry("remove", elem);
};
-
- append = function(elem) {
- if (Config.GetOption('appendtop').Get()) {
- grid.prepend(elem).masonry('prepended', elem);
+ var append = function(elem) {
+ if (Config.GetOption("appendtop").Get()) {
+ grid.prepend(elem).masonry("prepended", elem);
} else {
- grid.append(elem).masonry('appended', elem);
+ grid.append(elem).masonry("appended", elem);
}
};
-
- items = function() {
- return grid.masonry('getItemElements');
+ var items = function() {
+ return grid.masonry("getItemElements");
};
-
- hide = function() {
+ var hide = function() {
$(selectors.alerts).hide();
};
-
- show = function() {
+ var show = function() {
$(selectors.alerts).show();
};
-
return {
Init: init,
Clear: clear,
diff --git a/assets/static/progress.js b/assets/static/progress.js
index 5c6684902..f0e53a9af 100644
--- a/assets/static/progress.js
+++ b/assets/static/progress.js
@@ -1,39 +1,38 @@
-var Progress = (function() {
+/* globals NProgress */ // nprogress.js
+/* globals Unsee */
+
+/* exported Progress */
+var Progress = (function() {
var timer;
-
- init = function() {
+ var init = function() {
NProgress.configure({
minimum: 0.01,
showSpinner: false,
- easing: 'linear'
+ easing: "linear"
});
};
-
- resetTimer = function() {
+ var resetTimer = function() {
if (timer !== false) {
clearInterval(timer);
timer = false;
}
};
-
- complete = function() {
+ var complete = function() {
Progress.ResetTimer();
NProgress.done();
};
-
- pause = function() {
+ var pause = function() {
Progress.ResetTimer();
NProgress.set(0.0);
};
-
- start = function() {
+ var start = function() {
var step_ms = 250; // animation step in ms
var steps = (Unsee.GetRefreshRate() * 1000) / step_ms; // how many steps we have
NProgress.set(0.0);
@@ -43,7 +42,6 @@ var Progress = (function() {
}, step_ms);
};
-
return {
Init: init,
Pause: pause,
diff --git a/assets/static/querystring.js b/assets/static/querystring.js
index b45c06330..d58fce885 100644
--- a/assets/static/querystring.js
+++ b/assets/static/querystring.js
@@ -1,45 +1,43 @@
+/* exported QueryString */
var QueryString = (function() {
-
- parse = function() {
+ var parse = function() {
var vars = [],
hash;
- var q = document.URL.split('?')[1];
+ var q = document.URL.split("?")[1];
if (q !== undefined) {
- q = q.split('&');
+ q = q.split("&");
for (var i = 0; i < q.length; i++) {
- hash = q[i].split('=');
- vars[hash[0]] = hash.slice(1).join('=');
+ hash = q[i].split("=");
+ vars[hash[0]] = hash.slice(1).join("=");
}
}
return vars;
};
-
- update = function(key, value) {
+ var update = function(key, value) {
/* https://gist.github.com/excalq/2961415 */
- var baseUrl = [location.protocol, '//', location.host, location.pathname].join(''),
+ var baseUrl = [location.protocol, "//", location.host, location.pathname].join(""),
urlQueryString = document.location.search,
- newParam = key + '=' + value,
- params = '?' + newParam;
+ newParam = key + "=" + value,
+ params = "?" + newParam;
// If the "search" string exists, then build params from it
if (urlQueryString) {
- keyRegex = new RegExp('([\?&])' + key + '[^&]*');
+ var keyRegex = new RegExp("([\?&])" + key + "[^&]*");
// If param exists already, update it
if (urlQueryString.match(keyRegex) !== null) {
params = urlQueryString.replace(keyRegex, "$1" + newParam);
} else { // Otherwise, add it to end of query string
- params = urlQueryString + '&' + newParam;
+ params = urlQueryString + "&" + newParam;
}
}
window.history.replaceState({}, "", baseUrl + params);
};
-
- remove = function(key) {
- var baseUrl = [location.protocol, '//', location.host, location.pathname].join(''),
+ var remove = function(key) {
+ var baseUrl = [location.protocol, "//", location.host, location.pathname].join(""),
q = QueryString.Parse();
if (q[key] !== undefined) {
delete q[key];
@@ -47,7 +45,6 @@ var QueryString = (function() {
}
};
-
return {
Parse: parse,
Set: update,
diff --git a/assets/static/sentry.js b/assets/static/sentry.js
index 0389b4761..f23497784 100644
--- a/assets/static/sentry.js
+++ b/assets/static/sentry.js
@@ -1,4 +1,6 @@
-var Sentry = (function() {
+/* globals Raven */ // raven.js
+
+(function() {
// init sentry client if sentry dsn is set
if ($("body").data("raven-dsn")) {
diff --git a/assets/static/summary.js b/assets/static/summary.js
index acd6fead6..b5db01e29 100644
--- a/assets/static/summary.js
+++ b/assets/static/summary.js
@@ -1,9 +1,11 @@
+/* globals Colors, Templates */
+
+/* exported Summary */
var Summary = (function() {
+ var summary;
- var summary, templates;
-
- render = function() {
+ var render = function() {
var top_tags = [];
$.each(summary, function(k, v) {
top_tags.push({
@@ -21,48 +23,44 @@ var Summary = (function() {
var tags = [];
$.each(top_tags.slice(0, 10), function(i, tag) {
- var label_key = tag.name.split(': ')[0];
- var label_val = tag.name.split(': ')[1];
+ var label_key = tag.name.split(": ")[0];
+ var label_val = tag.name.split(": ")[1];
tag.style = Colors.Get(label_key, label_val);
tag.cls = Colors.GetClass(label_key, label_val);
tags.push(tag);
});
- return Templates.Render('breakdownContent', {tags: tags});
+ return Templates.Render("breakdownContent", {tags: tags});
};
-
- init = function() {
+ var init = function() {
summary = {};
- $('.navbar-header').popover({
- trigger: 'hover',
+ $(".navbar-header").popover({
+ trigger: "hover",
delay: {
"show": 500,
"hide": 100
},
- container: 'body',
+ container: "body",
html: true,
- placement: 'bottom',
- title: 'Top labels',
+ placement: "bottom",
+ title: "Top labels",
content: render,
- template: Templates.Render('breakdown', {})
+ template: Templates.Render("breakdown", {})
});
};
-
- update = function(data) {
+ var update = function(data) {
summary = data;
};
-
- reset = function() {
+ var reset = function() {
summary = {};
render();
};
-
- push = function(labelKey, labelVal) {
- var l = labelKey + ': ' + labelVal;
+ var push = function(labelKey, labelVal) {
+ var l = labelKey + ": " + labelVal;
if (summary[l] === undefined) {
summary[l] = 1;
} else {
@@ -70,12 +68,11 @@ var Summary = (function() {
}
};
- getCount = function(labelKey, labelVal) {
- var l = labelKey + ': ' + labelVal;
+ var getCount = function(labelKey, labelVal) {
+ var l = labelKey + ": " + labelVal;
return summary[l];
};
-
return {
Init: init,
Update: update,
diff --git a/assets/static/templates.js b/assets/static/templates.js
index cc9e621af..534aa3378 100644
--- a/assets/static/templates.js
+++ b/assets/static/templates.js
@@ -1,71 +1,70 @@
-var Templates = (function(params) {
+/* globals _ */ // underscore.js
+/* exported Templates */
+var Templates = (function() {
var templates = {},
config = {
// popover with the list of most common labels
- breakdown: '#breakdown',
- breakdownContent: '#breakdown-content',
+ breakdown: "#breakdown",
+ breakdownContent: "#breakdown-content",
// reload message if backend version bump is detected
- reloadNeeded: '#reload-needed',
+ reloadNeeded: "#reload-needed",
// errors
- fatalError: '#fatal-error',
- internalError: '#internal-error',
- updateError: '#update-error',
+ fatalError: "#fatal-error",
+ internalError: "#internal-error",
+ updateError: "#update-error",
// modal popup with label filters
- modalTitle: '#modal-title',
- modalBody: '#modal-body',
+ modalTitle: "#modal-title",
+ modalBody: "#modal-body",
// modal popup with silence form
- silenceForm: '#silence-form',
- silenceFormSuccess: '#silence-form-success',
- silenceFormError: '#silence-form-error',
- silenceFormFatal: '#silence-form-fatal',
- silenceFormLoading: '#silence-form-loading',
+ silenceForm: "#silence-form",
+ silenceFormSuccess: "#silence-form-success",
+ silenceFormError: "#silence-form-error",
+ silenceFormFatal: "#silence-form-fatal",
+ silenceFormLoading: "#silence-form-loading",
// label button
- buttonLabel: '#label-button-filter',
+ buttonLabel: "#label-button-filter",
// alert group
- alertGroup: '#alert-group',
- alertGroupTitle: '#alert-group-title',
- alertGroupAnnotations: '#alert-group-annotations',
- alertGroupLabels: '#alert-group-labels',
- alertGroupElements: '#alert-group-elements',
- alertGroupSilence: '#alert-group-silence',
- alertGroupLabelMap: '#alert-group-label-map'
+ alertGroup: "#alert-group",
+ alertGroupTitle: "#alert-group-title",
+ alertGroupAnnotations: "#alert-group-annotations",
+ alertGroupLabels: "#alert-group-labels",
+ alertGroupElements: "#alert-group-elements",
+ alertGroupSilence: "#alert-group-silence",
+ alertGroupLabelMap: "#alert-group-label-map"
};
-
- init = function() {
+ var init = function() {
$.each(config, function(name, selector) {
try {
templates[name] = _.template($(selector).html());
} catch (err) {
- console.error('Failed to parse template ' + name + ' ' + selector);
+ console.error("Failed to parse template " + name + " " + selector);
console.error(err);
}
});
};
-
- renderTemplate = function(name, context) {
+ var renderTemplate = function(name, context) {
var t = templates[name];
if (t === undefined) {
- console.error('Unknown template ' + name);
- return '
Internal error: unknown template ' + name + '
';
+ console.error("Unknown template " + name);
+ return "Internal error: unknown template " + name + "
";
}
try {
return t(context);
} catch (err) {
- return 'Failed to render template "' + name + '"
' + err + '
';
+ return "Failed to render template " + name + "
" + err + "
";
}
};
-
return {
Init: init,
Render: renderTemplate
diff --git a/assets/static/ui.js b/assets/static/ui.js
index d8950cc86..feefe90fd 100644
--- a/assets/static/ui.js
+++ b/assets/static/ui.js
@@ -1,9 +1,13 @@
-var UI = (function(params) {
+/* globals moment */ // moment.js
+/* globals Alerts, Autocomplete, Filters, Summary, Templates, Unsee */
+
+/* exported UI */
+var UI = (function() {
// when user click on any alert label modal popup with a list of possible
// filter will show, this function is used to setup that modal
- setupModal = function() {
+ var setupModal = function() {
$("#labelModal").on("show.bs.modal", function(event) {
Unsee.Pause();
var modal = $(this);
@@ -28,7 +32,7 @@ var UI = (function(params) {
Filters.AddFilter(filter);
});
});
- $("#labelModal").on("hidden.bs.modal", function(event) {
+ $("#labelModal").on("hidden.bs.modal", function() {
var modal = $(this);
modal.find(".modal-title").children().remove();
modal.find(".modal-body").children().remove();
@@ -36,10 +40,9 @@ var UI = (function(params) {
});
};
-
// each alert group have a link generated for it, but we hide it until
// user hovers over that group so it doesn"t trash the UI
- setupGroupLinkHover = function(elem) {
+ var setupGroupLinkHover = function(elem) {
$(elem).on("mouseenter", function() {
$(this).find(".alert-group-link > a").finish().animate({
opacity: 100
@@ -52,10 +55,9 @@ var UI = (function(params) {
});
};
-
// find all elements inside alert group panel that will use tooltips
// and setup those
- setupGroupTooltips = function(groupElem) {
+ var setupGroupTooltips = function(groupElem) {
$.each(groupElem.find("[data-toggle=tooltip]"), function(i, elem) {
$(elem).tooltip({
animation: false, // slows down tooltip removal
@@ -69,20 +71,17 @@ var UI = (function(params) {
});
};
-
- setupAlertGroupUI = function(elem) {
+ var setupAlertGroupUI = function(elem) {
setupGroupLinkHover(elem);
setupGroupTooltips(elem);
};
-
- init = function() {
+ var init = function() {
setupModal();
setupSilenceForm();
};
-
- silenceFormData = function() {
+ var silenceFormData = function() {
var values = $("#newSilenceForm").serializeArray();
var payload = {
matchers: [],
@@ -98,18 +97,18 @@ var UI = (function(params) {
break;
}
});
- if ($("#startsAt").data('DateTimePicker')) {
- payload.startsAt = $("#startsAt").data('DateTimePicker').date();
+ if ($("#startsAt").data("DateTimePicker")) {
+ payload.startsAt = $("#startsAt").data("DateTimePicker").date();
}
- if ($("#endsAt").data('DateTimePicker')) {
- payload.endsAt = $("#endsAt").data('DateTimePicker').date();
+ if ($("#endsAt").data("DateTimePicker")) {
+ payload.endsAt = $("#endsAt").data("DateTimePicker").date();
}
$.each($("#newSilenceForm .selectpicker"), function(i, elem) {
- var label_key = $(elem).data('label-key');
- var values = $(elem).selectpicker('val');
+ var label_key = $(elem).data("label-key");
+ var values = $(elem).selectpicker("val");
if (values && values.length > 0) {
var pval;
- isRegex = false;
+ var isRegex = false;
if (values.length > 1) {
pval = "^(?:" + values.join("|") + ")$";
isRegex = true;
@@ -126,17 +125,16 @@ var UI = (function(params) {
return payload;
};
-
- silenceFormCalculateDuration = function() {
+ var silenceFormCalculateDuration = function() {
// skip if datetimepicker isn't ready yet
- if (!$("#startsAt").data('DateTimePicker') || !$("#endsAt").data('DateTimePicker')) return false;
+ if (!$("#startsAt").data("DateTimePicker") || !$("#endsAt").data("DateTimePicker")) return false;
- var startsAt = $("#startsAt").data('DateTimePicker').date();
- var endsAt = $("#endsAt").data('DateTimePicker').date();
+ var startsAt = $("#startsAt").data("DateTimePicker").date();
+ var endsAt = $("#endsAt").data("DateTimePicker").date();
- var totalDays = (endsAt.diff(startsAt, 'days'));
- var totalHours = (endsAt.diff(startsAt, 'hours')) % 24;
- var totalMinutes = endsAt.diff(startsAt, 'minutes') % 60;
+ var totalDays = (endsAt.diff(startsAt, "days"));
+ var totalHours = (endsAt.diff(startsAt, "hours")) % 24;
+ var totalMinutes = endsAt.diff(startsAt, "minutes") % 60;
$("#silence-duration-days").html(totalDays);
$("#silence-duration-hours").html(totalHours);
$("#silence-duration-minutes").html(totalMinutes);
@@ -152,22 +150,20 @@ var UI = (function(params) {
$("#silence-end-description").html(endsAtDesc);
};
-
- silenceFormJSONRender = function() {
+ var silenceFormJSONRender = function() {
var d = "curl " + $("#silenceModal").data("silence-api") +
"\n -X POST --data " +
JSON.stringify(silenceFormData(), undefined, 2);
$("#silenceJSONBlob").html(d);
};
-
- silenceFormUpdateDuration = function(event) {
+ var silenceFormUpdateDuration = function(event) {
// skip if datetimepicker isn't ready yet
- if (!$("#startsAt").data('DateTimePicker') || !$("#endsAt").data('DateTimePicker')) return false;
+ if (!$("#startsAt").data("DateTimePicker") || !$("#endsAt").data("DateTimePicker")) return false;
- var startsAt = $("#startsAt").data('DateTimePicker').date();
- var endsAt = $("#endsAt").data('DateTimePicker').date();
- var endsAtMinDate = $("#endsAt").data('DateTimePicker').minDate();
+ var startsAt = $("#startsAt").data("DateTimePicker").date();
+ var endsAt = $("#endsAt").data("DateTimePicker").date();
+ var endsAtMinDate = $("#endsAt").data("DateTimePicker").minDate();
var action = $(event.target).data("duration-action");
var unit = $(event.target).data("duration-unit");
var step = parseInt($(event.target).data("duration-step"));
@@ -203,13 +199,12 @@ var UI = (function(params) {
endsAt = endsAtMinDate;
}
}
- $("#endsAt").data('DateTimePicker').date(endsAt);
+ $("#endsAt").data("DateTimePicker").date(endsAt);
silenceFormCalculateDuration();
};
-
// modal form for creating new silences
- setupSilenceForm = function() {
+ var setupSilenceForm = function() {
var modal = $("#silenceModal");
modal.on("show.bs.modal", function(event) {
Unsee.Pause();
@@ -222,7 +217,7 @@ var UI = (function(params) {
elemLabels[l.split("=")[0]] = l.split("=")[1];
});
$.ajax({
- url: 'alerts.json?q=alertname=' + elem.data('alertname'),
+ url: "alerts.json?q=alertname=" + elem.data("alertname"),
error: function(xhr, textStatus, errorThrown) {
var err = xhr.responseText || errorThrown || textStatus;
modal.find(".modal-body").html(
@@ -254,71 +249,71 @@ var UI = (function(params) {
);
$.each($(".selectpicker"), function(i, elem) {
$(elem).selectpicker({
- iconBase: 'fa',
- tickIcon: 'fa-check',
- width: 'fit',
- selectAllText: '',
- deselectAllText: '',
- noneSelectedText: '' + $(this).data('label-key') + ": ",
- multipleSeparator: ' ',
- selectedTextFormat: 'count > 1',
- countSelectedText: function (numSelected, numTotal) {
- return '' +
- $(elem).data('label-key') + ": " + numSelected + " values selected";
+ iconBase: "fa",
+ tickIcon: "fa-check",
+ width: "fit",
+ selectAllText: "",
+ deselectAllText: "",
+ noneSelectedText: "" + $(this).data("label-key") + ": ",
+ multipleSeparator: " ",
+ selectedTextFormat: "count > 1",
+ countSelectedText: function (numSelected) {
+ return "" +
+ $(elem).data("label-key") + ": " + numSelected + " values selected";
}
});
});
- $('.datetime-picker').datetimepicker({
+ $(".datetime-picker").datetimepicker({
format: "YYYY-MM-DD HH:mm",
icons: {
- time: 'fa fa-clock-o',
- date: 'fa fa-calendar',
- up: 'fa fa-chevron-up',
- down: 'fa fa-chevron-down',
- previous: 'fa fa-chevron-left',
- next: 'fa fa-chevron-right',
- today: 'fa fa-asterisk',
- clear: 'fa fa-undo',
- close: 'fa fa-close'
+ time: "fa fa-clock-o",
+ date: "fa fa-calendar",
+ up: "fa fa-chevron-up",
+ down: "fa fa-chevron-down",
+ previous: "fa fa-chevron-left",
+ next: "fa fa-chevron-right",
+ today: "fa fa-asterisk",
+ clear: "fa fa-undo",
+ close: "fa fa-close"
},
minDate: moment(),
sideBySide: true,
inline: true
});
setupGroupTooltips($("#newSilenceForm"));
- $('.select-label-badge').on('click', function(e) {
- var select = $(this).parent().parent().find('select');
- if (select.selectpicker('val')) {
+ $(".select-label-badge").on("click", function() {
+ var select = $(this).parent().parent().find("select");
+ if (select.selectpicker("val")) {
// if there's anything selected deselect all
- select.selectpicker('deselectAll');
+ select.selectpicker("deselectAll");
} else {
// else select all
- select.selectpicker('selectAll');
+ select.selectpicker("selectAll");
}
});
// set endsAt minDate to now + 1 minute
- $("#endsAt").data('DateTimePicker').minDate(moment().add(1, 'minute'));
+ $("#endsAt").data("DateTimePicker").minDate(moment().add(1, "minute"));
// set endsAt time to +1 hour
- $("#endsAt").data('DateTimePicker').date(moment().add(1, 'hours'));
+ $("#endsAt").data("DateTimePicker").date(moment().add(1, "hours"));
// whenever startsAt changes set it as the minDate for endsAt
// we can't have endsAt < startsAt
$("#newSilenceForm").on("dp.change", "#startsAt", function(){
- if (!$("#startsAt").data('DateTimePicker')) return false;
- var startsAt = $("#startsAt").data('DateTimePicker').date();
+ if (!$("#startsAt").data("DateTimePicker")) return false;
+ var startsAt = $("#startsAt").data("DateTimePicker").date();
// endsAt needs to be at least 1 minute after startsAt
startsAt.add(1, "minute");
- $("#endsAt").data('DateTimePicker').minDate(startsAt);
+ $("#endsAt").data("DateTimePicker").minDate(startsAt);
});
$("#newSilenceForm").on("click", "a.silence-duration-btn", silenceFormUpdateDuration);
- $("#newSilenceForm").on('show.bs.collapse, dp.change', function (e) {
+ $("#newSilenceForm").on("show.bs.collapse, dp.change", function () {
silenceFormJSONRender();
silenceFormCalculateDuration();
});
- $("#newSilenceForm").on('change', function (e) {
+ $("#newSilenceForm").on("change", function () {
silenceFormJSONRender();
});
$("#newSilenceForm").submit(function(event) {
- payload = silenceFormData();
+ var payload = silenceFormData();
if (payload.matchers.length === 0) {
var errContent = Templates.Render("silenceFormError", {error: "Select at least on label"});
$("#newSilenceAlert").html(errContent).removeClass("hidden");
@@ -349,10 +344,10 @@ var UI = (function(params) {
var errContent = Templates.Render("silenceFormError", {error: err});
$("#newSilenceAlert").html(errContent).removeClass("hidden");
},
- success: function(data, textStatus, xhr) {
+ success: function(data) {
if (data.status == "success") {
$("#newSilenceAlert").addClass("hidden");
- $('#newSilenceForm').html(Templates.Render("silenceFormSuccess", {
+ $("#newSilenceForm").html(Templates.Render("silenceFormSuccess", {
silenceID: data.data.silenceId
}));
} else {
@@ -371,14 +366,13 @@ var UI = (function(params) {
});
});
- modal.on("hidden.bs.modal", function(event) {
+ modal.on("hidden.bs.modal", function() {
var modal = $(this);
modal.find(".modal-body").children().remove();
Unsee.WaitForNextReload();
});
};
-
return {
Init: init,
SetupAlertGroupUI: setupAlertGroupUI
diff --git a/assets/static/unsee.js b/assets/static/unsee.js
index ecd2c0950..7c5554e36 100644
--- a/assets/static/unsee.js
+++ b/assets/static/unsee.js
@@ -1,23 +1,27 @@
-var Unsee = (function(params) {
+/* globals Raven */ // raven.js
+/* globals moment */ // moment.js
+/* globals Alerts, Autocomplete, Colors, Config, Counter, Grid, Filters, Progress, Summary, Templates, UI, Watchdog */
+
+/* exported Unsee */
+var Unsee = (function() {
var timer = false;
var version = false;
var refreshInterval = 15;
var selectors = {
- refreshButton: '#refresh',
- errors: '#errors'
+ refreshButton: "#refresh",
+ errors: "#errors"
};
-
- init = function() {
+ var init = function() {
Progress.Init();
Config.Init({
- CopySelector: '#copy-settings-with-filter',
- SaveSelector: '#save-default-filter',
- ResetSelector: '#reset-settings'
+ CopySelector: "#copy-settings-with-filter",
+ SaveSelector: "#save-default-filter",
+ ResetSelector: "#reset-settings"
});
Config.Load();
@@ -29,24 +33,22 @@ var Unsee = (function(params) {
Watchdog.Init(30, 60*15); // set watchdog to 15 minutes
$(selectors.refreshButton).click(function() {
- if (!$(selectors.refreshButton).prop('disabled')) {
+ if (!$(selectors.refreshButton).prop("disabled")) {
Unsee.Reload();
}
return false;
});
};
-
- getRefreshRate = function() {
+ var getRefreshRate = function() {
return refreshInterval;
};
-
- setRefreshRate = function(seconds) {
+ var setRefreshRate = function(seconds) {
var rate = parseInt(seconds);
if (isNaN(rate)) {
// if passed rate is incorrect use select value
- rate = Config.GetOption('refresh').Get();
+ rate = Config.GetOption("refresh").Get();
if (isNaN(rate)) {
// if that's also borked use default 15
rate = 15;
@@ -56,8 +58,7 @@ var Unsee = (function(params) {
Progress.Reset();
};
-
- needsUpgrade = function(responseVersion) {
+ var needsUpgrade = function(responseVersion) {
if (version === false) {
version = responseVersion;
return false;
@@ -65,8 +66,7 @@ var Unsee = (function(params) {
return version != responseVersion;
};
-
- renderError = function(template, context) {
+ var renderError = function(template, context) {
Counter.Error();
Grid.Clear();
Grid.Hide();
@@ -78,13 +78,12 @@ var Unsee = (function(params) {
updateCompleted();
};
-
- handleError = function(err) {
+ var handleError = function(err) {
Raven.captureException(err);
if (window.console) {
console.error(err.stack);
}
- renderError('internalError', {
+ renderError("internalError", {
name: err.name,
message: err.message,
raw: err
@@ -94,27 +93,25 @@ var Unsee = (function(params) {
}, 500);
};
-
- upgrade = function() {
- renderError('reloadNeeded', {});
+ var upgrade = function() {
+ renderError("reloadNeeded", {});
setTimeout(function() {
location.reload();
}, 3000);
};
-
- triggerReload = function() {
+ var triggerReload = function() {
updateIsReady();
$.ajax({
- url: 'alerts.json?q=' + Filters.GetFilters().join(','),
+ url: "alerts.json?q=" + Filters.GetFilters().join(","),
success: function(resp) {
Counter.Success();
if (needsUpgrade(resp.version)) {
upgrade();
} else if (resp.error) {
Counter.Unknown();
- renderError('updateError', {
- error: 'Backend error',
+ renderError("updateError", {
+ error: "Backend error",
message: resp.error,
last_ts: Watchdog.GetLastUpdate()
});
@@ -133,8 +130,8 @@ var Unsee = (function(params) {
Watchdog.Pong(moment(resp.timestamp));
Unsee.WaitForNextReload();
if (!Watchdog.IsFatal()) {
- $(selectors.errors).html('');
- $(selectors.errors).hide('');
+ $(selectors.errors).html("");
+ $(selectors.errors).hide("");
}
} catch (err) {
Counter.Unknown();
@@ -144,14 +141,14 @@ var Unsee = (function(params) {
}, 50);
}
},
- error: function(jqXHR, textStatus) {
+ error: function() {
Counter.Unknown();
// if fatal error was already triggered we have error message
// so don't add new one
if (!Watchdog.IsFatal()) {
- renderError('updateError', {
- error: 'Backend error',
- message: 'AJAX request failed',
+ renderError("updateError", {
+ error: "Backend error",
+ message: "AJAX request failed",
last_ts: Watchdog.GetLastUpdate()
});
}
@@ -160,25 +157,22 @@ var Unsee = (function(params) {
});
};
-
- updateIsReady = function() {
+ var updateIsReady = function() {
Progress.Complete();
- $(selectors.refreshButton).prop('disabled', true);
+ $(selectors.refreshButton).prop("disabled", true);
Counter.Hide();
};
-
- updateCompleted = function() {
+ var updateCompleted = function() {
Counter.Show();
Filters.UpdateCompleted();
Progress.Complete();
- $(selectors.refreshButton).prop('disabled', false);
+ $(selectors.refreshButton).prop("disabled", false);
// hack for fixing padding since input can grow and change height
- $('body').css('padding-top', $('.navbar').height());
+ $("body").css("padding-top", $(".navbar").height());
};
-
- pause = function() {
+ var pause = function() {
Progress.Pause();
Filters.Pause();
if (timer !== false) {
@@ -187,9 +181,8 @@ var Unsee = (function(params) {
}
};
-
- resume = function() {
- if (Config.GetOption('autorefresh').Get()) {
+ var resume = function() {
+ if (Config.GetOption("autorefresh").Get()) {
Filters.UpdateCompleted();
} else {
Filters.Pause();
@@ -202,19 +195,17 @@ var Unsee = (function(params) {
timer = setTimeout(Unsee.Reload, Unsee.GetRefreshRate() * 1000);
};
-
- flash = function() {
- var bg = $('#flash').css('background-color');
- $('#flash').css('display', 'block').animate({
- backgroundColor: '#fff'
+ var flash = function() {
+ var bg = $("#flash").css("background-color");
+ $("#flash").css("display", "block").animate({
+ backgroundColor: "#fff"
}, 300, function() {
$(this).animate({
backgroundColor: bg
- }, 100).css('display', 'none');
+ }, 100).css("display", "none");
});
};
-
return {
Init: init,
Pause: pause,
@@ -227,17 +218,16 @@ var Unsee = (function(params) {
})();
-
$(document).ready(function() {
// wrap all inits so we can handle errors
try {
// init all elements using bootstrapSwitch
- $('.toggle').bootstrapSwitch();
+ $(".toggle").bootstrapSwitch();
// enable tooltips, #settings is a dropdown so it already uses different data-toggle
- $('[data-toggle="tooltip"], #settings').tooltip({
- trigger: 'hover'
+ $("[data-toggle='tooltip'], #settings").tooltip({
+ trigger: "hover"
});
Templates.Init();
@@ -251,17 +241,17 @@ $(document).ready(function() {
} catch (error) {
Raven.captureException(error);
if (window.console) {
- console.error('Error: ' + error.stack);
+ console.error("Error: " + error.stack);
}
// templates might not be loaded yet, make some html manually
$("#errors").html(
- '' +
- '
' +
- 'Internal error ' +
- '
' +
- '
' +
+ "
" +
+ "
" +
+ "Internal error " +
+ "
" +
+ "
'
+ "
"
).show();
}
diff --git a/assets/static/watchdog.js b/assets/static/watchdog.js
index 3ca7097e7..933c1279d 100644
--- a/assets/static/watchdog.js
+++ b/assets/static/watchdog.js
@@ -1,29 +1,31 @@
+/* globals moment */ // moment.js
+
+/* globals Config, Counter, Templates */
+
+/* exported Watchdog */
var Watchdog = (function() {
-
var selectors = {
- countdown: '#reload-counter'
+ countdown: "#reload-counter"
};
var lastTs = 0;
var maxLag;
- var timer = false;
var inCountdown = false;
var fatalCountdown = 60;
var fatalReloadTimer = false;
var fatalCounterTimer = false;
-
- timerTick = function() {
+ var timerTick = function() {
if (lastTs === 0) return;
// don't raise an error if autorefresh is disabled
- if (!Config.GetOption('autorefresh').Get()) return;
+ if (!Config.GetOption("autorefresh").Get()) return;
var now = moment().utc().unix();
if (now - lastTs > maxLag) {
- $('#errors').html(Templates.Render('fatalError', {
+ $("#errors").html(Templates.Render("fatalError", {
last_ts: lastTs,
seconds_left: fatalCountdown
})).show();
@@ -45,27 +47,23 @@ var Watchdog = (function() {
}
};
-
- init = function(interval, tolerance) {
+ var init = function(interval, tolerance) {
maxLag = tolerance;
setInterval(timerTick, interval * 1000);
};
-
- updateTs = function(ts) {
+ var updateTs = function(ts) {
lastTs = ts.utc().unix();
};
-
- getTs = function() {
+ var getTs = function() {
return lastTs;
};
- getFatal = function() {
+ var getFatal = function() {
return inCountdown;
};
-
return {
Init: init,
Pong: updateTs,
diff --git a/bindata_assetfs.go b/bindata_assetfs.go
index 00329cac1..e4c612a2f 100644
--- a/bindata_assetfs.go
+++ b/bindata_assetfs.go
@@ -296,7 +296,7 @@ func templatesSummaryHtml() (*asset, error) {
return a, nil
}
-var _staticAlertsJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x58\x6d\x6f\xdc\xb8\x11\xfe\xee\x5f\x31\x77\x0d\x20\x2d\x6e\xad\x75\x10\x34\x2d\xd6\xdd\x03\x5c\x1f\x1a\x18\xcd\x35\x80\x1d\x7f\x72\x03\x83\x16\x67\x57\x8c\xb9\xa4\x40\x8e\xbc\xd9\x06\xfe\xef\x05\x5f\x24\x51\x2f\x4e\x72\x45\xfd\xc1\xd0\x8a\x33\xc3\x67\x1e\x0e\xe7\x45\xab\x15\x7c\xb6\x95\x50\x04\x68\x9f\xd0\x58\xa1\xd5\x1a\xde\x9e\x9c\x3c\x31\x03\x17\x12\x0d\x59\xd8\x40\xbe\x6d\x54\x49\x42\xab\x7c\x01\x5f\x4f\x4e\x4e\x00\x00\x9c\x80\x15\x12\x55\x89\x4e\xe4\xeb\xf3\xd2\xbf\x76\x7f\x92\x3d\xa0\xbc\x64\x65\x85\xb0\x01\x85\x07\x78\x7f\x7d\xfb\x3b\xab\xf3\xd7\x67\x67\x67\x8b\xf3\xa0\x5e\x4a\x66\x6d\xd8\xe1\x9d\xd1\x4d\x0d\x5f\x3b\xf5\x52\x2b\x4b\xa6\x29\x49\x9b\x7c\xe7\xd6\x7e\x63\xc4\x16\x89\x80\xfb\x7b\x55\xe0\x17\x42\xc5\x73\xaa\x84\x5d\x42\x2f\x77\xde\x89\x3d\x9f\x74\x8f\xd7\xa8\x38\x9a\x7c\x6c\xc4\x20\x35\x46\xc1\x47\xdc\xd7\x92\x11\xda\x22\xca\x65\xac\xc3\x95\x2d\x47\x3a\xee\xcf\xef\xb6\x06\xbf\xf5\x64\xb1\x25\x65\xdd\x3d\xcd\xc8\x10\x23\x51\xde\x97\x5a\x6a\x73\xef\xe9\x5a\xc3\xa5\xfb\x61\x8b\x77\x48\x37\x7e\xf5\xbd\x7b\x6d\xf3\xc5\x54\xdb\xa3\xbb\x97\x62\x2f\x68\x0d\x7f\x1e\x2c\x3f\xcf\xfb\xbf\x5a\x41\xc9\xa4\x44\x0e\x6c\x4b\x68\x82\x03\x70\x60\x16\x8c\xf7\x18\x39\x6c\xb5\x01\xaa\x10\xb6\xc2\x58\x02\x12\x7b\xec\xb4\x2f\x38\x47\x3e\x21\xef\xf6\xaa\xb8\x41\x6a\xea\xfe\x0c\x6f\xaf\xf2\x57\x79\xf6\xa7\x0c\x7e\xf1\xd4\x14\x82\x2f\xe6\xe1\xdc\xd6\x9c\x11\x4e\x2c\xae\x56\x50\x09\x8e\x50\xeb\x5a\xbb\x58\x04\xa1\xbc\xa1\x00\x77\x78\xfc\xc3\x7d\xe0\x17\xc8\xe0\x8e\x33\x62\xa7\x9e\xcd\x53\x3a\xd6\xb8\xf9\x79\x2b\x24\xa1\xf9\xf9\x53\xb6\x28\xa2\xcd\x3c\x73\x3b\x64\x6d\x14\x26\x3b\x1b\xdc\xeb\x27\x04\x26\x25\xa0\xc4\x3d\x2a\xb2\x50\x1b\xe1\x58\xd1\x2e\x24\x09\x15\x41\xe3\x81\xbb\x37\x75\x63\x76\x51\xfa\xc9\xad\x48\x61\x09\x95\x03\xcd\x14\x87\x4a\xeb\x47\x3b\x8e\x57\x56\x56\x13\x7e\x8a\xad\x50\x3c\xcf\x8a\x9a\x29\x94\xa7\x0f\x9a\x1f\x97\x10\x7f\x54\xc8\xb8\x50\xbb\x6c\xb1\x84\xee\xfa\x89\xa5\x07\x37\x26\x2e\x30\xe2\x57\x8a\xe0\x47\x9e\x10\xdf\xc6\xc5\xb7\x08\x5c\x14\x15\xed\x65\xfe\xca\x5f\xa7\xf6\x1a\x2c\xe2\xdb\xc5\xc8\xd8\x44\xd7\x11\x9f\x67\x15\xb3\x55\xb6\x0c\x6f\xdd\xf3\x0c\xc9\x75\x23\x2d\xfa\x30\x7b\x60\x7c\xe7\x89\xb4\x95\x3e\x00\x55\x8c\x62\x50\xb6\x54\xbb\xe0\x2c\x2b\xa6\x76\xc8\x97\x60\xb0\x46\x46\x20\x08\xe8\x20\x4a\xfc\x6e\x28\xfc\x1a\x49\xec\x1e\x5a\x36\xdd\x0b\xbf\xf5\x5a\xa8\xd3\x27\x81\x87\x5a\x1b\xca\xfc\x31\x08\x5b\xe5\x8b\x62\xcb\x38\x7e\x68\x28\x7f\x73\x76\x16\x7e\x5c\xa9\xfe\x79\x6e\x61\x12\xe0\xcf\x31\x41\x72\xb4\x64\xf4\x31\x64\xb7\x4d\x7f\x86\xde\xcd\xab\xdf\xd2\x33\x6c\x5d\x88\x4b\xff\x43\x34\x7f\xdf\x12\xe9\xdd\x4e\xe2\x86\xb4\x96\x24\x6a\x67\x24\x3e\xce\x18\x19\xc6\x6a\x0b\xf8\xff\x13\xab\x2f\xc7\x69\x9a\xbb\xde\x19\xc1\x8b\xeb\x20\x32\xc6\x11\xc5\x9e\xcf\x23\xd1\x56\x1b\xfa\x9d\xd5\x7f\x3f\xfe\x13\x8f\x29\xd1\x7b\x56\x7f\xd4\x37\xda\x50\x0a\xc1\x95\xad\x47\x3c\xba\x92\xf5\xe1\xe1\x33\x96\x54\xb8\x5f\x89\x6c\x8f\xc1\x2d\x14\xce\x78\x0a\xd2\x97\x3d\x6d\x08\x39\x6c\xe0\xee\xd3\x84\x34\xa7\x34\x24\xe1\x11\x8f\x63\x0e\x82\x81\xa2\x6e\x6c\x95\x4f\x6f\xf2\x23\x1e\xd7\xee\xdf\x34\xf1\x3f\x31\xd9\xe0\x1a\x3a\xb0\x77\x8f\x78\xfc\x34\x15\x23\xfc\x42\xde\x82\x3b\xfe\x35\x38\xee\x86\x2a\x2f\x97\x8c\xe4\x39\x16\xc7\x80\x75\x44\xb9\x0f\xcb\x0b\x22\x63\x53\xc2\x1d\xe6\x80\x71\xcc\xb8\x97\x87\xcd\x10\x93\x97\x4c\x72\x84\x13\x64\xd1\x66\xdf\x42\x14\x3b\xa4\xdc\xff\x4c\xb0\x89\x2d\xe4\x41\xf4\xa7\xcd\x06\x1a\xc5\x71\x2b\x14\xf2\x45\x0b\xda\xaf\x25\xa6\x5b\xb3\x43\xb2\x03\x4f\xde\xf6\x90\x44\xdf\x9c\xac\x21\x0b\xb0\xc3\x1d\x74\x09\xde\xc3\xee\xeb\xf4\xa5\x13\x4b\xbd\x1e\x5a\xb1\x74\x94\x98\xd6\xf5\x54\xb4\xa7\xfc\x7c\xa6\x6f\x2a\x6c\xeb\xf4\x32\x60\x9f\x9e\x4b\x74\x71\x70\x2c\x55\xb3\x67\x4a\xfc\x07\x3f\x8a\x3d\x5a\x62\xfb\x7a\x70\x3c\xe3\x43\x51\xfa\x00\x1b\xd8\x6b\x57\xeb\xd2\x10\x77\xcd\x82\x4f\xbc\xbe\x0b\xf0\x76\x02\x34\xeb\xf2\xf5\x03\x82\x41\xc9\x48\x3c\xe1\x4c\xc2\x28\x62\xc2\xb2\x3f\x92\x0a\x1c\x08\xdf\x5f\x46\x0c\x6d\x6a\x08\xe5\x24\xd8\x08\x4b\xc5\xd5\xcd\x87\xfb\xbf\xbe\x3d\x7b\x3d\xaa\x44\x69\x6c\x91\x2d\xb6\x46\xef\xff\xa5\x0f\xe3\xe2\xd7\xda\x8d\xf9\xab\x85\x78\x6a\x6b\xa6\x5c\x1e\xc4\x2f\xd3\x08\x4b\xf5\x1c\xd5\x79\x16\xb2\xa8\x3d\x25\x41\x12\x5d\x9d\xb3\x05\xe9\x1b\x32\x42\xed\x26\x15\x32\x78\x76\xcf\x76\xbe\x03\xd6\x87\x82\x8b\xed\x36\x27\xbb\x84\x6c\x2f\x54\x43\x68\xb3\x91\x86\x8b\xe8\xa8\xf1\x37\x78\xf3\xad\x02\xcf\x38\x0f\x81\x97\x19\x2c\x51\xd1\xa9\x6f\x07\xb3\xce\x3d\xa1\x4a\xc1\xdd\x7b\xa1\xb8\x28\x19\x69\x93\xb5\xd9\x36\xea\x55\x82\x73\x54\x63\x04\xcf\x80\xae\x38\x7f\xaf\xb3\xf8\xe3\x7b\xf7\x80\x5f\xd8\x78\x90\x7e\xd2\x30\xdc\x4a\x66\x2b\x08\x5b\x85\xae\xd7\xa6\x95\xae\x48\x41\x7c\xab\xa0\x7f\xf4\xb5\xaf\x2f\xdd\x7f\xe0\xf7\xe8\x86\x85\x06\xb0\x1b\x8c\xba\x08\x67\xb5\xb8\x46\x5b\x6b\x65\x27\xb9\xcf\xa3\xbb\xd4\x8d\x22\xd8\xc0\xd9\xb0\x92\xf8\x92\x16\xc6\xa7\xa1\xe7\xb1\xd1\xdc\x49\xfd\xc0\x64\x3f\x67\x71\x51\x12\x30\x0b\x82\x32\x0b\x0a\x91\xc7\xc6\x3d\x74\xf1\x42\xed\x3a\x1b\xc9\x68\x96\x60\x2b\xda\xd7\xa3\xb4\x6b\x9b\xfd\x9e\x99\xa3\x1b\xa0\x22\x98\x8e\xe6\x70\xb5\x53\x1b\xa5\xf3\x05\x4d\x5a\xe6\xfc\xed\xb9\xf7\xe9\xad\x5d\x5d\x4c\xe6\x35\x67\xe7\x45\xdd\x27\x26\x97\x50\x09\x1a\xeb\x79\x5f\x7a\x74\x77\xdd\x4e\x7d\x1d\xe9\x0c\x7c\x82\x8d\x37\x31\x6d\x7d\xe7\x9e\x6f\x82\xd5\x22\x0e\x23\xc9\x26\x69\x14\xce\xf8\x1f\x0e\x6d\x98\xde\x5e\x9c\x53\xbb\x08\x68\xfb\x40\x37\x0f\xf7\x23\x53\x3e\x37\xb8\x42\x3b\x62\xda\xbb\x5e\xb5\x10\xdc\xf9\xd7\xbf\x18\xca\x27\x51\xf6\x4b\x2a\x55\x84\x6b\x53\x48\x54\x3b\xaa\xce\xe7\xaf\xda\x65\x38\x15\x37\xcf\xe5\xbd\xa1\x71\x3b\x76\x53\x85\xd4\x3a\x88\x1c\x2e\x0c\xf9\xae\x8b\x49\x8b\xc3\x18\xae\x98\xe2\xd2\xcd\x48\x06\x19\x3f\x02\x7e\x11\x96\x5c\x0b\x1e\x5c\x1b\x33\xec\xb7\xb8\x22\xdc\xbb\x91\x77\x58\x3a\xa2\xa2\xf7\x67\x8e\xdf\x5d\xa4\x36\x72\x36\x90\x77\xb4\x4d\x33\x6d\xd0\x18\xf5\x0e\xd3\xc0\x5b\xad\xa2\x6d\x4b\x42\x4a\xa8\x0d\x5a\x54\xb4\x84\xb2\xc2\xf2\xd1\x19\x8a\x03\xca\x44\xb1\xdb\xc3\x0f\x42\xf0\xd3\x66\xe8\x84\xaf\x70\x16\x29\x8c\x49\x33\x1b\x0f\x36\x77\x93\x50\xc8\x07\x7e\x12\x72\x37\x3d\x6e\x6c\x67\x15\xc3\xc6\xed\x8c\x7d\x3e\x2b\xf3\x32\x9c\x96\x47\xff\x63\x5e\xb9\x3d\x73\x32\x83\xfe\x6d\x04\xbe\x22\xaa\xed\x7a\xb5\xda\x09\xaa\x9a\x87\xa2\xd4\xfb\x15\x1d\x1e\xec\xea\x41\x6b\xb2\x64\x58\xbd\x12\xd6\x36\x68\x57\xaf\xdf\xbe\xf9\xcb\xdb\x59\x2b\x16\xc9\xb5\x32\xba\xa1\x7c\xb6\x8b\x99\xf7\x3c\x7e\xae\x98\xc7\xfe\xbc\x84\xf8\x19\x6a\xb2\xf2\x63\xd5\xb0\x3b\x16\x61\x61\xa7\x15\x2e\xdb\x41\x0f\x04\x4d\x84\xd3\x19\x30\x1f\xc7\xe5\x0c\x86\x21\xb3\x2f\xa3\xeb\xbf\x57\xb8\x96\xa7\x2d\x23\x6d\x75\x38\x60\x66\x10\xb8\x56\x08\x07\x41\xd5\x18\x18\x47\x89\xae\xb6\x7c\xf7\xb6\x8c\xcb\x71\x8c\x3d\x97\xc1\x46\x77\xd8\xdd\xc2\x76\x70\x9f\x1d\x8b\xa6\x39\x93\xc7\xa4\x39\x3e\xcf\x68\x26\x0c\x47\xe1\x40\xbb\xcf\x11\xf3\x89\x7c\xb5\x02\x56\xd7\xa8\x78\x82\x0c\x84\x82\xb2\x6a\x54\xf2\x15\xc6\xdd\xc9\xd6\x78\xc8\x86\xf0\x2b\x9c\x8d\xb7\xf7\x69\xe8\xc2\x9b\xcb\x5f\x75\xf2\xb6\x96\xa2\xc4\xfc\xcc\x07\xcf\xa2\xf8\xac\x85\xca\xb3\x7f\xab\x6c\x31\x6e\xfc\xe6\x0f\x70\xf8\x25\x8e\xc9\x03\x3b\x5a\x30\xb8\x35\x68\xab\x49\x93\xdd\x89\x4e\xbb\xf9\x7c\xa6\x32\xfd\x38\xb3\x2f\xdc\x8e\xc1\x29\x3b\x92\xbc\x0f\x63\xe5\x8b\x86\x74\xa9\xf7\xb5\x0b\x9d\xe2\x1a\xdd\x7c\x32\x72\x3d\x8e\xec\xdc\xb0\x49\x03\xee\xac\x5e\x6a\xb5\x15\x3b\x37\x06\x7d\xa8\x3d\xce\xcc\x77\x77\xd9\xc2\x4f\x46\x8b\xb9\x6b\x7d\xab\x2c\x62\xf1\x0f\x27\x36\xf9\x9e\x35\xf9\xea\xd2\x76\x68\x71\x3c\xea\xad\x85\x44\xb8\x1e\xb4\x6e\xfd\xa0\x76\x93\x7c\x3c\x58\x0f\x3e\x25\xf4\x32\xef\x90\xde\x77\x03\xef\x3a\x19\x7e\xbb\x9d\x9f\x7d\x70\xfe\x37\x00\x00\xff\xff\xb0\xc7\x41\xd8\x4c\x17\x00\x00")
+var _staticAlertsJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x58\x5b\x6f\xdc\xba\x11\x7e\xcf\xaf\x98\xa3\x06\x88\x36\x91\x25\x07\x41\xd3\x62\xdd\x3d\x40\x9a\x83\x06\x46\x73\x1a\xc0\x8e\x9f\xdc\xc0\xa0\xc5\xd9\x15\x63\x2d\x29\x90\x23\xaf\xb7\x81\xff\x7b\xc1\x8b\x24\xea\xe2\x24\xa7\xe8\x3e\xd8\x92\x38\x97\x6f\x86\xc3\xb9\xb0\x28\xe0\xab\xa9\x84\x24\x40\x73\x8f\xda\x08\x25\xd7\xf0\xf6\xd9\xb3\xe2\x25\xec\x6a\x75\xcb\x6a\x03\x1f\x2f\xae\x7e\x67\x0d\xbc\x2c\xc0\xfe\x8a\x02\x6a\xdd\xe6\x5f\x4d\x4c\xb2\x57\x7b\x94\x14\x91\xf8\x0f\x96\x2a\x26\x7b\xd7\x92\x2a\xd5\xbe\xa9\x91\x30\x83\xf7\xaa\x56\xda\xd8\xff\x72\x2b\x76\xf6\x7f\x2b\x09\x75\x06\x1f\xb4\xe0\x19\x7c\xc6\x7d\x53\x33\x42\x93\xc1\x65\xbb\xdf\x33\x7d\xcc\xe0\xea\x3c\x83\x2b\x69\x10\xe1\x65\xe1\x24\xe3\x43\xa3\x34\x21\x87\x77\x35\x6a\x32\xf6\xf3\x3d\xd3\xdd\xdb\x06\xd2\x6d\x2b\x4b\x12\x4a\xa6\x2b\xf8\xf6\xec\x99\x45\x67\xd7\x8d\xa8\x51\x96\x68\x29\xbe\x3d\x66\xee\xb3\xfd\xd5\xec\x16\xeb\xf7\xac\xac\x10\x36\x20\xf1\x10\x4c\x4f\x5f\x9f\x9e\x9e\xae\xce\x3c\x7b\x59\x33\x63\xbc\x82\x0f\x5a\xb5\x0d\x7c\xeb\xd9\x4b\x25\x0d\xe9\xb6\x24\xa5\xd3\x9d\x5d\xfb\x8d\x11\x5b\x45\x04\xf6\xf7\x3c\xc7\x07\x42\xc9\x53\xaa\x84\xc9\x60\xa0\x3b\xeb\xc9\x1e\x9f\xf5\x8f\x17\x28\x39\xea\x74\x2a\x44\x23\xb5\x5a\x0e\x2e\xca\x03\x5d\xc2\x7a\x5c\x49\x36\xe1\xb1\x3f\xa7\x6d\x0d\x4e\xf5\x6c\xb1\x73\xca\xba\x7f\x5a\xa0\x21\x46\xa2\xbc\x29\xed\xd6\xdd\x38\x77\xad\xc3\x3e\xe6\x1f\x90\x2e\xdd\xea\x47\xfb\xd9\xa4\xab\x39\xb7\x43\x77\x53\x8b\xbd\xa0\x35\xfc\x79\xb4\xfc\xb8\x6c\x7f\x51\x40\xc9\xea\x1a\x39\xb0\x2d\xa1\xf6\x06\xc0\x81\x19\xd0\xce\x62\xe4\xb0\x55\x1a\xa8\x42\xd8\x0a\x6d\x08\x48\xec\xb1\xe7\x7e\xc7\x39\xf2\x99\xf3\xae\xce\xf3\x4b\xa4\xb6\x19\xf6\xf0\xea\x3c\x7d\x9e\x26\x7f\x4a\xe0\x95\x73\x4d\x2e\xf8\x6a\x19\xce\x55\xc3\x19\xe1\x4c\x62\x51\x40\x25\x38\x42\xa3\x1a\x65\x0f\x11\x08\xe9\x04\x79\xb8\xe3\xed\x1f\xeb\x81\x57\x90\xc0\x35\x67\xc4\x4e\x9c\x37\x4f\xe8\xd8\xe0\xe6\xc5\x56\xd4\x84\xfa\xc5\x97\x64\x95\x07\x99\x69\x62\x35\x24\x5d\x14\x46\x9a\x35\xee\xd5\x3d\x02\xab\x6b\xc0\x1a\xed\xb1\x33\xd0\x68\x61\xbd\xa2\x6c\x48\x92\x3d\x99\xad\x03\x6e\xbf\x34\xad\xde\x05\xea\x7b\xbb\x52\x0b\x43\x28\x2d\x68\x26\x39\x54\x4a\xdd\x99\x69\xbc\xb2\xb2\x9a\xf9\x27\xdf\x0a\xc9\xd3\x24\x6f\x98\xc4\xfa\xe4\x56\xf1\x63\x06\xe1\xa5\x42\xc6\x85\xdc\x25\xab\x0c\xfa\xd3\x27\x32\x07\x6e\xea\x38\xef\x11\xb7\x92\x7b\x3b\xd2\xc8\xf1\x5d\x5c\x7c\xcf\x81\xab\xbc\xa2\x7d\x9d\x3e\x77\xc7\xa9\x3b\x06\xab\xf0\x75\x35\x11\x36\xe3\xb5\x8e\x4f\x93\x8a\x99\x2a\xc9\xfc\x57\xfb\xbc\xe0\xe4\xa6\xad\x0d\xba\x30\xbb\x65\x7c\xe7\x1c\x69\x2a\x75\x00\xaa\x18\x85\xa0\xec\x5c\x6d\x83\xb3\xac\x98\xdc\x21\xcf\x40\x63\x83\x8c\x40\x10\xd0\x41\x94\xf8\xc3\x50\xf8\x35\x38\xb1\x7f\xe8\xbc\x69\x3f\x38\xd5\x6b\x21\x4f\xee\x05\x1e\x6c\xde\x4b\xdc\x36\x08\x53\xa5\xab\x7c\xcb\x38\x7e\x6a\x29\x7d\x73\x7a\xea\x5f\xce\xe5\xf0\xbc\xb4\x30\x0b\xf0\xc7\x21\x3f\x72\x34\xa4\xd5\xd1\x27\xb8\xcd\xb0\x8d\xce\xd2\xf3\xdf\xe2\x6d\xec\xac\x08\x4b\xff\x43\x40\xff\x58\x12\xa9\xdd\xae\xc6\xcd\x0b\x52\xaa\x26\xd1\x38\x31\xe1\x79\x41\xcc\x38\x60\x3b\xc8\xff\x9f\x80\x7d\x3a\x58\xe3\x04\x66\x0b\x58\x7e\xe1\x49\xa6\x38\x02\xd9\xe3\x59\x54\x8d\x94\xa6\xdf\x59\xf3\xf7\xe3\x3f\xf1\x18\x7b\x7b\xcf\x9a\xcf\xea\x52\x69\x8a\x51\x58\x86\x3b\x3c\xda\xd2\xf5\xe9\xf6\x2b\x96\x94\xdb\xb7\x88\x76\x80\x61\x17\x72\x2b\x3c\xc6\xd9\x29\x44\x0e\x1b\xb8\xfe\x32\xf3\x9b\x65\x1a\xfb\xe1\x0e\x8f\x53\x37\x78\x01\x79\xd3\x9a\x2a\x9d\x9f\xe8\x3b\x3c\xae\xed\x9f\x79\x01\xb8\x67\x75\x8b\x6b\xe8\xc1\x5e\xdf\xe1\xf1\xcb\x9c\x8c\xf0\x81\x9c\x04\x1b\x03\x6b\xb0\xee\x1b\xb3\x3c\x5d\x3a\xa2\xe7\x50\x24\x3d\xd6\xb9\xd7\x5d\x78\xbe\x23\xd2\x26\xf6\xb9\x85\xed\x61\x4e\x9d\xee\xe8\x61\x33\x86\xe5\x28\xa3\x74\x61\x09\x59\x90\x39\x74\x13\xf9\x0e\x29\x75\xaf\x11\x3c\xb1\x85\xd4\x93\xfe\xb2\xd9\x40\x2b\x39\x6e\x85\x44\xbe\xea\x70\xbb\xb5\x48\x74\x27\x76\xec\x6f\xef\x2a\x27\x7b\xec\x47\xd7\xa7\xac\x21\xf1\xb0\xfd\x59\xb4\xb9\xde\xc1\x1e\x4a\xf6\x7b\x4b\x16\x5b\x3d\x96\x62\xe8\x58\x63\x5c\xe2\x63\xd2\xc1\xeb\x67\x0b\x2d\x54\x6e\x3a\xa3\x33\x8f\x7d\xbe\x35\xc1\xc4\xe9\xce\x54\xed\x9e\x49\xf1\x1f\xfc\x2c\xf6\x68\x88\xed\x9b\xd1\x0e\x4d\xf7\x45\xaa\x03\x6c\x42\xc3\x19\x07\xba\x6d\x1d\x5c\x1a\x76\x3d\x81\x93\xe3\xd1\x19\x9b\xbd\x6f\x11\x34\xd6\x8c\xc4\x3d\x2e\x64\x8e\x3c\xe4\x2e\xf3\x33\x39\xc1\x82\x70\xcd\x66\xc0\xd0\xe5\x08\x5f\x5c\xbc\x8c\xd0\x0f\x9f\x5f\x7e\xba\xf9\xeb\xdb\xd3\xd7\x93\xba\x14\x87\x17\x99\x7c\xab\xd5\xfe\x5f\xea\x30\x2d\x85\x9d\xdc\x90\xc8\x3a\x88\x27\xa6\x61\xd2\x26\x44\x7c\x98\x07\x59\xcc\x67\xbd\x9d\x26\x3e\xa1\x9a\x13\x12\x54\xa3\xad\x7a\x26\x27\x75\x49\x5a\xc8\xdd\xac\x5e\x7a\xcb\x6e\xd8\xce\xf5\xc3\xea\x90\x73\xb1\xdd\xa6\x64\x32\x48\xf6\x42\xb6\x84\x26\x99\x70\xd8\xa0\x0e\x1c\x7f\x83\x37\xdf\x2b\xf7\x8c\x73\x1f\x7b\x89\xc6\x12\x25\x9d\xb8\xe6\x30\xe9\xcd\x13\xb2\x14\xdc\x7e\x17\x92\x8b\x92\x91\xd2\x49\x97\x76\x03\x5f\x25\x38\x47\x39\x45\xf0\x08\x68\x4b\xf5\x8f\xfa\x8c\x3f\xae\x7b\x00\xfc\x84\xe2\x51\x12\x8a\xc3\x70\x5b\x33\x53\x81\x57\xe5\x7b\x60\x13\x17\xbd\x3c\x06\xf1\xbd\xf2\xfe\xd9\x95\xc1\xa1\x90\xff\x81\xf7\xf9\x21\xf3\x1d\x61\x3f\x28\xf5\x41\xce\x1a\x71\x81\xa6\x51\xd2\xcc\x32\xa0\x03\xe8\xa6\x34\xd8\xc0\xe9\xb8\xa4\xb8\xf2\xe6\xe7\xa9\xb1\xf1\xa1\xf3\xf4\x23\xe0\x30\x78\x71\x51\x12\x30\x03\x82\x5e\x18\x90\x88\x3c\x74\xf2\xbe\xad\x17\x72\xd7\xcb\x88\x66\xb5\x08\x5b\xde\x7d\x9e\x24\x5f\xe3\x47\x45\x3b\x51\x05\x30\xbd\xa7\xfd\xe9\x8e\x65\x94\x7e\xe2\x8c\xeb\x9d\x3b\x40\x37\x2e\xc9\x75\xab\xab\xd9\x00\x67\xe5\x3c\xc9\x7b\xcf\xea\x0c\x2a\x41\x53\x3e\x67\xcb\x80\xee\xba\xd7\x34\x54\x93\x5e\xc0\x17\xd8\x38\x11\xf3\x5e\x78\xe9\x39\x8c\xc7\x79\x98\x4e\x22\x25\x71\x20\x2e\xd8\xef\x37\x6d\x9c\xe1\x9e\x1c\x5c\xfb\x08\xe8\xba\x42\x3b\x20\x0f\x33\x54\xba\x34\xc9\x42\x37\x73\x9a\xeb\x81\x35\x17\xdc\xda\x37\x7c\x18\xd3\x47\x51\xf6\x2a\xa6\xca\xfd\xc9\xc9\x6b\x94\x3b\xaa\xce\x96\x4f\x5b\xb8\x43\xb0\x03\x5e\x3a\x08\x9a\xb6\x66\x97\x95\xcf\xae\xa3\xc8\xe1\x42\x93\x6b\xbf\x58\x6d\x70\x1c\xc3\x15\x93\xbc\xb6\x43\x93\x46\xc6\x8f\x80\x0f\xc2\x90\xed\xc9\xbd\x69\x53\x0f\x3b\x15\xe7\x84\x7b\x3b\x03\x8f\xab\x47\x60\x74\xf6\x2c\xf9\x77\x17\x5c\x1b\x7c\x36\xa2\xb7\x6e\x9b\x27\x5b\xcf\x31\xe9\x20\xe6\x81\x57\x14\x41\xb6\x21\x51\xd7\xd0\x68\x34\x28\x29\x83\xb2\xc2\xf2\xce\x0a\x0a\x13\xcb\x8c\xb1\xd7\xe1\x26\x23\xf8\x65\x33\x36\xc2\x15\x39\x83\xe4\xe7\xa6\x05\xc5\x23\xe5\x76\x34\xf2\xf9\xc0\x8d\x46\xf6\xa4\x07\xc5\x66\x91\xd1\x2b\xee\x86\xee\xb3\x45\x9a\xa7\xe1\x74\x7e\x74\x2f\xcb\xcc\xdd\x9e\x93\x1e\x75\x71\x13\xf0\x15\x51\x63\xd6\x45\xb1\x13\x54\xb5\xb7\x79\xa9\xf6\x05\x1d\x6e\x4d\x71\xab\x14\x19\xd2\xac\x29\x84\x31\x2d\x9a\xe2\xf5\xdb\x37\x7f\x79\xbb\x28\xc5\x20\xd9\x6e\x46\xb5\x94\x2e\x36\x32\xcb\x96\x87\xfb\x8b\x65\xec\x8f\x19\x84\x7b\xa9\xd9\xca\xcf\x15\xc4\x7e\x5b\x84\x81\x9d\x92\x98\x75\x63\x1f\x08\x9a\x11\xc7\x13\x61\x3a\x8d\xcb\x05\x0c\x63\xcf\x3e\x8d\x6e\xb8\xc0\xb0\x5d\x4f\x57\x46\xba\xea\x70\xc0\x17\x1a\x81\x2b\x89\x70\x10\x54\x4d\x81\x71\xac\xd1\xd6\x96\x1f\x9e\x96\x69\x45\x0e\xb1\x67\x33\xd8\xe4\x0c\xdb\x53\xd8\x4d\xf2\x8b\xf3\xd1\x3c\x67\xf2\x90\x34\xa7\xfb\x19\xc4\xf8\x29\xc9\x6f\x68\x7f\x3f\xb1\x9c\xc8\x8b\x02\x58\xd3\xa0\xe4\x11\x32\x10\x12\xca\xaa\x95\xd1\xb5\x8c\x3d\x93\x9d\x70\x9f\x0d\xe1\x57\x38\x9d\xaa\x77\x69\xe8\x9d\x13\x97\x3e\xef\xe9\x4d\x53\x8b\x12\xd3\x53\x17\x3c\xab\xfc\xab\x12\x32\x4d\xfe\x2d\x93\xd5\xb4\xf7\x5b\xde\xc0\xf1\xd5\x1c\xab\x0f\xec\x68\x40\xe3\x56\xa3\xa9\x66\x7d\x76\x4f\x3a\x6f\xe8\xd3\x85\xca\xf4\xf3\x9e\x7d\xe2\x74\x8c\x76\xd9\x3a\xc9\xd9\x30\x65\x8e\x2f\xa1\xf3\x0b\xb4\x53\xca\xc4\xf4\x30\xbe\x73\xcd\x66\x3d\xb8\x95\xea\xef\xab\xed\x30\xf4\xa9\x71\x38\x13\xd7\xe0\x25\x2b\x37\x1f\xad\x96\x8e\xb5\xbb\xb3\xce\xff\x61\xc9\x66\x17\x5c\xb3\x6b\x98\x60\x44\x98\x91\x06\x61\x3e\x0f\xae\x47\x9d\xdb\x30\xad\x5d\x46\x97\x08\xeb\xd1\x95\xc2\x40\xf3\x01\xe9\x63\x3f\xf5\xae\xa3\x09\xb8\x57\xfc\xe8\x62\xf3\xbf\x01\x00\x00\xff\xff\xc1\x95\x06\x52\x15\x18\x00\x00")
func staticAlertsJsBytes() ([]byte, error) {
return bindataRead(
@@ -316,7 +316,7 @@ func staticAlertsJs() (*asset, error) {
return a, nil
}
-var _staticAutocompleteJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x95\x6f\x6f\xdb\x36\x10\xc6\xdf\xfb\x53\x5c\x80\x0c\x92\x10\x4f\xce\xb6\x77\xf2\x94\x2d\x01\x86\x2d\xc0\x90\x61\x69\x8b\xa2\x28\x8a\x80\x91\x4e\xd6\x35\x14\xe9\x90\x27\x27\x6e\xa1\x7e\xf6\x42\x7f\x22\x51\x8a\xed\xa6\xd5\x1b\xd3\xd4\xf3\x3b\x3e\x3c\x9e\x8e\x1b\x61\xe0\xbc\x64\x9d\xe8\x62\x2d\x91\x11\x62\xf0\xb3\x52\x25\x4c\x5a\xf9\x01\x7c\x9e\xcd\x66\x00\x00\xb5\x4c\x38\xb2\x65\x37\x4f\x8a\x18\x62\x18\x11\xd0\x3d\x62\x1c\x56\xe1\x03\x5c\x48\xad\xd3\x5c\x97\x2a\xf5\x07\x5d\xfd\xa4\x82\xcb\xe2\xb5\xbe\x43\x45\x9f\xd0\x44\x8e\x30\xe4\xa7\x59\x1b\x3e\xe4\xc4\x68\xd7\x22\xc1\xf9\x88\xbe\x2f\xd1\x6c\x7f\x98\x36\x58\x68\xc6\x08\xc6\x8e\xea\xa7\x34\x32\x02\xcf\xdd\x47\xf8\xd1\x6a\xf5\x07\xa3\x29\xe2\x9f\xfe\x7f\xf3\xd7\xf5\x3b\x6f\xfe\x8c\x7a\x20\x99\x26\xc2\xa4\x11\x78\x7b\x35\x46\x30\xfe\x4b\x05\xf1\xc5\x36\x02\x8f\x73\xa3\x99\x25\x1e\x12\xbe\x15\xc4\x11\xfc\x76\x7a\x3a\x92\x54\x63\xc2\x96\x59\x46\x09\xa1\xe2\x08\x7e\xf9\xb5\x7f\x55\x05\xcb\x66\x5c\x2d\xdb\x53\x33\x68\xf1\x45\xc7\x16\x26\x12\x85\xf1\x1d\xbc\x19\xac\x90\x27\x35\xb3\x33\x92\x41\x2e\x8d\x9a\xd4\xcd\x28\xd0\x62\x01\x9c\x93\x05\xb2\x50\x5a\x4c\x81\x35\xac\x50\x61\xbd\x69\xb8\x2f\x29\xb9\x83\x8c\x24\xa3\xb1\x90\x69\x03\x52\xdc\xa2\x84\x42\xa7\x42\x76\x36\x5a\xe9\x3f\xa4\xd8\xba\x26\x1a\xe1\xcd\x1d\x6e\xe7\x2d\x73\xb3\x11\x72\x30\x56\xd7\x72\xde\x21\xef\x3f\x2c\xbb\x59\xca\x60\xe0\x20\x8e\xc1\xfb\xd3\x92\x44\x95\x60\xea\xb9\x9b\x5a\x2c\xc0\xb2\x60\x4a\x40\x92\x65\xd0\x59\x17\xab\x36\xd8\x13\xed\xb2\x3d\xd3\x28\xc2\x75\x69\x73\x7f\x88\x1a\xb3\x29\xd1\x0b\x96\xdf\x50\x65\x42\x5a\x47\x56\x01\x4a\x8b\xbb\xdc\x92\xca\xe9\x96\xf8\x7b\xec\xf6\xc8\x21\xbf\xbd\xe8\xb0\xe1\x41\xb6\xdb\xf1\xc8\x12\xde\x97\x42\x82\x50\x29\x28\xad\x7e\x6e\xff\x0d\xbe\x70\x83\x66\xcb\x39\xa9\x55\x83\xee\x5a\x6f\xd8\xfb\x09\x78\xb1\x07\x27\xce\x41\xef\x34\x38\x02\x8e\x9e\x11\xae\x39\xca\x80\x73\x34\xe8\x59\x68\xba\x05\x90\xaa\x27\xba\xf2\xeb\xeb\xd3\xe0\x0a\x1f\xd7\x8e\xed\xb5\x30\x4c\x42\xda\x3e\xd6\x70\x48\x1b\x21\x43\xd6\xaf\xd8\x90\x5a\xf9\x41\x48\x2a\xc5\xc7\xff\x32\xdf\x03\x2f\x80\xb3\x18\x4e\x83\x51\xf3\x39\x0e\x51\x24\xf9\x6e\xd4\xae\x25\x71\x03\xce\x9d\x7a\x7f\xaa\xf3\xda\x42\x30\xed\x63\x7b\xd3\xf6\x65\xc8\x42\x03\x2e\x5f\x08\x1e\x1d\x02\x2b\xe7\x5f\x35\xcd\xeb\x46\xc8\x12\xeb\xaf\x5d\x28\x20\xc5\x43\x32\x41\xa2\xb5\xb0\x80\x42\x1b\x6c\xd7\x1d\x65\xf1\x38\x24\x7b\x55\x16\x68\x28\x19\xd2\x12\x8c\xb3\x56\x7f\xd6\x1b\x21\xcf\x6b\xe1\x2d\x1a\x88\xeb\x03\xb1\x78\xa9\xd8\xdf\x55\x1b\x6d\xe0\x23\xb2\x57\xe2\xca\x77\xb8\x49\xd4\xfd\x59\x38\xdb\x57\x75\x87\xa0\xdf\xf7\x43\xd5\x6c\x3a\x7a\xfa\xed\xfa\x68\x13\x73\xd2\x40\xbb\x57\x83\xe3\x4b\x55\x5f\x13\xf5\xb5\x3c\xdc\x0c\xd7\x75\xbb\x8f\xda\xae\x3f\xcc\xba\x1d\x3c\x9a\xb6\xf4\x41\xf6\xb7\xdb\x64\xa3\x71\xcf\xed\xbd\x54\x7e\x10\x2c\x67\x5f\x03\x00\x00\xff\xff\x74\xf1\x7c\x8a\x4c\x08\x00\x00")
+var _staticAutocompleteJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x95\x51\x8f\xa4\x44\x10\xc7\xdf\xe7\x53\xd4\x92\x33\xc2\xde\x0a\xab\xbe\x31\x72\x7a\x97\x18\xbd\xc4\xac\xf1\xd4\x18\x63\xcc\xa5\x17\x8a\xa1\x6e\x9b\x6e\xb6\xbb\x98\xdd\xd1\xe0\x67\x37\xcd\xcc\xd2\xcd\x1c\x33\x9e\xc7\xcb\x0c\xc5\xff\x57\xfc\xbb\xba\xa8\xce\x2e\x61\x23\xf5\xad\x90\x16\x5e\x49\xad\xab\x46\xf7\xaa\x82\xcb\x0c\x00\xb2\x0c\x78\xd7\xa1\x68\x50\x54\xe9\x3b\xbb\x5a\x65\x97\x80\x8f\x9d\x36\x8c\x15\xbc\xec\x59\x97\xba\xed\x24\x32\xc2\x65\xb6\xda\x0a\x33\x8f\x15\x10\xd7\xbd\x2a\x99\xb4\x8a\x13\xf8\x7b\xb5\x02\x00\x70\x2a\x11\xa8\xd6\x3e\x4c\x8a\x18\x0a\x98\x31\x70\xb8\xc4\x3c\xb1\xc2\x87\xc0\x6c\xec\x75\xee\xaa\x04\xf7\xed\x2f\xfa\x0e\x15\xfd\x85\x26\x0f\x84\x29\x3f\x45\x6d\xfa\xd0\x10\xa3\xed\x44\x89\x57\x33\xfa\xbe\x47\xb3\xfb\x68\xda\x60\xab\x19\x73\x98\x3b\x72\x57\x6f\x64\x0e\x51\xb8\x8e\xf4\x9d\xd5\xea\x6b\x46\xd3\x16\x9f\xfc\xf4\xeb\xb7\x6f\x7e\x8f\xae\xde\xa3\x1e\x48\x56\xa5\x30\x55\x0e\xd1\x49\x8d\x11\x8c\x3f\x50\x4b\xfc\x6a\x97\x43\xc4\x8d\xd1\xcc\x12\xcf\x09\x7f\x13\xc4\x39\x7c\x79\x7d\x3d\x93\x0c\x73\xc2\xf6\x75\x4d\x25\xa1\xe2\x1c\x3e\xff\x62\x7a\x34\x24\xeb\xf1\xff\x10\xec\x9c\x41\x8b\x1f\xb4\x75\x69\x29\x51\x98\x78\x21\xc5\x06\xf9\xa8\x79\x16\x93\x19\xe4\xde\xa8\xa3\x0e\x0a\x73\xb9\x96\x6d\xc8\x02\x59\xe8\x2d\x56\xc0\x1a\x36\xa8\xd0\x2d\x1d\xee\x7b\x2a\xef\xa0\x26\xc9\x68\x2c\xd4\xda\x80\x14\xb7\x28\xa1\xd5\x95\x90\x81\x93\xbd\xfc\x7b\x52\x6c\x43\x1f\xa3\xf8\xed\x1d\xee\xae\xf6\xdc\xdb\xad\x90\xde\x9b\x43\x9b\x03\xf2\xc7\x9f\xeb\x43\x94\x6a\xf0\x1c\x14\x05\x44\xdf\x58\x92\xa8\x4a\xac\xa2\x70\x5d\x59\x06\x96\x05\x53\x09\x92\x2c\x83\xae\x0f\xb9\x9c\xc9\x89\xd8\xbf\x76\x62\x46\x45\xda\xf5\xb6\x89\x7d\xd6\x82\x4d\x8f\x51\xb2\xfe\x0f\x55\x2d\xa4\x0d\x64\x03\xa0\xb4\xb8\xe4\x96\x54\x43\xb7\xc4\xff\xc7\xee\x84\x9c\xf3\x3b\x89\xce\x1b\xf6\xb2\x65\xc7\x33\x4b\x78\xdf\x0b\x09\x42\x55\xa0\xb4\xfa\x6c\x7f\xe7\x7d\xe1\x16\xcd\x8e\x1b\x52\x9b\x11\x5d\x7a\x9f\x5f\xfb\x73\x88\x8a\x08\x9e\x07\x1b\xbd\x68\x70\x06\x5c\xbc\x47\x84\xe6\xa8\x06\x6e\xd0\xe0\xa7\x16\xc6\xb9\x01\xa4\x5c\xe0\xd0\x82\x53\x8f\x1a\xdc\xe0\x63\x17\xd8\xee\x84\x61\x12\xd2\x4e\xb9\xfc\x26\x6d\x85\x4c\x59\xff\xcc\x86\xd4\x26\x4e\x52\x52\x15\x3e\xfe\x58\xc7\x11\x44\x09\xbc\x28\xe0\x3a\x99\x8d\xa1\x67\x29\x8a\xb2\x59\x46\x6d\x27\x89\x47\xf0\x2a\xe8\xf7\xa7\x3e\x77\x16\x92\xe3\x89\x76\xb2\x6c\xff\xf8\x2a\x8c\xe0\xfa\x03\xc1\x8b\x73\xe0\x10\xdc\x0d\xc7\x75\xdd\x0a\xd9\xa3\xfb\xe2\x85\x02\x52\xec\x8b\x09\x12\xad\x85\x0c\x5a\x6d\x70\xff\xde\x59\x15\x9f\xa5\x64\x6f\xfa\x16\x0d\x95\xbe\x2c\xc9\xbc\x6a\xee\xb3\xde\x0a\xf9\xd2\x09\x6f\xd1\x40\xe1\x36\xc4\xe2\x6b\xc5\xf1\x52\x6f\xec\x13\x5f\x90\xbd\x11\x37\x71\xc0\x1d\x65\x3d\x5d\x85\x17\xa7\xba\xee\x1c\xf4\xd5\x69\x68\x58\x1d\xff\x7b\xfa\x3d\x8c\xd2\x31\xe7\x7c\x86\x1e\x9e\x78\xc3\xaf\x95\x3b\x2f\xdc\xf9\xec\x8f\x88\x37\x6e\xe6\xe7\xfb\xd1\xef\xa3\xe1\x0c\xcf\x8f\x87\xba\x97\x7d\x17\xce\xd8\x7c\x3e\x72\x27\x2b\x43\x9c\x24\xeb\xd5\xbf\x01\x00\x00\xff\xff\x24\xb9\x15\xfd\x9f\x08\x00\x00")
func staticAutocompleteJsBytes() ([]byte, error) {
return bindataRead(
@@ -356,7 +356,7 @@ func staticBaseCss() (*asset, error) {
return a, nil
}
-var _staticColorsJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\x4d\x6f\xdb\x30\x0c\xbd\xe7\x57\x70\x5d\x51\xd9\xa8\x93\xec\x6c\xc3\xc3\x86\x0e\x28\x0a\xec\x56\xec\x14\xf4\xa0\xd8\xb4\xa3\x45\x95\x03\x51\x6e\x11\x14\xf9\xef\x83\xe4\x8f\x48\x8e\xd7\x36\xa7\x88\x7a\xe4\xa3\xc8\x47\xfa\x85\x6b\xb8\x6b\x64\xa3\x09\x72\x88\xaa\x56\x15\x46\x34\x2a\x8a\xe1\x6d\xb1\x58\x00\x00\x58\x40\xe1\x00\x89\x3b\xdb\x1f\x19\x6e\x44\xe1\xdc\x7e\xf3\x2d\x4a\xca\xce\x58\x3a\x60\x21\xb8\xec\xec\x90\xc3\xdb\xe8\xc5\x7e\x90\x90\xa8\x0a\x2c\x53\xa8\xb8\x24\x64\x29\x30\x69\x71\xcb\x92\xab\x1a\x35\x4b\x66\xb1\x46\xb7\x1e\x94\xda\xa2\x40\xa2\x00\x2b\xd4\x4e\x6c\x85\xf9\x5c\x60\x0f\x3c\x1f\xd9\x61\x4f\x59\xff\xfe\xf6\x50\x72\x83\x90\xc3\x58\x1b\x57\x8d\x5f\xdc\xf0\xd8\x7b\x5c\x31\xd4\x70\xbc\xcd\xc2\x38\x35\x9a\x3b\xc9\x89\xfc\x48\x7b\x3c\x26\xf0\xc2\x65\x8b\x7e\x28\x5b\x45\x97\x11\xe4\xb0\xc7\x23\xdc\x82\xcd\x11\x6e\x3b\x64\x36\xe2\x44\x05\x36\x02\xe4\x39\x30\x2e\x51\x1b\xc5\x9f\x91\xf9\x91\xec\x4f\xa3\x69\xb5\x1a\xde\x78\xd0\xe2\x99\xeb\x23\xcb\x00\xd6\xeb\xa1\x57\x50\x70\x42\xa8\x1a\x0d\x63\x98\x2e\x81\x04\x5e\x77\xa2\xd8\x81\x20\x30\x3b\x04\x77\xd1\x54\x1d\x6a\x24\x39\x01\x4a\x42\x97\x4d\xd0\xfb\x8d\x0b\xf1\x04\x5f\xf2\x1c\x5a\x55\x62\x25\x14\x96\xff\xc9\x6e\xce\x31\x9b\x63\xe8\xa4\xba\x7a\xa0\x47\x27\x41\xe7\x60\x8b\x10\xbf\xff\x6c\xa1\xaa\x86\x5d\x04\x7c\xcf\xe3\x95\x6b\x25\x54\xed\x3b\x5d\xf4\xf3\xd1\x1c\x25\x7e\xdc\xcf\xf5\xda\x82\x3b\x61\x40\xc9\x0d\x4f\x7a\x2e\x2c\x81\x13\x14\x44\x40\x2e\x12\x19\x2d\x54\x1d\xe8\x80\x7a\x8a\xab\xab\xb0\xef\x9d\xdc\x36\x7b\x3c\x4e\x0a\x0c\x37\x37\xe0\x5d\x6e\x5c\x36\x1f\x34\xc1\x8d\xf8\x20\xdd\xc0\x2f\x0b\x70\x43\x32\x6c\xcb\x8b\x7d\xad\x9b\x56\x95\x4b\xe7\x93\x82\xae\xb7\x3c\xb2\x1a\xdd\x14\xab\xf3\xed\x4a\x63\x99\x40\x60\xa9\x35\xa2\x9a\xd8\xb6\xb2\xc5\x89\x89\xcb\xc3\x8e\x3f\xad\xfe\x36\x42\x45\x2c\x01\x16\xdb\x29\x88\x33\x60\x73\x19\xdd\xe6\xc0\x66\xf2\xa8\x1a\x65\x86\x0c\xdc\xff\x91\xdb\x9d\x06\x56\x77\xf8\x04\xdf\x69\x31\x15\xad\x25\xbf\x9c\x72\x4f\x99\xc1\xb0\xfb\x55\xef\x23\x5c\x47\xec\xab\x1b\x26\x62\xf1\xca\x2a\x23\x62\xdd\x6a\xed\xca\xba\x74\x52\xb4\x77\x74\x90\xc2\x44\xcc\xa6\x34\xf2\x39\x29\xf8\x73\x30\x51\xe2\x0c\x5f\x74\xbd\x12\xea\xa7\xd6\xfc\xd8\x49\xb5\x9f\xa6\xfb\x30\xe9\x28\x8e\xe1\x7b\x0e\xdf\xa6\x5c\x4a\x18\x9f\xc2\xfb\x08\x90\xcf\x75\xf1\x71\x80\xdc\xb7\x51\x18\xb5\xcf\xec\xec\xfe\xa0\x84\x49\x1d\xd9\x79\x69\xff\x71\x3b\x38\xed\x77\xf1\xd9\x7e\x8f\x26\x1d\x07\x31\x30\xbb\x55\x9b\x8e\x4b\x37\xb8\xf3\xdf\x9a\x4e\x3b\x76\x46\x06\x3b\x26\x0d\x4b\x3d\x3e\xe1\x14\x47\x71\xb6\xf8\x17\x00\x00\xff\xff\x31\xb4\x0b\xd7\x45\x07\x00\x00")
+var _staticColorsJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\x41\x6f\xdb\x3c\x0c\xbd\xe7\x57\xf0\xd3\x57\x14\x76\xeb\x24\x3b\xdb\xf0\xb0\xa1\x03\x8a\x02\xbb\x15\x3b\x05\x3d\x28\x32\xed\x68\x51\xe5\x40\x94\xdb\x05\x45\xfe\xfb\x20\x39\x76\xa4\xc4\x6b\x9b\x53\x44\x3e\xf2\x51\xd4\x23\xbd\xbc\x01\xfc\xb3\x6b\x8d\xc5\x0a\xee\x5a\xd5\x1a\x82\x9b\xe5\xec\x85\x9b\xe1\x54\x42\x52\x77\x5a\x58\xd9\xea\x24\x85\xb7\xd9\x0c\x00\xc0\xf9\x85\xf7\x67\xfe\xec\x7e\x64\xb9\x95\xc2\x47\xfd\xe4\x6b\x54\x54\x9c\xb0\xb4\x43\x21\xb9\xea\xed\x50\xc2\xdb\x18\xc5\xbe\x91\x54\xa8\x05\x56\x39\xd4\x5c\x11\xb2\x1c\x98\x72\xb8\x79\xc5\x75\x83\x86\x65\x93\x58\x6b\xba\x00\x4a\x9d\x10\x48\x14\x61\xa5\xde\xc8\xb5\xb4\x9f\x4b\x1c\x80\xa7\x33\x7b\xec\x21\xb8\x52\xb7\xab\xb8\x45\x28\x61\xec\x8e\x6f\xc8\x0f\x6e\x79\x1a\xdc\x4f\x0c\x5d\x1c\xbd\xc5\x45\xaa\x06\xed\x9d\xe2\x44\x61\xb2\x2d\xee\x33\x78\xe1\xaa\xc3\x30\x9b\x43\xfb\xba\xa0\x84\x2d\xee\xe1\x16\x5c\xa5\x70\xdb\x23\x8b\x11\x27\x6b\x70\x19\xa0\x2c\x81\x71\x85\xc6\x6a\xfe\x8c\x2c\xcc\xe4\x7e\x06\x6d\x67\xf4\x70\xd3\x9d\x91\xcf\xdc\xec\x59\x01\xb0\x5c\x0e\x2f\x06\x82\x13\x42\xdd\x1a\x18\xd3\xf4\x05\x64\xf0\xba\x91\x62\x03\x92\xc0\x6e\x10\xbc\xa3\xad\x7b\xd4\x48\x72\x00\x54\x84\xbe\x9a\x48\x01\x2b\x9f\xe2\x09\xfe\x2b\x4b\xe8\x74\x85\xb5\xd4\x58\xfd\xa3\xba\xa9\xc0\x62\x8a\xa1\xd7\xeb\xe2\x81\x1e\xbd\x10\x7d\x80\x6b\x42\xfa\xfe\xb5\xa5\xae\x5b\x76\x91\xf0\xbd\x88\x57\x6e\xb4\xd4\x4d\x18\x34\xf5\xa4\x8f\x76\xaf\xf0\xe3\x27\x5d\x2e\x1d\xb8\x97\x07\x54\xdc\xf2\xec\x48\x87\x15\x70\x02\x41\x04\xe4\x33\x91\x35\x52\x37\x91\x14\xe8\x48\xc1\x58\xfc\xf4\xbd\xe8\x56\x5b\xdc\x9f\xf5\x18\xae\xaf\x21\x70\xae\x7c\x35\x1f\xbc\x83\x9f\xf5\x41\xc0\x51\x5c\x11\xe1\xc6\x62\xd6\x5c\x6c\x1b\xd3\x76\xba\x9a\xfb\x98\x1c\x4c\xb3\xe6\x89\x93\xe9\x4a\x2c\x4e\xde\x85\xc1\x2a\x83\xc8\xd2\x18\x44\x7d\x66\x5b\xab\x0e\xcf\x4c\x5c\xed\x36\xfc\x69\xf1\xbb\x95\x3a\x61\x19\xb0\xd4\x0d\x42\x5a\x00\x9b\xaa\xe8\xb6\x04\x36\x51\x47\xdd\x6a\x3b\x54\xe0\xff\x8f\xdc\xfe\x34\xb0\xfa\xc3\x27\xf8\x0e\xb3\x73\xdd\x3a\xf2\xc9\x59\x0f\xf4\x19\x8d\x7c\xd8\xf8\x63\x92\xab\x84\xfd\xef\x47\x8a\x58\xba\x70\xe2\x48\x58\xbf\x66\xfb\xce\xce\xbd\x20\x9d\x8f\x76\x4a\xda\x84\xb9\xaa\x2e\x28\x65\x38\x11\x67\x82\x9c\xe0\x4c\xae\x16\x52\x7f\x37\x86\xef\x7b\xc5\x1e\xe7\xea\x3e\x2e\x3c\x49\x53\xf8\x5a\xc2\x97\x29\x3e\x2d\x6d\x48\x13\x7c\x18\x28\xe4\xbb\xf8\x60\x40\x19\xda\x28\xce\x7c\xac\xee\x14\xfe\xa0\xa5\xcd\x3d\xd9\x69\x91\xff\xf2\x4b\x39\x3f\x2e\xe7\x93\xfd\x1e\x6d\x3e\xce\x64\x64\xf6\x8b\x37\x1f\x57\x70\xe4\x0b\xef\x9b\x9f\xbf\xdc\x09\x19\x6d\x9c\x3c\x6e\xf7\x78\x85\x43\x9a\xa4\xc5\xec\x6f\x00\x00\x00\xff\xff\xe7\x4d\x8a\x44\x6e\x07\x00\x00")
func staticColorsJsBytes() ([]byte, error) {
return bindataRead(
@@ -376,7 +376,7 @@ func staticColorsJs() (*asset, error) {
return a, nil
}
-var _staticConfigJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x58\x6d\x6f\xdb\xb6\x13\x7f\xef\x4f\x71\xed\x3f\xf8\x4b\x46\x15\x39\x6b\xb1\x0e\x53\x60\x0c\x45\x80\x04\x19\x86\x34\x4b\xd6\xed\x45\x91\x17\x8c\x7c\xb6\xd8\xca\xa4\x42\x52\x76\x8b\x36\xdf\x7d\xe0\x83\x9e\x28\xda\x4e\x3b\x54\x6f\x62\x89\xc7\x7b\xf8\xdd\xdd\x8f\xbc\xcc\x66\xf0\x41\x16\x94\x29\x40\xb9\x41\x21\x29\x67\x19\xbc\x9e\x4c\x36\x44\xc0\xdb\x4a\x51\xce\x60\x0e\xf1\xb2\x66\xb9\xfe\x1d\x57\x44\x90\xb5\x9c\xc2\x97\xc9\x64\x02\x00\x90\x97\x44\x4a\xe0\x46\xf0\xcc\xfc\xfe\x62\x17\xcc\x22\x67\x52\x89\x3a\x57\x5c\xf4\x36\x42\xef\x51\x05\x95\xe9\x19\xe7\x1f\x29\xc2\x1c\xac\x8c\x7b\x3f\x1d\x0b\xfe\x59\xa3\xf8\x7c\xad\x85\x3a\xe1\xee\x5b\x60\xc3\x2d\x96\xa8\xad\x77\xe2\xcd\x97\x80\xf0\x05\xaa\x4e\xee\x02\x95\x42\x01\x5f\xbf\x42\x1b\xba\xef\xbb\x7e\x04\xaa\x5a\x30\x38\x8a\x07\xe6\xa6\x29\x95\xf1\xf3\x2c\x2f\x30\xff\x88\x8b\xe7\xd3\xa1\xb1\xc7\xa0\xa3\xaa\xef\xe3\xc8\xf6\x86\x94\x21\xf3\x23\xbb\xf7\x9c\x2b\xa9\x04\xa9\x6e\xb7\x54\xe5\x45\x1c\x49\x45\x14\x46\x09\x1c\xa5\x15\x11\x12\x7f\xbf\x7d\x7b\x65\x94\x25\xa0\x44\x8d\x4f\xf0\xec\x4d\xee\x6a\xc0\x39\xe7\xde\xc7\xce\x85\x36\x5f\x32\xda\x8b\xcb\xbc\x1d\x42\x54\xd7\x1d\x96\xa8\x33\xac\x55\x9c\x1e\x8e\x99\xb3\x38\x92\x26\xdc\xb3\x82\xb0\x15\xfa\x20\x44\x49\x67\x11\x37\xc8\x54\x02\x3b\xe0\xd4\x8f\xb6\x9d\xde\x92\x0d\x9a\xb0\xc6\xe6\x5b\x99\x37\x5d\xf0\x63\xa9\xc7\xdd\xc8\x3e\x76\xfd\xf1\x07\x27\x8b\x11\x08\x1a\x80\xbc\x16\x02\x99\xfa\x9b\x94\x0e\x06\x5d\x8f\xf1\xf4\x74\x32\x92\xdc\x18\x11\xdb\x31\x32\x5d\xa1\x8a\x7b\x2d\xe5\x39\x41\x97\xa0\xdd\x85\x67\xf3\x39\xd4\x6c\x81\x4b\xca\x70\x11\xc2\xa1\x29\xc9\x40\x70\x8f\x63\x17\x1e\x60\x0e\xa6\x0b\x6f\x95\xa0\x6c\x95\x5e\xeb\x42\x8b\x03\xb6\x1f\xde\x7b\x5d\x7c\xf7\x0d\xae\x8c\x37\xef\xf7\x4c\x1b\xec\xc1\xf8\x6c\xbe\x2b\xe9\xbd\x2a\x0f\xc6\x1b\xd0\xdf\x96\x87\xa7\xae\x49\x83\x1c\xa6\xc1\xd4\x5b\x12\x30\x8d\x9f\x2a\x2a\x50\x66\xf0\xea\xf5\xcf\xc9\x68\xb5\x22\xaa\xc8\x20\x8a\x86\xfe\x4c\x47\x95\xe4\xfe\x38\x2a\xea\xac\x5c\xe1\x36\xeb\x33\xb3\x15\x3e\x9d\x4c\x1e\xe3\xa9\x2e\x25\x43\xf1\x67\x9c\x2d\xe9\x6a\x40\xf1\x1d\xb9\x6b\x01\xab\x40\xc2\xdc\x74\xb8\xfd\x5e\x72\xb2\x38\x17\x7c\xed\xe2\x85\x79\xb8\xa5\x8f\x52\x24\x79\x11\x3b\x0d\xbd\x2e\x64\x64\x8d\x89\xd3\x1c\x2a\xff\x0d\x29\x6b\x7d\x1e\x58\x89\xd4\xb6\x49\xb0\x96\x6b\x3c\x5c\x42\x4e\x8b\xab\xe7\x31\xe9\x4d\x7c\x6c\xdb\x38\x05\x4a\xc3\xcb\xc1\xe8\x66\x33\x53\x3a\x40\x25\x30\xae\x34\xc7\x29\xe0\xcb\x16\xaf\x35\xa9\x26\x7e\x5d\x08\x5c\xf3\x0d\xc6\xcf\x17\xb8\x24\x75\xa9\xce\x69\xa9\x50\xa4\x9b\x97\xfd\x13\xe2\xbb\x40\xf3\x0c\xb8\x88\x47\x24\x30\x0a\x90\x5a\x7e\x0e\x9d\xee\xbd\x30\x73\x5e\x7d\x6e\x28\x09\x96\xc6\x69\xb8\xaf\x95\xe2\x0c\x88\xd9\xd7\x0a\x33\xdc\xc2\x59\x49\xab\x7b\x4e\xc4\x22\x6e\x8f\xf3\xea\x73\xc3\xd6\x7e\x17\x28\xfc\xa4\xb2\x1e\x3d\x97\xb8\xde\x75\x28\xdc\x13\x89\xef\x84\x66\xbb\xf7\x25\xcf\x89\x89\xb0\x12\x5c\xf1\x9c\x97\x09\x44\xb3\x59\x94\x40\xbb\x50\x70\xa9\x7a\xaf\xba\x95\x34\x7e\x77\xe9\x07\x4e\x59\x1c\x45\x01\xca\x36\x54\xa6\xd9\x45\x5b\x88\x1e\xe6\x11\xbc\x00\x9b\x21\xc3\xbe\xee\x67\x3c\x75\x2a\x92\x68\x7a\x17\x38\x9c\xbe\x27\x7b\xcd\x63\xac\xa7\x55\x2d\x1b\x05\xfd\x0b\xcf\x0b\x88\x8c\x4b\x6e\xc5\x9c\x07\xa9\xe2\x96\x73\x4d\x43\xfb\xea\xfc\x33\xc8\xf8\x67\x21\x4e\x97\x94\x51\x59\xc4\xd3\x74\x49\x16\xf8\xb6\x56\xf1\x4f\x27\x27\xf6\xe5\x92\xc5\xaf\x4e\x4e\x02\x5b\x1d\xbf\x34\x69\x78\x01\xd1\x6f\xda\x1f\xeb\xb4\xc5\xe4\xff\x3e\xae\xc3\xde\xea\xd7\x94\x24\x1b\x04\x89\x4a\x51\xb6\x92\x3b\xaa\xe9\xa8\xa9\x20\xcd\xb7\xc3\xf3\x3e\x2f\x69\xfe\x71\x70\xb0\x07\x2a\x47\x67\xd4\x95\xeb\xfc\x40\x2a\x4f\x77\xf2\x78\xe4\x37\xab\xb6\x6a\x7e\xff\x00\x46\xdf\x13\xf5\x37\x64\xcc\xc7\xda\xd2\xd8\x53\xc1\xbe\xd1\xd2\xdf\x81\xb6\x3d\x49\xec\x76\x9f\xad\xfb\xd7\x83\x1b\xcb\x51\xd1\x83\x8f\x7a\xdb\xad\x02\x4b\x8f\xf1\xfd\x88\x0a\xa5\x2a\x99\xcd\x66\x2b\xaa\x8a\xfa\x3e\xcd\xf9\x7a\xa6\xb6\xf7\x72\xd6\xde\xfc\x66\x54\xca\x1a\xe5\xec\xe5\xc9\xaf\xbf\xf4\x42\x5c\xf0\xbc\x5e\x23\x53\xc3\xb0\xa2\x74\x21\x78\xb5\xe0\x5b\x76\xbc\x46\x56\x0f\xdf\x8e\x97\x5c\xac\x07\xb1\xfb\x81\x63\x2a\x15\xaf\xae\x05\xaf\xc8\x8a\xd8\x63\x62\x87\xe7\x0e\xa2\x2b\xdc\xda\xc9\x2a\x0e\xb1\x78\x06\x11\xa9\x15\xbf\xc1\xa5\x40\x59\x44\xc9\x18\x48\x43\x08\x4e\x4c\x04\xc5\x9a\xf4\x65\x10\xfd\x6f\xb7\x94\xbd\xf4\x64\x07\xa7\x0c\x77\xd6\xee\xa2\xad\x77\x4c\x22\xa6\xff\x10\xaa\xce\xb9\xb8\xc2\x4f\xea\x66\x94\xbf\x16\x0d\xc0\x52\xe2\x5e\x3d\xd7\xa4\x1e\xdf\x1e\x61\xc0\x25\xb0\x9b\x59\x9e\x8a\xb0\x03\xe4\x92\x29\x14\x1b\x52\xee\x43\xf9\x30\xc2\x4e\xe2\x98\x86\xb5\xe9\xb1\x27\xfb\x11\x43\x4f\x6e\xc6\x9d\x7e\x6d\xee\x4a\x51\x37\x29\x98\xd1\xe5\x62\xdc\xa1\xcd\xf3\x83\xc6\x9f\x21\x22\x76\xb8\x3e\x80\xc9\xae\xd1\x7a\x43\x4a\xdf\xf9\x47\x3f\x37\x9e\xfa\xa7\x4e\xcf\x5a\xb5\x19\x93\x2f\x99\x9d\x7d\xf6\xdb\x79\x6a\xff\xd8\xc2\xbe\x45\xe5\x7a\xfa\x86\x28\xdc\x6f\x67\x58\xdc\xdf\x5c\xdd\xb2\xe0\xdb\xf3\x92\xec\x67\x8f\x65\x40\xa0\x5f\xd5\x5a\xc9\xb1\x15\xfa\x8f\x6c\x56\x55\xc8\x16\x7f\xf1\x6a\x2f\x97\x19\x21\x35\x12\x1a\x30\x99\x91\x39\xd6\x42\x63\x8f\xda\x3b\x2d\x6b\xfc\x09\x5f\x6c\x9b\x8d\xdd\x6c\x03\x73\x73\x6f\xb5\x9b\x74\x38\x8d\x74\x97\x14\x77\xe9\xd2\x9d\x1c\x8f\x3e\xcb\xf7\xa3\xdb\xda\x5d\x3b\xbc\x78\x17\xee\x15\xaa\xb1\x73\x0f\xed\xbe\xbe\x83\xae\xfe\x1b\x1b\x9d\xd0\xdd\x68\x4a\xf1\x06\x3f\x4b\x38\xfa\x6e\x9f\x0c\xfe\xd5\x90\xf9\x83\x5b\xb7\x6c\x4e\xed\xcc\xde\x14\x92\xfe\x04\x69\xbd\xcd\x3a\x54\xbb\xd5\x8b\x26\x96\xac\x0b\xcb\x9b\x31\xff\x0d\x00\x00\xff\xff\xff\x0c\x2e\xf6\x5d\x14\x00\x00")
+var _staticConfigJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x58\x5f\x6f\xdb\x36\x10\x7f\xf7\xa7\x60\xb5\x60\x90\x5b\x45\xca\x5a\xac\xc3\x14\x18\x43\x11\x20\x41\x86\x21\xcd\x92\x75\x7b\x28\xf2\x40\x4b\x67\x8b\xa9\x4c\x2a\x24\x65\xa7\x58\xfd\xdd\x07\xfe\x91\x44\x89\xb2\x9d\x74\x88\x5e\x62\x89\x3f\xde\x3f\xde\xfd\x78\x97\x24\x41\xf7\xa2\x20\x54\x22\x10\x6b\xe0\x82\x30\x9a\xa2\xf7\x93\x49\xf2\x1a\x2d\x4b\x36\xc7\xa5\x40\x67\x25\xa9\xe6\x0c\xf3\x1c\xbd\x4e\x90\x7a\x92\x04\x65\xcd\xb7\xf8\x5e\xf4\xb0\x8c\x7d\x21\x20\x1a\xa4\xc6\xde\x8b\x38\xd3\x9f\x15\xd6\x05\x9f\x93\x52\x02\x17\x11\xfa\x44\x05\x40\x84\xfe\xac\x81\x7f\xbd\x95\x9c\xd0\x25\x7a\x9d\x68\x28\x3c\x56\x8c\x4b\xc8\xd1\x19\xa3\x0b\xb2\xfc\x58\x49\xc2\xa8\x5a\x5c\x63\xde\xff\x36\x43\xe1\xa2\xa6\x99\xfa\x1d\x4e\xd1\xbf\x93\x89\xd2\x9e\x95\x58\x08\xc4\x34\xe2\x4c\xff\xb6\x0b\x7a\x91\x51\x21\x79\x9d\x49\xc6\xc3\x0a\x73\xbc\x12\x6a\x1f\x72\x1e\x59\x10\x11\x1b\x97\xd0\x0c\x19\x8c\x7d\x3f\xf5\x81\xda\xfc\x6b\x05\xea\xc0\xdd\xb7\x91\x0d\xb7\x50\x82\xd2\xde\xc1\x9b\x2f\x23\xe0\x0b\x90\x1d\xee\x02\xa4\x04\x8e\xbe\x7d\x43\x3d\x9f\xd1\xe0\xe1\x20\x6b\x4e\xd1\x51\xd8\x53\x37\x8d\x89\x08\x83\x34\x2b\x20\xfb\x02\x79\x30\xed\x2b\xdb\x8e\x1a\x2a\x5d\x1b\x3d\xdd\x6b\x5c\x8e\xa9\xf7\xf4\xce\x19\x93\x42\x72\x5c\xdd\x6e\x88\xcc\x8a\x30\x10\x12\x4b\x08\x22\x74\x14\x57\x98\x0b\xf8\xfd\xf6\xe3\x95\x16\x16\x21\xc9\x6b\x78\x82\x65\x1f\x32\x7b\xf8\xd6\x38\xfb\x3e\x08\xcc\xd8\xce\x4b\x4a\x1c\xa7\xf4\xdb\xa1\x70\xaa\x9c\x83\x12\xd4\xf1\x2a\x11\xa7\x87\x1d\x66\x34\x0c\x84\xf6\xf5\xac\xc0\x74\x09\xc3\x08\x04\x51\xa7\x11\xd6\x40\x65\x84\x76\xc4\x52\x3d\x4a\x77\x7c\x8b\xd7\xa0\x63\xe4\xab\x6f\x31\x1f\xba\x63\xf1\x51\xdb\xdd\x61\xdd\x76\xc5\xf1\x07\xc3\xb9\x17\x04\x15\x80\xac\xe6\x1c\xa8\xfc\x1b\x97\x36\x0c\x2a\x19\xc3\xe9\xe9\xc4\x43\xae\x35\xc4\x32\x42\xbc\x04\x19\x3a\xf5\x34\x30\x82\x2c\x90\x32\x17\xbd\x9a\xcd\x50\x4d\x73\x58\x10\x0a\xf9\x58\x1c\x9a\x7c\x1c\x71\x6e\xeb\x9b\xf0\x80\x66\x2e\xab\xc4\xd7\x2a\xcb\xc2\x11\xdd\x0f\x9f\x07\x25\x7c\xf7\x0c\x53\xfc\xcd\xfb\x2d\x53\x0a\x9d\x30\xbe\x9a\xed\x3a\x74\x27\xc5\x47\xfd\x1d\x91\xdf\xa6\xc7\x40\x5c\x73\x0c\xa2\x7f\x0c\x3a\xdf\xa2\x11\xd5\xf0\x58\x11\x0e\x22\x45\xef\xde\xff\x1c\x79\xab\x15\x96\x45\x8a\x82\xa0\x6f\xcf\xd4\xcb\x24\xfb\xc7\xf2\x50\xa7\xe5\x0a\x36\xa9\x4b\xcb\x06\x7c\x3a\x99\x6c\xc3\xa9\x4a\x25\x9f\xf9\xfb\x9c\x3f\xce\xf6\x6a\xdd\x08\x15\x68\xa6\xab\xbe\xfd\x5c\x32\x9c\x9f\x73\xb6\x6a\xee\xa7\xd9\x78\xa5\x1f\xc5\x80\xb3\x22\xb4\x42\x9c\xe2\xa4\x78\x05\x91\x15\x3e\x56\x15\x6b\x5c\xd6\xea\x8e\x30\x88\xd8\x54\xcf\x68\x8a\xd7\x70\x38\xb3\xac\x14\x9b\xe6\x3e\x11\x4e\x86\x21\x77\x5d\xe5\x20\x34\x5d\x8f\x3a\x98\x24\x3a\xa9\x10\x11\x88\x32\xa9\xd8\x4f\x22\xb6\x68\xa3\xb6\xc2\xd5\x64\x98\x31\x1c\x56\x6c\x0d\x61\x90\xc3\x02\xd7\xa5\x34\x97\x76\xbc\x7e\xeb\x5e\x1c\xdf\x15\xb7\x81\x02\xeb\xb4\x47\x0f\x63\x3e\x12\x43\xde\xad\x9a\xee\xfa\x76\x3d\xcd\x58\xf5\xb5\xe1\x2b\xb4\xd0\x76\xa3\x79\x2d\x25\xa3\x08\xeb\x7d\x2d\x98\xc2\xa6\x6b\x73\xc2\xf6\xa2\xaf\xbe\x36\x54\x3e\x2c\x11\x09\x8f\x32\x75\xb8\xbb\x84\xd5\xae\x1b\x63\x8e\x05\x7c\xe2\x8a\x0a\x3f\x97\x2c\xc3\xda\xc9\x8a\x33\xc9\x32\x56\x46\x28\x48\x92\x20\x42\xed\x42\xc1\x84\x74\x5e\x55\x9d\xa9\x10\xde\xc5\xf7\x8c\xd0\x30\x18\x5e\xd6\x8d\x8e\x07\x45\x3d\x4a\x43\xf0\x30\x0b\xd0\x9b\xa6\xb3\x52\xd4\x6c\x7f\x86\x53\x2b\x22\x0a\xa6\x77\x23\x37\xd7\xf7\x1c\x60\xf3\x68\xed\x71\x55\x8b\x46\x80\xdb\x0a\xbd\x41\x81\x36\xc9\xae\xe8\xcb\x22\x96\xcc\x10\xb2\xae\xf6\xa1\xb8\xe1\x05\xa5\xed\x33\x21\x8e\x17\x84\x12\x51\x84\xd3\x78\x81\x73\xf8\x58\xcb\xf0\xa7\x93\x13\xf3\x72\x49\xc3\x77\x27\x27\x23\x5b\x2d\xf9\x34\xc7\xf0\x06\x05\xbf\x29\x7b\x8c\xd1\x26\x26\x3f\x7a\x4d\x50\x2f\xfb\xdc\x9c\x12\x78\x0d\x48\x80\x94\x84\x2e\xc5\x8e\x6c\x3a\x6a\x32\x48\x91\x71\xbf\x19\xc8\x4a\x92\x7d\x71\x6f\xfd\x31\x32\xb1\xa9\x3a\x3b\x70\x8c\xa7\x3b\x09\xde\xaf\xd5\xc8\x0a\x7d\x01\xaa\xdf\xe3\xf1\x33\x4e\x6b\x18\x67\xc3\x62\x4f\x0d\xf4\x8d\x42\x3f\x33\xd2\xe6\x26\x31\x5b\x87\x5c\xed\xf6\x0c\x37\x96\xff\x1e\x86\x11\x6f\xab\x94\x43\x39\xe0\xfb\xa1\x37\x85\x94\x95\x48\x93\x64\x49\x64\x51\xcf\xe3\x8c\xad\x12\xb9\x99\x8b\xa4\x6d\x07\x13\x22\x44\x0d\x22\x79\x7b\xf2\xeb\x2f\x8e\x7b\x39\xcb\xea\x15\x50\xd9\x77\x29\x88\x73\xce\xaa\x9c\x6d\xe8\xf1\x0a\x68\xdd\x7f\x3b\x5e\x30\xbe\xea\xf5\x95\x43\xc7\x21\x16\x92\x55\xd7\x9c\x55\x78\x89\x4d\x68\x76\x58\x6e\x43\x74\x05\x1b\x33\x64\x85\x63\x04\x9e\xa2\x00\xd7\x92\xdd\xc0\x82\x83\x28\x82\xc8\x0f\xa4\x26\x02\x0b\xe3\xa3\xb0\xe6\xe8\x52\x14\xfc\xb0\x1b\x65\x3a\xa1\xf4\xe0\xdc\x61\x6f\xda\x5d\x74\xa5\xa7\xcd\xf8\x1f\x4c\xe4\x39\xe3\x57\xf0\x28\x6f\xbc\xf3\x6b\xa3\x81\xa0\x14\xb0\x57\xce\x35\xae\xfd\x96\x12\xf5\x38\x04\xed\x66\x94\xa7\x46\xd8\x06\xe4\x92\x4a\xe0\x6b\x5c\xee\x8b\xf2\xe1\x08\x5b\xc4\x31\x19\x97\xa6\x66\xa1\xf4\x25\x26\xa1\x4c\xcf\x40\xfb\x6a\xd2\x95\x6f\xc6\x07\x3d\xcf\x5c\xf8\x15\xda\x3c\x2f\x34\x13\xf5\x23\x62\xc6\xed\x03\x31\xd9\x35\x6c\xaf\x71\x39\x34\x7e\x3b\x3c\x9b\x81\xf8\xa7\xce\xd3\x4a\xb4\x1e\x9c\x2f\xa9\x19\x88\xf6\xeb\x79\x6a\xfd\x98\xc4\xbe\x05\x69\x6b\xfa\x06\x4b\xd8\xaf\xa7\x9f\xdc\xcf\xce\x6e\x51\xb0\xcd\x79\x89\xf7\xb3\xc7\x62\x04\xe0\x66\xb5\x12\x72\x6c\x40\xff\x93\xcd\xaa\x0a\x68\xfe\x17\xab\xf6\x72\x99\x06\x49\x0f\xd4\x63\x32\x8d\x39\x56\x20\xdf\x22\xb7\x9d\xa5\x8d\x49\xe3\x3d\x6d\xb3\xb7\x9b\x6f\xd0\xcc\xb4\xac\xce\x3f\xc0\x94\x5f\xcd\x9e\xee\x74\x6c\xd7\xa5\x4a\x3a\xf4\x3e\x8b\xcf\x5e\xbb\x76\xd7\xce\x30\x7e\xd3\xbd\x04\xe9\x5b\xf9\xd0\x6e\x75\x2d\xb5\xb5\xd0\xa8\xe9\x40\x77\x7d\xb1\xde\x60\x68\xb8\x47\xb5\xf7\x51\xef\x5f\x11\xe9\x70\x82\xeb\x96\xf5\x05\x9e\x9a\x86\x21\x72\x27\x4c\x63\x6c\xda\x45\xb7\x5b\xbd\x68\x5c\x49\x3b\xaf\x06\x33\xe8\x7f\x01\x00\x00\xff\xff\x98\xc6\x45\x17\x19\x15\x00\x00")
func staticConfigJsBytes() ([]byte, error) {
return bindataRead(
@@ -396,7 +396,7 @@ func staticConfigJs() (*asset, error) {
return a, nil
}
-var _staticCounterJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x95\x4d\x6e\xdb\x3a\x10\xc7\xf7\x3e\xc5\x20\xef\x01\x92\x80\x46\x49\xe1\x9d\x52\xa1\x0b\xa3\x45\xbb\x36\xba\x2e\x68\x69\x64\x11\x91\x86\x06\x49\x59\x05\x02\x03\xbd\x44\x90\x93\x14\xe8\xae\x77\xf1\x05\x7a\x85\x42\x34\x4d\xd1\x8a\x94\xba\xb1\x56\x22\xe7\x83\xbf\xff\x70\x48\x6e\x99\x84\x85\x68\x48\xa3\x84\x14\xc2\xa2\xa1\x4c\x73\x41\xe1\x86\x49\x56\xab\x08\x1e\x66\xb3\x19\x00\x40\xe7\xa7\xb0\xc2\x4c\x0b\xa9\x20\x85\x07\x33\xdb\x7d\xd9\x21\x3a\x81\xe0\x3f\x56\xa1\xd4\xd7\x66\x22\x78\xe3\x1c\xd4\x86\x13\x1d\x1c\xec\x6f\x60\x6c\xbb\x3b\x2f\x77\xc1\xb6\x3c\x13\x04\x29\x14\xac\x52\x78\x34\x29\xd4\x3d\x9d\x83\xdb\xb2\x2a\xf2\x08\x6c\x6c\xbc\x62\xf9\x1a\x8d\xf1\xce\xd9\x6c\x74\xbc\x2c\x45\x1b\x7a\xf3\xff\x87\x4e\x4d\x6c\x15\x44\x71\xa9\xeb\x6a\x10\x7f\x73\xd3\x31\x80\x51\x76\x90\x0a\x99\x52\xb0\x62\x0a\x73\x10\x04\xba\x44\xa0\xa6\x5e\xa1\x04\x51\x1c\xdc\x94\x0b\xe6\x05\x74\xe9\x20\x4d\x53\xb8\xf5\x89\x27\x09\x24\xd6\x62\x8b\x8b\x8a\x29\x15\x06\x1a\xbf\xe9\xeb\x96\x49\xe2\xb4\x06\x33\xc8\x19\xad\x51\x06\x51\xcc\xf2\xdc\x77\x52\x4d\x96\xa1\x52\x81\x07\xde\x7d\xb9\xc8\x9a\x1a\x49\xc7\x9a\xeb\x0a\x21\x85\xab\x70\xff\xf4\xb8\xff\xfe\x6b\xff\xf4\x18\x5d\xf5\xbe\x3b\xc0\x4a\xa1\xc3\x7d\x07\x6f\x5f\x4b\x6b\x41\x5e\xa6\xb5\x92\xce\xa3\xfd\x3a\xce\x7a\x39\x9d\xa3\x18\xe2\x1d\xb1\xcf\xa1\xfb\xfd\xf3\xc7\x90\xef\xb4\xb7\x15\xea\x2f\x74\x4f\xa2\x25\xbf\x81\xa7\xbb\x37\x78\x1f\x5c\xd4\xbd\xa7\xf1\x17\xd4\x05\x46\x6a\xe1\x54\x95\x3c\xc7\x29\x3d\xe3\x6c\x3c\xc7\x29\x01\xf6\x52\x88\xe2\xac\xe4\x55\x2e\x91\xc2\x01\xa3\x75\x70\x98\xc7\x31\x4a\x29\xe4\x94\x5c\x97\x55\x79\xb5\xeb\xb7\xa5\x14\xed\x39\x02\x5c\x96\x97\x04\x38\x95\xa3\x4b\xd5\x4c\xde\x7f\xe8\x48\xff\x69\xbd\x33\x6b\x71\xd2\xbd\xa3\x75\x39\xe1\x58\xda\x0a\xbe\x92\xe4\xf9\x52\x83\x8b\xc7\x2d\xc6\x89\xeb\xbf\x34\x3c\xa4\x40\xd8\xc2\x47\x33\x0a\x4f\xcf\x33\x23\x5e\xb3\x2e\x30\x81\x80\x04\xa1\xf7\x9a\x74\xdf\x46\x28\x6e\xad\xcd\x66\x60\x5b\xad\x17\xa2\x12\xe6\xb5\x99\xcf\xe7\x03\x63\xd7\xd3\xce\x5c\x14\xb7\x41\x7f\x6c\x47\x4e\x9d\x3d\xb8\xcf\x76\x54\xa2\x6e\x24\x79\x8a\x3e\x13\xd7\x89\xd1\xdc\x2f\xb7\x44\x9d\x78\xcf\x57\x6f\xb0\x59\x13\xef\x6a\xe8\x8d\x9f\x78\x8e\x89\x39\x5e\x5e\xa6\x52\xb4\x89\xe9\xd8\x7e\xce\x34\x54\xd2\xf7\x96\xe7\x7d\xd8\x91\xc4\xdf\x6f\x87\xbf\x8b\x3a\x31\x7f\x02\x00\x00\xff\xff\x19\x21\xa4\xc5\xf4\x07\x00\x00")
+var _staticCounterJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x95\x4f\x6e\xdc\x2e\x14\xc7\xf7\x73\x8a\x27\x7e\xbf\x85\x3d\x6a\xec\x54\xd9\x39\xb5\xba\x88\x5a\xb5\xeb\xa8\xeb\x8a\xb1\x9f\xc7\x34\x0c\x8c\x00\x8f\x23\x45\x91\x7a\x89\x28\x27\xa9\xd4\x5d\xef\x92\x0b\xf4\x0a\x15\x98\x60\xc6\x19\xa7\xd3\x84\x95\xcd\xfb\xc3\xe7\xfb\x78\x40\xbe\x84\x35\x97\x2b\xca\x35\x7c\xa4\x3b\x56\x49\x58\xe6\x60\x47\x9e\x43\xe3\x26\xb2\x6f\x7a\xb1\xc8\x97\x80\xd7\x5b\xa9\x0c\xd6\x70\x21\x3b\x61\x50\xc1\x32\x5f\xec\xa8\x0a\xbf\x25\x24\x4d\x27\x2a\xc3\xa4\x48\x52\xb8\x59\x2c\x6c\x16\xeb\xa0\x91\x63\x65\xa4\xd2\x50\xc2\x8d\x9b\xb5\xa3\x1a\xc2\x0a\x20\xff\x51\x8e\xca\x9c\xb8\x09\xf2\x26\x38\xe8\x2d\x13\x62\x70\xf0\x9f\xc4\xd9\x6e\xcf\xc7\xd4\x03\xa1\x80\x12\x1a\xca\x35\x9e\xc7\x8b\x9a\x11\x2c\x70\xed\x28\x4f\x23\x06\x1f\x9e\xad\x68\xbd\x46\x67\x3c\x0f\x36\x1f\x9d\x5d\xb6\xb2\x4f\xa2\xf9\xff\x93\xa0\x27\xf3\x1a\xd2\xac\x35\x1b\x3e\x89\xcf\x73\xcb\x00\x4e\xdb\x20\x16\x2a\xad\x61\x45\x35\xd6\x20\x05\x98\x16\x41\x74\x9b\x15\x2a\x90\xcd\xe0\xa6\x43\x30\x6b\xc0\xa6\x83\xb2\x2c\xe1\x34\x26\x9e\x25\x50\xb8\x91\x3b\xbc\xe0\x54\xeb\x84\x18\xbc\x36\x27\x3d\x55\x82\x89\x35\xb8\x9f\x9a\x8a\x35\x2a\x92\x66\xb4\xae\x63\x27\xdd\x55\x15\x6a\x4d\x22\x70\x3b\x6a\x59\x75\x1b\x14\x26\x33\xcc\x70\x84\x12\x48\xf2\x70\x7f\xf7\xf0\xfd\xd7\xc3\xfd\x5d\x4a\x46\xdf\x5b\x40\xae\x31\xe0\xbe\x83\xb7\x2f\xa5\xf5\x20\xcf\xd3\x7a\x49\xc7\xd1\x7e\x3d\xcc\xfa\x7a\xba\x40\x31\xc5\x7b\xc4\x3e\x86\xee\xf7\xcf\x1f\x53\xbe\x27\xdd\xad\xd1\x7c\x11\x57\x42\xf6\x22\xee\xe1\xf9\x06\x26\xef\xc9\xab\x1a\x78\x3f\xfe\x15\xa5\x81\x03\xe5\x88\x85\xb5\xac\xc6\x39\x49\x87\xf1\x58\x8d\x73\x1a\xfc\xe5\x90\x66\x55\xcb\x78\xad\x50\x24\x13\x4c\xef\x10\x48\x1f\xff\x51\x29\xa9\xe6\x14\x87\xac\x3a\x2a\xdf\xde\xe6\xb4\xb2\x3f\x46\x43\x48\xf4\x9c\x86\x20\x74\x6e\xb5\x0d\x55\x57\x1f\x2c\xef\x3f\x2d\x79\x64\x45\xf6\x3a\xf9\x60\x75\xa6\x28\x97\xbe\x94\x2f\x84\x79\xba\xda\xe4\x1e\x8a\xd7\x63\x82\x99\xbf\xf4\x3f\x94\x20\xb0\xf7\x0f\x58\xb2\x7f\xc2\xa9\x60\x1b\x6a\x03\x0b\x20\x42\x0a\x8c\x5e\x18\x3b\xb6\x52\x33\x6f\xed\xb6\x13\xdb\x6a\x7d\x21\xb9\x74\x2f\xd0\xd9\xd9\xd9\xc4\x68\x5b\x3c\x98\x9b\xe6\x94\x8c\x07\xf9\xc0\x21\xf4\xe7\x78\xba\xb5\x0a\x4d\xa7\x44\x24\xe8\xb3\x60\xa6\x70\x92\xc7\xd5\x2e\xd1\x14\xd1\x7b\x36\x1a\x7c\xd2\x22\xba\x28\x46\xe3\x27\x56\x63\xe1\x4e\x5a\x94\xa9\x95\x7d\xe1\x3a\x77\x9c\x73\x5d\x55\x8c\x0d\x16\x79\x0f\x7b\x52\xc4\x3b\x1e\xe8\x6f\x53\xab\xe5\x4f\x00\x00\x00\xff\xff\x72\x33\x34\x4a\x3e\x08\x00\x00")
func staticCounterJsBytes() ([]byte, error) {
return bindataRead(
@@ -436,7 +436,7 @@ func staticFaviconIco() (*asset, error) {
return a, nil
}
-var _staticFiltersJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x57\xdd\x8f\xd4\x38\x12\x7f\x9f\xbf\xa2\x6e\x0e\xe1\x44\x74\xa7\x19\xee\xe5\x94\xa1\x39\x71\x83\x40\x27\x1d\xfb\xc1\x88\xdd\x47\x54\x1d\x57\x12\x33\x69\x3b\xd8\x4e\x0f\xb3\xd0\xff\xfb\xca\xce\xf7\x47\x0f\x83\x76\xc9\x53\x92\x2a\x57\xfd\x5c\xdf\x75\x40\x0d\xaf\x45\x61\x49\x1b\xd8\x42\x90\x56\x32\xb1\x42\xc9\x20\x84\x2f\x67\x67\x67\x00\x00\x86\x0a\x4a\xac\xf2\xf4\x2f\xfe\x8f\x7b\x52\x7f\x26\x06\xf6\xcf\xfa\x8d\xad\x3a\x92\x48\x94\xec\x09\x6b\xf7\xc9\x3c\xf1\x78\xd9\x88\x44\xce\xff\x8b\x3c\x23\xd8\x42\xa7\xd0\xd2\x67\x1b\x0e\x14\x3c\x8a\x08\x93\x3c\x78\x14\x30\x53\xa2\x8c\x2c\x66\x2c\x5c\xf5\xec\x62\x05\x16\xb3\xe1\x01\xaf\x3a\x85\xe0\x51\xe0\x08\x91\x93\x17\x84\xb0\xdd\xc2\x54\x72\xfb\xb8\xab\x27\xf9\x8d\xa9\xf6\xb0\x05\x93\xe3\x45\x8d\xe1\x72\xc6\xd8\x48\x2c\x35\x95\x24\x79\xc0\x9e\x3b\x44\x90\x14\x68\xcc\xf6\x7c\xe7\x2f\x62\x31\x5b\xfb\xb7\x73\x10\x7c\x7b\xee\x3e\x13\x55\x49\x77\x7f\x06\x4f\x5a\x35\x4f\x80\x9d\x03\x47\x8b\x35\xef\xda\xb1\x4e\xc8\x2f\x9e\x6f\x9c\xf4\x17\x6c\x82\xe3\xd8\x7d\x1d\x1b\x4a\x67\xcd\xaa\xe4\x68\x47\xb6\x1c\xde\xb6\x71\x6e\xf4\xde\x71\x09\x99\x05\xe1\xe5\x59\x47\xdc\x6c\xda\xd3\x85\x4a\xd0\x9d\x05\xa3\x40\x58\x66\x80\xd0\xdc\x81\x55\xce\x30\x9a\x40\xd8\xee\xcc\xaf\x15\xe9\xbb\x6b\xab\x85\xcc\xa2\x6b\xb2\x01\xfb\xc4\x56\x9d\x96\x37\x64\x9b\xd7\x20\x8c\x3e\x2a\x21\x03\xb6\x62\xe1\x44\xa5\xa6\x42\x21\x07\x2c\x48\x5b\xd3\x11\xde\x4b\x43\x14\xbd\xf3\xb4\x60\x7a\x47\x21\x85\x3d\x75\x43\xe7\x47\x47\x17\x58\x7c\xa8\x63\x6e\xa0\xae\x8e\x88\x2e\x86\xa3\x9a\x21\x8c\x9c\x17\x02\xc6\x29\xc5\xaa\xb0\xeb\xca\x10\x67\x3e\x58\x58\x8a\x85\x21\x06\x5f\xbf\xc2\x77\x1c\xdb\x82\x3f\x36\x8d\x32\x67\x5e\x43\x1a\x4a\x34\x86\x38\xfc\xe7\xd3\xb6\x96\x03\xc6\x9b\x6f\x1c\xba\xa3\x1b\xc0\x76\x51\xfd\x01\x8b\x60\x10\x18\x47\xa0\xc2\xd0\x5c\xa9\x54\x33\x5d\x2b\x48\x72\x4a\x6e\x9c\x3d\x6e\x09\x72\x3c\x10\x34\xb7\x68\x52\x19\x12\xa5\x6e\x04\xdd\x8f\xe9\xca\xf3\x98\x28\x73\x7e\x6f\xce\xd7\xfe\x8e\x0e\xcf\xa6\x21\xeb\x4c\x3f\x95\xb0\xdd\x42\x25\x39\xa5\x42\x12\x5f\xca\xc9\x1a\x7c\x0d\x65\xe5\x8c\x07\x59\xa1\x76\x58\xb4\x60\x67\x07\x1e\x64\xb6\xb1\xd7\x9a\x82\x75\x3a\xc1\xce\xee\x09\xad\x0f\xa8\x9d\x96\xf1\xcf\xc8\x94\x85\xb0\x3e\xd4\x7b\xa1\xa7\xfc\xc7\xc6\x4c\xac\x21\xee\x50\x43\x2c\x64\x59\x59\x16\xba\x6a\x67\xfc\x7b\x30\x36\x91\xbd\x2b\x09\x73\x42\xfe\xd1\xc4\x0b\xd6\xdb\x0b\xf9\x7f\x92\x99\xcd\x63\xb8\x58\xcd\xa8\xb9\x90\x36\x06\xab\x2b\x9a\xd3\x0a\xb1\x17\x36\x86\x8b\x67\x73\x92\xc4\x3d\xc5\xc0\xb0\xb2\x2a\x51\xfb\xb2\x20\x4b\x6c\xce\x65\x54\xa5\x13\x8a\xe1\xe5\x80\x2d\x1a\x7e\x04\xe1\x37\xea\x19\xf4\x45\x7f\x6e\xf2\x71\xe5\x6f\xcc\x39\xb1\xc0\x92\xc1\x7b\x43\x32\xe4\x9c\x75\x47\xc7\xbe\x6f\xfb\x51\x30\xa3\x1e\x87\xa5\x6b\x49\x81\x92\x01\x13\x96\xf6\x2f\x39\x27\x0e\xee\xed\x1d\xed\xd5\x81\xbc\xae\x16\x32\x1d\x48\xce\x5a\x50\x5b\x32\xaf\x07\x25\xf3\x72\x9a\xc9\xc8\x39\x34\x8d\x04\x9a\x4e\xa3\x40\xd2\xad\x6b\x38\xb3\x64\xf3\x6a\x22\x17\x23\xbe\x92\x75\xb0\xd8\x52\xa6\x75\x77\xae\x4f\x39\xe6\x7b\x5b\xce\xbd\x56\x18\x98\x39\x55\x49\x65\xd8\xa4\xe2\x1b\xab\x4a\xb8\xcd\x49\xd6\xf5\x50\x18\x17\xc9\x42\x66\x20\x24\xd8\x9c\xda\x12\xb4\x43\x3d\xca\x8c\x9d\x52\xd6\x58\x8d\xe5\xba\x53\xe0\x92\xc3\x1f\x9d\x64\x86\xb1\xa8\x6d\x3c\x31\xf9\x0a\xa8\xa0\xfd\xd2\xed\x7b\x73\xdd\xd0\xdd\x95\xe2\x04\xff\xd8\xc2\xbf\xe1\xf1\x63\x98\xfd\xbd\xf8\x57\xd8\xf4\xa6\x5f\xb0\x32\x34\x75\xd2\x71\x35\xc1\xa1\xca\x1f\x0c\xe3\x77\x14\xf6\xb5\xd2\x3f\xd1\x67\x3b\xee\x96\x27\x20\x71\x2a\xf0\x2e\x86\x8b\xa7\x4f\x9f\x2e\x7b\x74\xb3\x81\x54\x7c\x86\x9d\xe2\x77\x50\x22\xe7\xde\x31\x29\x48\x22\x4e\x7c\x05\xde\xee\xb0\x17\x59\x6e\x81\x24\xaf\x4a\xa8\x8c\x63\xd9\x2b\x4d\x60\x73\x94\x70\x01\x85\x90\xf4\x00\xd7\xed\x84\xe4\xc1\xf9\xab\x9f\xdf\x5e\x57\x3b\xab\x89\xde\x2a\x2e\x52\x41\xfc\x7c\xb5\xdc\xda\x1b\x69\x0e\x19\x0b\xa3\xc4\x98\x80\x35\x00\xd7\x56\x95\x6c\xe5\x55\x49\x3c\xec\x50\xb3\x30\xca\xc9\x61\x0c\xc2\x49\xfe\x0e\x04\x79\x1c\x91\xb5\xeb\x16\x90\x92\xc1\x79\x92\xa3\xcc\x08\x6e\xe8\xae\xd4\x64\xcc\x0f\xc5\xb2\x5c\xf8\x6b\x20\x4c\x93\x11\x7f\xd0\xb0\x70\x84\x43\xf5\x9b\x0d\xe4\x98\xdc\x40\xaa\xb4\xf3\x97\x73\x41\xeb\x2d\x23\x64\x42\x8d\xa3\x12\x94\x90\x69\x75\x0b\x28\x39\x34\x77\xab\xd1\x9c\xfd\xdd\x17\xe9\xc6\xb3\xac\xab\x61\xa7\x86\x34\x4d\xb6\xd2\xf2\x5b\xc5\xc3\x55\x21\xc3\xa6\xc3\x5f\x3d\x2f\xfa\x6a\x35\x92\x5f\x0b\x78\x85\x16\x17\x16\x87\x9e\xf8\xa0\xde\x31\xdb\x36\xea\x11\x7d\xb4\x73\x7c\x5c\xdc\x39\xda\x3c\xf6\x1b\x44\x33\x0f\xd4\x2b\xc7\x76\xdb\xae\x0e\xf5\x00\xd2\x0e\xfd\x2c\x5c\x92\x01\xfd\xa6\x91\xdb\x7d\xd1\x8a\xca\x85\x35\x91\x55\xf5\xc0\x3d\x72\xc3\x14\x40\x73\x40\x98\xdf\xb0\x10\xdc\xcf\x5a\xae\xd9\x9f\xd2\x35\xd0\x57\xa2\x26\x69\x83\x30\x42\xce\xaf\xdc\x5a\x13\xb0\x02\x77\x54\xac\x85\x4c\x15\x0b\x23\xed\x5b\xda\x88\xc2\x5d\x5c\xcd\x86\xa8\x2e\x42\x96\x06\xd3\xef\x51\xdc\x8a\x5f\x52\x5d\x83\x3a\xa1\x78\xf6\x77\xfc\xe7\xb8\x50\x1b\x86\x6b\xe9\xeb\x76\x8c\x3c\xbd\x97\x3e\x64\xca\x18\x2c\x92\x9d\x74\x43\xb6\xdd\xc1\x96\x93\x64\xb3\x81\x83\x30\x15\x16\x7e\x52\x73\x95\xd5\x36\x3b\x12\xb8\x15\xac\xce\x02\xe2\xc0\x2b\x3f\x05\xb4\x63\xbb\xcf\xf0\xb3\x39\x38\xb7\x77\x4f\xec\x97\xe2\xda\x10\xea\x24\x87\x14\xd7\xa5\xeb\x66\x6c\x68\xfa\x14\xd7\x89\xd0\x49\x41\x6b\xb5\x96\xca\xd6\x6c\xa6\x14\x72\x96\x91\xf5\xd2\xf8\x4a\xc9\x93\x6b\xe7\xb7\x91\x2c\xab\x3a\x89\xac\x06\x3e\x43\x62\xc8\xfa\xb6\xbc\x8c\xe3\xaf\xa0\x68\x15\x8e\x61\x34\xd8\x66\x15\xca\x57\xb7\xfe\xfa\xff\x93\x6e\x9c\x76\x73\x6c\xdf\x8b\x5f\xb6\xe1\x15\xf7\x91\xd6\x53\xfb\x31\x30\x6e\xcc\xdb\xd3\xde\x0c\x68\x7d\xa9\xed\xe9\xef\x06\x05\x32\x1e\x95\xcb\x9e\xc7\xc7\x1e\x5d\x35\xd3\x38\x8f\x07\x3e\x9c\x30\x09\x99\xc5\xc3\x68\xed\xc9\xde\xd2\x71\x67\xf3\xde\x06\x47\x5f\x98\xfe\x0c\x00\x00\xff\xff\x12\xee\x2d\x10\x4c\x12\x00\x00")
+var _staticFiltersJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x57\x5b\x73\xd4\xb8\x12\x7e\xcf\xaf\xe8\xa3\x43\x11\x1b\x66\x3c\x84\xf3\x72\xca\x60\xb6\xd8\x50\x50\x5b\xb5\xec\x85\x14\xbb\x8f\x94\xc6\x6a\xdb\x4a\x3c\x92\x91\xe4\x49\xb2\x30\xff\x7d\x4b\xb2\x7c\xf7\x24\xa1\x76\xf1\x93\xed\xee\x56\x7f\xea\x7b\x6f\x9e\x40\x5e\xca\x2d\x2d\x35\xe8\x82\x9e\xc1\x93\x0d\xd8\x67\xb3\x71\x9f\xd1\xa5\x3e\x39\x19\xb0\xbc\xae\x8d\x4c\xe5\xae\x2a\xd1\xe0\x0a\xce\xa5\xbc\xe2\xa8\x57\xf0\x7b\x8d\xea\xf6\xc2\x28\x2e\xf2\x15\x7c\x14\x1a\x11\x9e\x6c\x9c\x20\xde\x54\x52\x19\x64\xf0\x96\x97\x06\x95\xb6\xff\xf7\x54\x75\x9f\x09\x04\x59\x2d\x52\xc3\xa5\x08\x42\xf8\x72\x72\x62\x95\x5b\x06\x8d\x25\xa6\x46\x3a\x96\x2f\xee\xaf\x7d\x32\x27\x16\x03\xf9\x6f\xf3\x46\x56\x1d\x89\xa7\x52\xf4\x84\xb5\xfd\x24\x8e\x78\x78\xd1\x9f\x4a\x19\xfb\x91\xb2\x1c\x21\x81\x4e\xad\xc1\x1b\x13\x0e\x74\x3c\x8a\x90\xa6\x45\xf0\x28\x20\xba\xa2\x22\x32\x34\x27\xe1\xaa\x67\xe7\x2b\x30\x34\x1f\x0a\x38\xed\x19\x04\x8f\x02\x4b\x88\xec\x79\x41\x08\x49\x02\xd3\x93\xdb\xc7\x22\x49\x8b\x2b\x5d\xef\x20\x71\x66\x6e\x30\xbc\x98\x31\xfa\x13\x2b\x85\x15\x0a\x16\x90\x97\x16\x11\xa4\x25\xd5\x3a\x39\xdd\xba\x8b\x18\x9a\xaf\xdd\xdb\x29\x70\x96\x9c\xda\xcf\x54\xd6\xc2\x9a\x80\xc0\xd3\x56\xcd\x53\x20\xa7\xc0\xa8\xa1\x0d\xef\xda\xb2\x4e\xc8\xaf\x5e\x6e\xec\xe9\xaf\xc8\x04\xc7\xa1\xfb\x3a\x78\xca\xd0\xa0\x75\xc5\xa8\x19\x99\x73\x78\x61\xef\xe5\xe8\xa3\xe5\xe2\x22\x0f\x42\x2f\xea\x43\xcc\x4b\x97\x32\xa5\x56\x16\xb4\x04\x6e\x4e\x35\x20\xd5\xb7\x60\xa4\xb5\x8d\x42\xe0\xa6\x93\x19\x04\x5a\x74\x81\x26\x20\x9f\xc9\xaa\xd3\xf2\x0e\x8d\x7f\x0d\xc2\xe8\x52\x72\x11\x90\x15\x09\x27\x2a\x15\x96\x92\x32\xa0\x25\x2a\xa3\x3b\x82\x8b\xd9\xe8\x83\xa3\x05\x0b\xd7\xe4\x82\x9b\x63\x97\x6c\xe9\x9c\x96\x9f\x9a\xe0\x1b\x68\x6c\xe2\xa2\x0b\xe6\xa8\x61\x08\x23\xeb\x8b\x80\x30\xcc\x68\x5d\x9a\x75\xad\x91\x11\x17\x32\x24\xa3\xa5\x46\x02\x5f\xbf\xc2\x37\x88\x25\xe0\xc4\xa6\xb1\x66\x2d\xac\x51\x41\x45\xb5\x46\x06\x3f\x7c\x4e\x9a\x73\x40\x3b\x0b\x8e\x03\x78\x74\x03\x48\x16\xd5\xef\x69\x19\x0c\xc2\xe3\x00\x58\x6a\x9c\x2b\x15\x72\xa6\x6b\x05\x69\x81\xe9\x95\xb5\xc7\x35\x42\x41\xf7\x08\xfe\x16\x3e\xa7\x21\x75\xc5\xe4\x6e\x4c\xbe\xe0\x44\xb9\x75\xbd\x97\x6f\x5c\x1e\xed\x9f\x4f\x03\xd7\x9a\x7e\x7a\x42\x92\x40\x2d\x18\x66\x5c\x20\x5b\xca\xcc\x06\x7c\x03\x65\x65\x8d\xe7\x2b\x5f\x0b\x76\x26\xf0\x20\xb3\x8d\xbd\xe6\x2b\xd7\xf1\x34\x3b\xb9\x23\xb4\x3e\x51\x65\xb5\x8c\x7f\x46\xba\x2a\xb9\x71\xd1\xde\x1f\x7a\xcc\x7f\x64\xcc\x44\x3c\x71\x4b\x15\xc4\x5c\x54\xb5\x21\xa1\xad\x79\xda\xbd\x07\x63\x13\x99\xdb\x0a\x69\x81\x94\x5d\xea\x78\xc1\x7a\x3b\x2e\x7e\x46\x91\x9b\x22\x86\xb3\xd5\x8c\x5a\x70\x61\x62\x30\xaa\xc6\x39\xad\xe4\x3b\x6e\x62\x38\x7b\x3e\x27\x09\xba\xc3\x18\x08\x1d\x74\x1e\x32\xe7\xd2\xb2\x56\x29\xc6\xa3\x06\x15\x0d\x3f\x82\xf0\x9e\xaa\x06\x7d\xe9\x9f\x9b\x7c\x5c\xff\xbd\x39\x27\x16\x58\x32\x78\x6f\x48\x42\x19\x23\x9d\xe8\xd8\xf7\x6d\x57\x0a\x66\xd4\xc3\xb0\x7a\x2d\x29\x90\x22\x20\xdc\xe0\xee\x35\x63\xc8\xc0\xbe\x7d\xc0\x9d\xdc\xa3\xd3\xd5\x42\xc6\x3d\x8a\x59\x23\x6a\xab\xe6\xc5\xa0\x6a\xbe\x98\x66\x32\x65\x0c\x7c\x3b\x01\xdf\x6f\x24\x08\xbc\xb6\x6d\x67\x96\x6c\x4e\x4d\x64\x63\xc4\x55\xb2\x0e\x16\x59\xca\xb4\xee\xce\x8d\x94\x65\xbe\xb3\xf1\xdc\x69\x85\x81\x99\x33\x99\xd6\x9a\x4c\x8a\xbe\x36\xb2\x82\xeb\x02\x45\x53\x0f\xb9\xb6\x91\xcc\x45\x0e\x5c\x80\x29\xb0\x2d\x41\x5b\xaa\x46\x99\xb1\x95\xd2\x68\xa3\x68\xb5\xee\x14\xd8\xe4\x70\xa2\x93\xcc\xd0\x86\x2a\x13\xdf\x63\xf2\xb1\xa1\xae\xf0\xf6\x5c\x32\x84\xff\x24\xf0\x7f\x78\xfc\x18\x66\x7f\xcf\xfe\x17\xfa\xc6\xf4\x1b\xad\x35\x4e\xdd\x73\x58\x4d\x10\xc8\xea\xbb\x01\xf8\x93\x72\xf3\x56\xaa\x5f\xf0\xc6\x8c\x9b\xe4\x11\x30\x0c\x4b\x7a\x1b\xc3\xd9\xb3\x67\xcf\x96\xbd\xb8\xd9\x40\xc6\x6f\x60\x2b\xd9\x2d\x54\x94\x31\xe7\x8c\x0c\x04\x22\x43\xb6\x02\x67\x6b\xd8\xf1\xbc\x30\x80\x82\xd5\x15\xd4\xda\xb2\xec\xa4\x42\x30\x05\x15\x70\x06\x25\x17\xf8\x00\x77\x6d\xb9\x9d\x9c\xde\xfc\xfa\xfe\xa2\xde\x1a\x85\xf8\x5e\x32\x9e\xf1\x71\x82\xcc\x53\x99\x58\x64\x24\x8c\x52\xad\x03\xe2\x01\xae\x8d\xac\xc8\xca\xa9\x12\x74\xbf\xa5\x8a\x84\x51\x81\x16\x63\x10\x4e\x72\x76\x70\x90\xc3\x11\x19\xb3\x6e\x01\xd9\x94\x4d\x0b\x2a\x72\x84\x2b\xbc\xad\x14\x6a\xfd\x5d\xb1\x2c\x17\x7b\x0f\x44\xa1\xe6\x7f\xe1\x48\xff\x50\xfd\x66\x03\x05\x4d\xaf\x20\x93\xca\xfa\xcb\xba\xa0\xf5\x96\xe6\x22\x45\xef\xa8\x94\x0a\xc8\x95\xbc\x06\x2a\x18\xf8\xbb\x35\x68\x4e\xfe\xed\x8b\x0c\xa7\xb2\xbc\x2b\x5d\xc7\x66\x33\x85\xa6\x56\xe2\xbe\x9a\x61\x8b\x8f\x26\x0b\x63\x5f\x33\x2c\xba\x3a\x35\x52\xd1\x9c\xf1\x86\x1a\xba\xb0\x38\xf4\xc4\x07\x75\x8d\xd9\xb6\xd1\x8c\xe8\xa3\x9d\xe3\x72\x71\xe7\x68\xb3\xd9\x6d\x10\x7e\x12\x68\x56\x8e\x24\x69\x57\x87\x66\xf4\x68\x87\x7e\x12\x2e\x9d\x01\xfd\xa6\x51\x98\x5d\xd9\x1e\x55\x70\xa3\x23\x23\x9b\x69\x7b\xe4\x8c\x29\x00\x2f\xc0\xf5\x1f\xb4\xe4\xcc\x4d\x59\xb6\xcd\x1f\xd3\x35\xd0\x57\x51\x85\xc2\x04\x61\x44\x19\x3b\xb7\x6b\x4d\x40\x4a\xba\xc5\x72\xcd\x45\x26\x49\x18\x29\xd7\xcc\x46\x14\x66\xa3\x6b\x36\x3e\x75\x71\xb2\x34\x92\x7e\x8b\xe2\xf6\xf8\x25\xd5\x0d\xa8\x23\x8a\x67\x7f\xc7\x7f\x0e\x0b\x15\x62\xb2\x99\xbe\x6d\x67\xc8\xe3\xab\xe9\x43\x46\x8c\xc1\x2e\x39\x54\xa0\xd1\xb4\x6b\xd8\x72\xb6\x6c\x36\xb0\xe7\xba\xa6\xa5\x9b\xd4\x6c\x95\x35\x7e\x4d\x02\xbb\x85\x35\xb9\x80\x0c\x58\xed\xa6\x80\x76\x6c\x77\xd9\x7e\x32\xc7\x67\x17\xf0\x89\x15\x33\xba\xd6\x48\x55\x5a\x40\x46\xd7\x95\xed\x69\x64\xe8\x80\x8c\xae\x53\xae\xd2\x12\xd7\x72\x2d\xa4\x69\xd8\x74\xc5\xc5\x52\x6a\x36\xab\xe3\x1b\x29\x8e\x2e\x9f\xf7\x83\x59\xd6\x76\x14\x5c\x83\x7d\x09\x8c\x46\xe3\x5a\xf4\x32\x94\x7f\x02\xa4\xd5\x39\x46\xe2\xe1\x8d\x81\xf8\x5a\xd7\x1b\xe0\x27\x61\x67\x6a\x3b\xcc\xf6\xcd\xf9\x75\x1b\x66\x71\x1f\x71\x3d\xb5\x9f\x05\x63\x6f\xe0\x9e\xf6\x6e\x40\xeb\x0b\x6f\x4f\xff\x30\xa8\x95\xf1\xa8\x72\xf6\x3c\x2e\x00\xf1\xdc\x8f\xe4\x2c\x1e\x78\x71\xc2\xc4\x45\x1e\x0f\x43\xb6\x27\x3b\x43\xc7\x9d\xc9\x3b\x13\x1c\x5c\x89\xfa\x3b\x00\x00\xff\xff\x32\xf6\x56\xa8\xcf\x12\x00\x00")
func staticFiltersJsBytes() ([]byte, error) {
return bindataRead(
@@ -456,7 +456,7 @@ func staticFiltersJs() (*asset, error) {
return a, nil
}
-var _staticGridJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4d\x8f\xdb\x20\x10\xbd\xe7\x57\x20\xb5\x92\x6d\x29\xb5\xb6\x52\x4f\x44\x39\x54\xdb\x6a\xbb\xa7\x56\xcd\xa1\x67\x6a\x26\x31\x12\x06\x0b\xc6\x59\xa5\xab\xfc\xf7\x6a\xc0\x6b\x8c\x93\xec\x2e\x27\x78\xf3\xfc\x78\xf3\x81\x8f\xc2\xb1\x07\xa7\x24\xdb\xb2\x72\x3f\x98\x06\x95\x35\x65\x2f\x9c\xe8\x7c\xc5\x9e\x57\xab\x15\x63\x8c\x11\xc9\x83\x86\x06\xad\xf3\x6c\xcb\x9e\x03\x4a\x4b\x68\x70\xe8\x39\x2b\x3e\xc4\x5d\xb1\x9e\x42\xca\x34\x4a\x82\x41\xce\x8a\xfa\x65\x3f\x0b\x1f\x9c\x92\x3b\xf5\x0f\x1c\xc5\xe9\xf0\xc9\xd3\x69\x64\x9c\x37\xe9\x66\x0a\x6e\x46\x27\xca\x28\x64\x5b\x36\x39\xad\x66\x5e\x0e\x31\x8d\x8f\xe5\x64\xb5\x8e\xa6\xaa\xba\x13\xde\x1a\x77\x2a\x13\x39\x88\x21\x74\xbb\x91\xcb\x53\x82\x93\xdb\x75\xc6\x6e\xac\x1e\x3a\xf3\x47\x49\x6c\xe7\xe4\x29\x8f\x9c\xdd\x83\x6b\xc0\xe0\x2f\xeb\x15\x19\xe5\x0c\xdd\x00\x39\x05\x9d\x30\x31\xfa\x6d\x70\x22\xb2\x8a\xbb\xfa\xcb\xbc\x88\xb4\x5a\x25\x25\x98\x1d\x9e\x34\x70\x96\x67\x40\xcb\xf6\xa2\x51\x78\xe2\xec\x2e\x0b\x9d\x73\x91\xa3\xf2\xea\xaf\x86\xb7\x55\x3e\xe7\x2a\xd3\xe9\x5c\x6d\xa6\xce\x84\x4d\xa3\x41\xb8\xd7\x7a\x31\x55\xbd\x70\xd0\xd9\x23\x14\xeb\xac\x37\x2f\x55\xae\x96\xc2\x0e\xa4\x13\x4f\xef\x53\xd6\xe2\x64\x07\x2c\x2e\x25\xe8\xc2\xb9\x04\x68\xe8\xde\x61\x30\xd0\x16\x62\xa2\xef\xc1\xc8\xd7\xc4\xd4\x9e\x95\xf7\xd6\xec\xd5\xa1\x7e\x00\xfc\xd9\x07\x52\x11\xbf\x43\xdb\x17\x15\xc1\x65\x55\x2d\xea\x1e\x3c\xf4\x0e\x88\x16\x35\x93\xa3\x11\x06\x99\x9b\x0a\xc6\x18\x68\x0f\xd7\xb4\xe2\x8d\x4b\xa9\x88\x5e\x55\xca\x13\xa5\xf7\xe0\x6f\xd5\xdd\x01\x0e\xce\x2c\xea\x76\x00\x7c\x44\xe8\xbe\x6b\xe8\xc0\xa0\xbf\xe8\x43\xab\x24\xdc\x12\xbc\xf6\x4e\x89\x5f\x2e\x45\x7c\x6b\x6f\x4e\xc3\x35\x11\xe2\x5f\x88\x8c\xf6\xd3\x97\x8f\x46\x21\x0f\xff\x93\xf4\x50\xee\x69\xa4\x79\x9c\xec\x84\xfe\x50\x12\x78\x48\x25\x61\xbb\xd6\x3e\xf1\xe0\x2c\x61\xbf\xc3\xdc\xf2\x71\x7e\x13\xfe\x35\xd4\x9f\x8f\x73\x34\xe7\xd3\xd0\xf1\x71\x58\x13\x4e\x15\xf5\x3c\x76\x63\x4a\xe2\x5c\x51\x4a\xff\x03\x00\x00\xff\xff\xaa\xaa\x23\xf3\xae\x05\x00\x00")
+var _staticGridJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x3d\x6f\xdb\x30\x10\xdd\xfd\x2b\x0e\x6a\x07\xc9\x70\xed\x14\xe8\xc4\xc0\x43\x91\x16\x69\xa6\x16\xf5\xd0\x99\x11\xcf\x36\x01\x8a\x14\xc8\x93\x53\x37\xf0\x7f\x2f\x48\x2a\xa2\x68\xcb\x49\x38\x91\xef\x9e\x1e\xdf\x7d\x50\xab\x39\xec\x94\x79\xe4\xca\xc1\x9d\xd1\x5b\xb9\x83\xf9\x6a\x36\x5b\xcd\x01\xff\xb6\xc6\x12\x0a\xb8\xb7\x52\x78\xf0\xc0\x6d\xdc\xaf\xa1\xdc\x76\xba\x26\x69\x74\x59\xc1\xf3\x6c\x06\x00\xe0\xa3\x0e\x15\xd6\x64\xac\x83\x35\x3c\x07\xd4\x2f\xae\xd0\x92\x63\x50\x7c\x88\xbb\x62\x31\x84\xa4\xae\xa5\x40\x4d\x0c\x8a\xe5\xcb\x7e\x14\xde\x59\x29\x36\xf2\x1f\x5a\x1f\xf7\x87\x4f\xce\x9f\x7a\xc6\xe9\x36\xdd\xec\x83\xa3\xa3\xd4\x92\x60\x0d\x99\xcb\xb1\x28\xac\xe1\x63\x39\xb8\x5d\x46\x5f\xd5\xb2\xe1\xce\x68\x7b\x2c\x13\x39\x98\x24\x6c\x36\x3d\x97\xa5\x1c\x07\xc3\x8b\x8c\x5d\x1b\xd5\x35\xfa\x8f\x14\xb4\x1f\x93\x87\x54\x72\x76\x8b\xb6\x46\x4d\xbf\x8c\x93\xde\x28\x03\xb2\x1d\xe6\x14\xb2\x5c\xc7\xe8\xb7\xce\xf2\xc8\x2a\x6e\x96\x5f\xc6\x75\xf4\x6b\x2f\x85\x40\xbd\xa1\xa3\x42\x06\x79\x06\x7e\x99\x96\xd7\x92\x8e\x0c\x6e\xb2\xd0\x29\x17\x39\x48\x27\x1f\x15\xbe\xad\xf2\x39\x57\x19\x4e\xa7\xea\xf6\xa2\x39\xb5\x42\x6e\x5f\x6b\xc7\x50\xf8\xc2\x62\x63\x0e\x58\x2c\xb2\xf6\xbc\x14\xba\x9a\xd0\xb6\x28\x2c\x7f\x7a\x9f\xb8\xe2\x47\xd3\x51\x31\xa9\xe2\xaf\x1d\xab\xa0\xc2\xe6\x1d\x36\x03\xed\x52\x8f\xb7\x2d\x6a\xf1\x9a\x9e\xdc\x42\x19\xdf\xdb\xf2\x1e\xe9\x67\x1b\x48\x45\xfc\x8e\x4c\x5b\x54\x1e\x2e\xab\xea\xac\x07\xc1\x46\x6b\xd1\xd3\xa2\x66\x32\xd5\xc3\x28\x72\x5f\xc1\x1b\xa0\x72\x38\xa5\x15\x6f\x3c\x97\x8a\xe8\xa4\xd2\x45\xae\xfe\x79\xb8\x6b\x0d\xb0\x48\x9d\xd5\x67\xd5\xdb\x21\x3d\x10\x36\xdf\x15\x36\xa8\xc9\x4d\x35\x64\x2f\x05\x5e\xd3\x9c\x7a\xb9\x9e\x5f\x4e\xe8\xb8\xbd\xb9\x3a\x1c\x53\x3a\x9e\x7f\xae\xd3\xe7\x90\x3e\x7c\xd0\x92\x58\xf8\xc7\xa4\xc7\x73\xe7\x67\x9c\xc5\x51\x4f\xe8\x0f\x29\x90\x85\x64\x12\xb6\xd9\x9b\x27\x16\x8c\x25\xec\x77\x98\x62\xd6\x4f\x73\xc2\xbf\x86\x3e\xb0\x7e\x9e\xc6\x7c\x3f\x7f\xac\x9f\xdb\x84\xfb\xb2\x3a\x16\x5b\x32\xe4\x70\xaa\x7c\x46\xff\x03\x00\x00\xff\xff\x36\xf8\xcb\x83\xe8\x05\x00\x00")
func staticGridJsBytes() ([]byte, error) {
return bindataRead(
@@ -1336,7 +1336,7 @@ func staticManagedJsUnderscoreMinMap() (*asset, error) {
return a, nil
}
-var _staticProgressJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x53\x4d\x8b\xdb\x30\x10\xbd\xfb\x57\x4c\x4f\x91\x4b\x70\x94\x42\x2f\x32\x3e\xf5\x50\x72\x29\x21\x6d\xcf\x8b\xf0\x8e\x63\x81\x35\x36\x92\x9c\xb0\x2c\xfe\xef\x8b\xe4\xef\x64\xc3\x2e\xec\x9c\x8c\xde\xe8\xcd\x1b\xbd\xe7\x8b\x34\x70\x34\xf5\xd9\xa0\xb5\x90\x01\x2b\x5a\xca\x9d\xaa\x89\xc5\xf0\x1a\x45\x11\x00\x80\x6f\x71\x4a\xa3\x49\x87\x03\x45\xca\x41\x06\xab\x56\x18\xea\xcf\x48\x96\xe4\x35\x15\xea\xdc\x1a\x64\x33\xea\x4b\x2b\x52\xba\xd5\x02\x78\xc2\xf7\xdb\x15\x64\xcb\xfa\xfa\xb7\x51\x44\x68\x04\x14\xb2\xb2\xb8\xc6\x51\x5a\x45\x67\x01\x9b\x4a\x11\x4a\xb3\x99\xc0\x2e\x4e\xc3\x77\x37\x4a\x34\x68\xd1\xfd\xf3\xa2\x1f\x09\x55\x05\xb0\xb0\x15\x7c\xcb\xb2\x7e\xd8\x12\xf6\x95\x57\x28\xcd\x81\x1c\x9a\x8b\xac\xfa\xe6\x61\xce\x58\x6e\x9c\xe0\xaf\xcf\x50\xb7\x16\x93\xd7\xba\xa9\xd0\xe1\x23\x29\xd3\x93\x9d\x26\xd5\x6c\x31\x68\x7e\xd2\xe7\x9a\x90\xdd\xae\xda\xc8\xd6\x7e\x9d\xda\xa2\x63\x3c\xe1\xb7\xe4\xd6\x49\xf3\xd0\x6b\x1f\x0c\xeb\xb0\x79\xd2\x3e\x3a\x3f\x7e\xf2\x14\x76\x3b\x90\xa4\xb4\xf4\xbd\x01\x03\x45\xa0\xed\xdd\x95\x90\xb5\xff\x64\x11\x93\xdf\xe8\x4e\x58\x18\xb4\xe5\x49\x3a\x64\x31\x7c\x87\x3d\xe7\x3c\x86\xdd\x48\x1e\x68\xcb\xfa\x0a\x5a\xd2\xcb\x70\xfd\x8a\x50\xca\x0b\x7e\xb8\xc9\x27\x1e\x61\x34\xd1\xa2\x9b\xcc\x7e\x77\xdf\xf5\x1c\x45\x39\xdb\x27\x7c\x90\x69\x17\x84\xdd\x76\x54\x7e\x1f\x4b\xd7\x1a\x5a\x50\x1e\x48\x39\x11\x7e\xa8\x39\xe9\x47\x6f\xa8\xe8\x7d\x9d\x4f\x7f\x0d\x21\x12\x53\x9c\x66\x2c\xec\x25\x7a\xb3\x6e\x4e\xc3\xb6\x62\xf1\x3f\x4c\x82\x3a\x16\xc7\x69\xf4\x16\x00\x00\xff\xff\x0b\xb7\x04\xc6\x00\x04\x00\x00")
+var _staticProgressJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x53\x4d\x8f\xd3\x30\x10\xbd\xe7\x57\x0c\x7b\x72\xaa\x55\xe2\x22\x71\x49\xd5\x13\x07\xb4\x17\xb4\x2a\x70\x46\x26\x3b\x69\x8d\xe2\x71\xe4\x71\x5a\x10\xca\x7f\x47\x76\xbe\xb7\xad\x40\xda\x39\x25\x7e\xe3\x37\x6f\x66\x9e\xf3\x0d\x1c\x6b\xfb\x43\xd5\x0c\x9f\x9f\x9d\x3d\x3a\x64\x86\x4d\x0e\x21\xf2\x1c\xa8\x19\xce\xb2\x9f\x9c\x24\x8b\xe4\x6f\xc4\x88\xb0\xc9\xe3\x21\xfe\x6a\xac\xf3\xf8\x02\x0b\x86\xe4\xac\xdc\xfc\xbf\x07\x51\xb5\x54\x7a\x6d\x49\xa4\xf0\x27\x49\x02\x7f\xc8\xf0\xda\xa0\xdb\xcd\xff\x9a\xb4\x87\x3d\xac\x92\x61\x88\x49\x60\x56\x5a\xaa\xf4\xb1\x75\x28\x66\x34\x84\xd1\xa4\x4d\x6b\x0a\x90\x99\xdc\x3e\xae\x20\x3e\xd9\xcb\x97\x46\x13\xa1\x2b\xa0\x52\x35\xe3\x1a\x47\xc5\x9a\x8e\x05\x3c\xd4\x9a\x50\xb9\x87\x09\xec\xd2\x5d\xfc\xee\x16\x2a\x1d\x32\xfa\xaf\x41\xfa\x3d\xad\xba\x02\x11\x7b\x83\x77\xfb\x7d\x5f\x6f\x09\x87\x28\x6b\x54\xee\x89\x3c\xba\xb3\xaa\xfb\xe4\xa1\xd4\x18\x7e\xac\x10\xae\xcf\x50\x77\xa5\xa7\xb4\xa6\xa9\xd1\xe3\x3d\x35\xd3\xe0\x0e\x93\x70\xb1\xa8\x35\x0f\xf6\xc5\x12\x8a\x1b\x0d\x37\xaa\xe5\xb7\xb3\x33\x7a\x21\x33\x79\x83\x9f\xbd\x72\x77\xf7\xde\x27\x60\xf3\xdd\x04\x23\xbd\xff\x20\x77\xc1\x9a\x8a\xb4\x51\x21\x37\x62\xa0\x09\x0c\x5f\x5d\x89\xce\x8b\x5e\xcd\x3e\xa1\x3f\x60\xe5\x90\x4f\x07\xe5\x51\xa4\xb0\x81\xad\x94\x32\x85\x7c\x24\x8f\xb4\x27\x7b\x01\xa3\xe8\xf7\x70\xfd\x82\x70\x52\x67\xfc\x67\x33\xff\x31\x87\x71\x9b\x8c\x7e\xda\xfa\xcd\x7e\xd7\x75\x34\x95\x62\x9b\xc9\x41\x26\x2f\x08\xbb\xc7\x51\xf9\xab\x89\x3a\xf4\xad\xa3\x05\xe3\x13\x69\x5f\xc4\xb7\x35\x9b\xfe\x39\xac\xb4\xe8\x37\x3b\x9f\x7e\x1c\x9c\x54\x4c\x9e\x9a\xb1\xd8\x56\xd1\xef\xea\xd5\x69\x6c\xb6\x58\xbc\x8b\x49\x4f\x27\xd2\x74\x97\xfc\x0d\x00\x00\xff\xff\xb5\xfc\x55\x24\x67\x04\x00\x00")
func staticProgressJsBytes() ([]byte, error) {
return bindataRead(
@@ -1356,7 +1356,7 @@ func staticProgressJs() (*asset, error) {
return a, nil
}
-var _staticQuerystringJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\xcd\x6e\xdb\x3c\x10\xbc\xfb\x29\xf6\x33\x02\x4b\x8a\x05\x29\xfe\xd0\x16\xa8\x5d\xc1\xa7\x1e\x0a\x14\x68\xea\x20\x27\x55\x05\x18\x69\x6d\xb1\xa6\x49\x99\xa4\xfc\x83\xc0\xef\x5e\x50\x7f\x16\x55\xa3\x68\x0f\xe5\x29\x11\x77\x67\x67\x67\x87\xeb\x03\x91\xf0\xb5\x44\x79\x7e\xd2\x92\xf2\x0d\x44\xe0\xae\x4b\x9e\x6a\x2a\xb8\xeb\xc1\xeb\x68\x34\x02\x00\x28\x88\x54\x08\x11\x58\x57\xd0\x1c\x03\x71\x20\x52\x41\x04\x71\xe2\x77\x9f\xcd\xc9\x89\xca\x17\x56\xe0\x1e\x22\xc8\x44\x5a\xee\x90\xeb\xe0\x79\xf5\x39\x50\x05\xa3\xda\x75\x96\x8e\x17\xcf\x92\x6b\x2c\x5d\x83\xbb\x87\xff\xa2\x08\x4a\x9e\xe1\x9a\x72\xcc\xfa\x35\xcd\x31\x50\xfb\x36\x7f\xe2\x78\x0b\xeb\x76\x2d\x24\xb8\xa6\x22\x85\x08\x1e\x16\x40\xe1\x03\xec\x03\x86\x7c\xa3\xf3\x05\xd0\xe9\x74\x08\xd7\xf2\x35\xa8\x31\x4d\x5a\xe0\x68\x08\xdc\x74\xa2\x62\x13\x1c\x3f\x24\x09\x44\x55\x5e\xa0\x18\x4d\xd1\x9d\x79\xc1\x0f\x41\xf9\x8d\xc4\xcb\xe8\xd7\xbf\x24\xea\x52\xf2\x0a\xaf\x0e\xbe\x2c\x1a\xc9\xcb\x22\x23\xda\xd2\x7c\x8b\x67\x1f\x0e\x84\x95\xd8\xa7\x1e\xde\x43\xae\x75\xa1\xe6\x61\xb8\xa1\x4a\x07\x1b\xaa\xf3\xf2\x25\x48\xc5\x2e\xc4\x53\x4a\xd8\x3e\xfc\xff\xfd\xbb\xd9\x9b\xd9\x5b\xb8\x0f\xad\x49\xbc\x10\x85\xcf\x92\x99\xa9\x31\x91\x12\x53\x22\x28\xa4\xd0\x22\x15\xcc\x07\x27\x0c\x1d\x1f\xba\x8b\x5c\x28\xdd\xfb\xb7\x20\x3a\xe7\x64\x87\x49\xd3\xab\xe3\xd9\x73\x2f\x25\xb3\x4d\xd5\x8d\xbc\x83\x50\x48\x64\x9a\xdb\x69\x1c\x8f\x8f\x44\x92\x1d\x44\xb0\xc5\x33\x4c\xc1\x89\x1c\x98\xd6\x3d\xdb\x91\x85\x09\x33\x8e\x73\x96\x26\xa2\x4d\x5c\x8c\xae\xba\x84\xf0\x69\x0d\x3a\x47\x18\xd7\xa5\xc6\xa0\x6a\x36\x78\xa2\x4a\x2b\xdf\xdc\x71\x78\x29\x29\xcb\x5a\xb8\xb5\x14\x3b\xa0\xda\x32\xa1\xdd\xca\xd0\x34\x5b\x3c\xaf\x70\x83\x27\x88\x0c\x07\x58\xe1\xe6\xe3\xa9\x70\x1d\x37\xfe\xb6\x9c\x24\x9e\xa1\xd6\x34\x12\x7f\x9f\x24\xf7\xc6\x11\x56\x7a\x4d\xb2\xaa\xde\xd0\x02\xc2\x24\x92\xec\xec\xb7\x06\xe8\xd1\xb9\x4d\x29\xd8\x11\x9d\xe6\x6e\xcb\xc4\xab\x1e\x0d\x2f\x19\xbb\x65\xf0\x4e\xb7\x01\x86\xc4\x82\x91\x14\x3b\x14\x1f\xc6\x77\xb3\x71\x4f\xd9\xa1\x97\x01\x99\x42\x78\x35\x1d\x7c\xd1\x39\xca\x23\x55\xe8\x03\xc9\x32\xa0\x1a\xb4\x00\xe4\x19\x88\x35\xec\x4d\x8d\x46\xf8\x3f\x25\x63\xe4\x9a\xd8\x53\xb5\x4a\xdf\x78\x46\x47\xca\x33\x71\x0c\x72\xaa\xb4\x90\xe7\xb6\x9b\x27\x4d\x34\xba\xaf\x17\x1f\xc6\x63\xbf\xf3\xfb\xb4\xa9\xeb\x0d\x1e\x9c\xc4\x9d\x38\x0c\x1f\xdc\x70\xcf\xfd\xcb\x47\x63\xf6\x59\x7f\x26\x8f\x66\xe9\xba\xde\x60\x27\xc6\x5b\x3c\x27\xbf\x5f\x8c\x19\x32\xd4\x08\x75\xa8\x2d\xde\xdf\x09\x35\x5e\x1a\x0b\xdc\x05\x95\x60\xee\xde\xeb\x71\xb9\x0c\xc5\xab\xf6\xd8\x95\x47\x45\x7e\x5e\xff\x70\x5c\xdb\x7c\x42\x3d\x6f\x8c\x7d\xfd\xb8\xaa\x84\x9f\x37\x03\xe8\x70\x2f\xae\xa9\xf7\x33\x00\x00\xff\xff\x3b\x7d\xda\x73\xa0\x06\x00\x00")
+var _staticQuerystringJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\x4b\x6f\xe3\x36\x10\xbe\xfb\x57\x4c\x89\xc0\x90\x6c\x41\x8a\x8b\xb6\x40\xed\x0a\x39\xf5\x50\xa0\x40\x53\x07\x39\x69\xb5\x00\x23\x8d\x2d\xae\x69\x52\x26\x29\x3f\x10\xf8\xbf\x2f\xa8\x97\x45\xc5\x58\xec\x1e\x96\x27\x9b\x9c\xf9\xe6\x9b\x6f\x1e\x8a\x66\x80\xe7\x52\x2a\x83\x39\xfc\x5f\xa1\xba\xbc\x18\xc5\xc4\x16\x66\xd1\xe4\x48\x95\x73\x15\x83\xb7\xa9\x44\x66\x98\x14\x9e\x0f\xef\x93\x09\x00\x80\x35\x2a\xa9\xd2\x08\x31\x38\xaf\xd0\x1e\x6b\x70\xa4\x4a\x43\x0c\x49\x1a\xf4\xd7\xf6\x14\x54\x17\x2b\xc7\xf0\x00\x31\xe4\x32\xab\xf6\x28\x4c\xf8\xba\xfe\x37\xd4\x25\x67\xc6\x23\x4f\xc4\x4f\x16\xe9\xcd\x96\x6d\xc0\x3b\xc0\x2f\x71\x0c\x95\xc8\x71\xc3\x04\xe6\xc3\x98\xf6\x58\xa8\x43\xe7\x3f\x25\xfe\xca\x79\xdd\x48\x05\x9e\x8d\xc8\x20\x86\xc7\x15\x30\xf8\x0b\x0e\x21\x47\xb1\x35\xc5\x0a\xd8\x7c\x3e\x86\xeb\xf8\x5a\xd4\x84\xa5\x1d\x70\x3c\x06\x6e\x33\xd1\x89\x35\x4e\x1e\xd3\x14\xe2\xda\x2f\xd4\x9c\x65\xe8\x2d\xfc\xf0\x8b\x64\xe2\x8e\xe3\x75\xf2\xf1\x97\x42\x53\x29\x51\xe3\x35\xc6\xd7\xd5\x4d\xf5\xaa\xcc\xa9\x71\x64\xdf\xe1\x25\x80\x23\xe5\x15\x0e\xd9\x47\x33\x28\x8c\x29\xf5\x32\x8a\xb6\x4c\x9b\x70\xcb\x4c\x51\xbd\x85\x99\xdc\x47\x78\xce\x28\x3f\x44\xbf\xfe\xf9\xc7\xe2\xb7\xc5\xef\xb6\xe6\xc3\x62\xbc\x51\x8d\xaf\x8a\xdb\xc2\x71\x99\x51\x1b\x22\x2c\x95\x34\x32\x93\x3c\x00\x12\x45\x24\x80\xfe\xa1\x90\xda\x0c\xfe\x96\xd4\x14\x82\xee\x31\x6d\xd3\x25\xbe\x5b\xfa\x4a\x71\xb7\xb5\xfa\xaa\xf7\x10\x1a\xa9\xca\x0a\xd7\x4d\xe0\xe9\x99\x2a\xba\x87\x18\x76\x78\x81\x39\x90\x98\xc0\xbc\xc9\xd9\xb5\x2c\xad\x99\x6d\x3a\xf2\x64\x2d\x3a\xc7\x56\xbf\x5a\x97\x08\xfe\xd9\x80\x29\x10\x48\x13\x8a\x80\x6e\xd8\xe0\x99\x69\xa3\x03\xfb\x26\xe0\xad\x62\x3c\xef\xe0\x36\x4a\xee\x81\x19\xa7\x0f\xdd\x54\xc6\x7d\x63\x85\xdc\xe1\x65\x8d\x5b\x3c\x43\x6c\x79\xc0\x1a\xb7\x7f\x9f\x4b\x8f\x78\xc9\xa7\xa7\x69\xea\x5b\x7a\x6d\x32\xc9\xe7\x69\x3a\xb3\x8d\xe1\x40\x34\x44\x6b\x06\x2d\x35\xa0\x5c\x21\xcd\x2f\x41\xd7\x04\x03\x4a\xf7\x69\x85\x7b\x6a\xb2\xc2\xeb\x98\xf8\xf5\xec\x88\x8a\xf3\x7b\x7d\xde\x6b\x37\xc2\x50\x58\x72\x9a\x61\x8f\x12\x00\x79\x58\x0c\xd5\x1d\xb7\x34\x20\xd7\x08\xef\x36\x83\xff\x4c\x81\xea\xc4\x34\x06\x40\xf3\x1c\x98\x01\x23\x01\x45\x0e\x72\x03\x07\x1b\xa3\x15\xff\x7b\xc9\x58\xb9\xa6\x6e\x65\x9d\xd0\x77\xa6\xe9\xc4\x44\x2e\x4f\x61\xc1\xb4\x91\xea\xd2\x65\xf3\x62\xa8\x41\xef\xfd\x1a\x00\x21\x41\xdf\xf3\xf3\x36\xae\xff\x71\xee\x14\xee\xe5\x71\x3c\x77\xe3\x8d\xf7\x33\x67\xc7\x6e\xb6\x61\x59\x9e\xed\xfa\xf5\xfc\xd1\x76\x4c\x76\x78\x49\xbf\xbd\x22\x73\xe4\x68\x10\x1a\x53\x57\xbf\x1f\xd3\xaa\x99\xb1\x87\xb0\xd6\xcc\x3b\xf8\x03\x2e\x57\x47\xbf\x76\xa1\xdd\x68\xd4\xdc\x97\xcd\x17\xe4\x96\xe5\x0b\x9a\x65\xdb\xda\xb7\xcb\x75\xad\xfb\xb2\xd5\xbf\x87\xbd\x7a\x36\xdc\xd7\x00\x00\x00\xff\xff\x3d\x56\x51\x89\xc7\x06\x00\x00")
func staticQuerystringJsBytes() ([]byte, error) {
return bindataRead(
@@ -1376,7 +1376,7 @@ func staticQuerystringJs() (*asset, error) {
return a, nil
}
-var _staticSentryJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\x31\x6f\xeb\x30\x0c\x84\x77\xfd\x8a\x83\x5e\x06\x09\x2f\xb1\xf7\x04\x99\xde\x9b\x3b\x34\x6b\x17\xd5\xa2\x1d\x02\x32\x1d\x88\x8a\xd1\xa0\xf0\x7f\x2f\x64\xa7\x53\x81\x6e\x02\xef\xc8\xfb\x74\x73\xc8\xb8\x90\x94\xfc\xc0\x19\xae\xbf\x4b\x57\x78\x12\xe7\xf1\x69\x4c\xdb\x82\x85\x0b\x74\xd3\xbb\xc4\x24\x05\xdc\x7f\x0f\xa2\x0a\x58\xa1\x54\x0c\xf7\x70\x3b\x67\xdf\xa7\xf8\xb0\xbe\x89\xa1\x04\x67\x73\x98\x49\x0e\x51\xc5\xfa\x7a\x0e\xa8\x59\x75\xe7\x8c\x5f\xac\x4d\xa6\x5b\x0a\x1d\x39\xfb\xd6\xda\x3d\x6c\x6b\xfd\xc9\x00\x6d\x8b\xd5\x04\x2e\x4a\xa9\x47\x17\x04\x7d\xe0\x54\x71\x58\xe6\x90\x38\xe2\xff\xe5\xa5\xf2\xdc\x82\x2a\x45\x03\x54\xc6\x9a\x0b\xbc\xd6\xd5\xa6\x9b\xa4\xe7\xc1\x45\x95\xfd\x73\x0e\x64\x4a\x14\x94\x8e\x3f\x90\xee\xa2\x44\x87\x99\xb2\xf2\x24\xd6\xaf\xf6\xc5\x37\x2c\x5a\x42\x4a\x6e\x85\x5a\xd0\x85\xd2\x5d\xe1\x28\xe7\x29\xfb\xe7\xd1\xfa\xcd\x51\x07\x9c\x61\x9f\xcd\xae\xf2\x11\x16\x7f\xb7\x67\x33\x92\x6a\x18\xe8\xb4\xfa\x77\xce\xfe\xd9\x0a\x58\x45\xeb\x9b\x42\x1f\xc5\x8d\x3a\xd4\x32\xc6\x69\xa6\x7f\x29\xa8\x3a\x7b\xe5\x18\x49\xb6\x3e\x16\xb3\x18\xb3\xf8\xca\xf1\x15\x00\x00\xff\xff\x76\xf0\xa1\xa0\xc3\x01\x00\x00")
+var _staticSentryJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\x31\x8f\xe3\x20\x10\x85\x7b\x7e\xc5\x13\x97\x02\x72\x89\xe9\x13\xa5\xba\xab\xaf\xb8\xb4\xdb\x10\x33\x76\x58\xe1\x71\xc4\x10\x6b\xa3\x95\xff\xfb\x0a\x3b\xab\x2d\x56\x5a\x2a\x98\x79\xbc\xf9\xe6\xb9\x2d\xfa\x34\x5e\x7c\x12\xfc\xf7\x13\x31\xb6\x0e\xf5\x38\x87\x5c\xdf\xcd\xab\x28\x65\xba\x3b\xb7\x25\x8e\x6c\x2c\xde\x95\x72\x0e\x91\x63\x81\x10\x97\xfc\x40\x9b\x22\x71\x41\xec\x3e\x0b\x41\x18\x51\x20\x54\x54\xec\x60\x36\x46\x5f\xc6\xf0\xd0\xb6\x09\xbe\x78\xa3\x17\xdf\x7d\x10\xd6\xb6\xda\x01\x93\xcf\xcb\x9f\x13\x7e\x90\x36\x99\x6e\xc9\xb7\x64\xf4\x8b\xd3\x3b\x68\xa7\xed\x51\x7d\x71\x22\x16\xa1\xd4\xa1\xf5\x8c\xce\xc7\x54\x71\x22\x4f\x3e\xc5\x80\xbf\xe7\x7f\x95\xe7\xe6\x45\x28\x28\xa0\x32\xd6\xb9\x58\x57\x6e\xda\x91\xbb\xd8\x9b\x20\xbc\x7b\xd6\x81\x4c\x89\xbc\xd0\xe1\x1b\xd2\x9d\x85\x68\x3f\x51\x96\x38\xb2\xb6\x8b\x7c\xb6\x4d\x64\x29\x3e\x25\xb3\x40\xcd\x68\x7d\x69\xaf\x30\x94\xf3\x98\xed\xd3\xb4\xae\x39\x48\x8f\x13\xf4\x79\x0d\x6a\x69\x1f\xa0\xf1\x7b\xbd\x36\x03\x89\xf8\x9e\x8e\x8b\x7e\x63\xf4\xaf\x35\x80\xa5\xa9\x6d\x53\xe8\xad\x98\x41\xfa\x1a\xc6\x30\x4e\xf4\x27\x79\x11\xa3\xaf\x31\x04\xe2\x35\x8f\x59\xcd\x4a\xcd\xb6\x72\x7c\x04\x00\x00\xff\xff\xee\x4f\x3c\x0e\xdb\x01\x00\x00")
func staticSentryJsBytes() ([]byte, error) {
return bindataRead(
@@ -1396,7 +1396,7 @@ func staticSentryJs() (*asset, error) {
return a, nil
}
-var _staticSummaryJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x4f\x6b\xe3\x3e\x10\xbd\xe7\x53\x0c\xe1\x07\xb6\x89\x6b\x9c\xc3\xef\xa2\xd4\x7b\xc9\xa1\x2c\x7b\x59\xba\xdd\xbd\x94\x52\x94\x78\x1a\x8b\xc8\x92\x91\xc6\x2e\x21\xe4\xbb\x2f\x72\x1c\xff\x51\x9a\xa5\x7b\x58\x5f\x12\x34\xef\x8d\x66\xf4\xe6\x4d\xc3\x0d\xfc\xa8\xcb\x92\x9b\x03\x64\x10\xbe\xd5\x6a\x4b\x42\xab\x30\x82\xe3\x6c\x36\x03\x00\x70\x08\x7b\x46\xc4\x40\x58\x56\x92\x13\xda\xd5\x39\x68\x50\xe5\x68\x20\x83\x09\x11\xba\xcf\x51\x49\x57\xaf\xc4\x77\x16\x32\x78\x7e\x59\xf5\xa1\xff\x12\xe4\xdb\x22\xec\x13\xf7\xfc\x7d\x0c\xcd\x38\x87\xfb\x2e\x39\x92\xaa\xb6\x45\x38\x8d\xb9\x4f\xf1\x12\x19\xec\xe3\xab\x40\xc3\x25\x83\x66\x72\x7c\x8a\x86\x22\xc6\xff\xfb\x3b\xac\x36\x34\xbc\x03\x8f\x61\xe3\x97\x23\xde\x20\xe4\x49\xc3\x25\x7c\x81\x8d\xfb\x8d\xc0\x20\xd5\x46\xc1\x72\x75\x03\x78\xef\x01\xef\x3e\x44\xba\x3e\xda\x9c\xee\xcf\x67\xb0\xf7\x3e\xd6\x83\x76\xa7\xe9\xb8\xe5\xc4\x60\x83\xc6\x62\x18\x75\x1a\xf6\x4a\xdd\x54\x69\x78\x1b\x29\xb6\x18\xa6\x31\x2c\xd3\x68\xa4\x99\x88\x1d\xd9\x7f\x26\x97\x53\xf2\x0d\xca\xd7\x3d\xba\xe1\x22\xbe\x6b\x8b\x4d\x6c\x25\x05\x85\x01\x83\x20\x7a\x4e\x5f\x56\x37\x48\xee\xd9\x6e\x90\x96\x1e\xc9\x81\x2c\x1d\x24\x42\x06\x6b\x2d\xb5\xb1\xc9\x03\x52\xd8\x5f\x1e\x0f\x29\xa3\x6b\xe6\x56\xda\x09\x6f\x2d\xb9\xb5\x9f\x24\x77\x23\xe9\xba\x9f\x8e\xd5\xcc\x93\xe0\xe9\x62\x9c\xe4\xb1\xb5\x4c\x18\x6c\x0c\xf2\x7d\xae\xdf\xd5\x5a\x2b\x42\x45\x41\x0c\x47\x97\x91\xb5\x79\x2f\xa3\x79\x5a\x75\x36\x14\x4a\xd0\x2d\x9f\xd9\xde\xc0\xc7\xd3\x48\xbc\x30\x48\x14\x6f\x36\xdc\xdc\x15\xc8\x73\x34\x41\x94\x54\xba\xd2\x0d\x1a\xcf\x43\x64\xc4\x6e\x87\x86\x41\x50\xb8\x68\x30\x35\x52\x8e\x92\x1f\x18\xf8\xb6\x9b\xdb\x42\xbf\xcf\x19\xfc\x9f\xa6\xbe\xf1\xe6\x85\xc8\x71\xce\x60\x99\xa6\x53\xef\x4d\x81\x5b\xad\x88\x0b\xd5\x5e\xbc\xd1\xf9\xc1\xbb\xb7\xa0\x52\x32\x20\x53\xe3\xf4\xbc\x92\x7c\x8b\x25\x2a\x6a\x69\x44\xba\xf4\x88\x24\x48\x22\x83\xe0\x49\x57\x67\xed\x6c\x70\x7d\x71\xcb\x3f\xaf\x2f\x8f\xdd\x29\xc5\xfe\xa4\x99\x13\xeb\x14\x5d\x2d\x92\x5e\xad\xba\xca\x39\xe1\x58\xaf\x9c\x13\xff\x58\x33\x17\xf1\xe8\x06\x2d\xfe\xa5\xda\xe7\x56\x42\xbf\x10\x37\x9e\xe3\x44\xed\x7b\x7c\xeb\xa7\xfa\x97\xdb\x49\xd3\x85\xed\x5c\x77\x41\xc1\x02\x9c\xe3\x60\xd1\xa3\x87\x0b\xdd\x1a\xea\x4a\x79\x96\x2f\x90\x65\x19\xd4\x2a\xc7\x37\xa1\x30\xf7\x57\xc1\x18\x37\xde\x51\x27\x40\x69\xf1\x26\x78\xb1\x18\x41\xfb\xbe\xdc\xef\x0e\x69\xad\x6b\x45\xff\xa6\xb5\xce\xb3\x43\x21\x57\xf2\xb4\xf1\x21\xf9\x57\x25\x88\xb5\x16\x1d\x66\xe9\x67\x3b\x02\xac\x1b\x85\xe1\xfc\xd1\x69\xcb\xce\x12\x0f\xa7\xdf\x6b\x5b\xb0\x56\xad\xe1\xec\xc1\xe1\x2e\x9d\xf6\x15\x9c\xc2\x28\x5a\xcd\x7e\x07\x00\x00\xff\xff\xc0\xa1\xf4\x4f\xb8\x07\x00\x00")
+var _staticSummaryJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x3d\x6f\xdb\x30\x10\xdd\xfd\x2b\x0e\x44\x07\x29\x56\x14\x79\xe8\x42\xc7\x5d\x3c\x04\x45\x97\x22\x4d\xbb\x04\x41\x40\x59\x17\x4b\x30\x45\x0a\xe4\x49\xa9\x11\xf8\xbf\x17\x94\x65\x7d\xd0\x71\x91\x0e\xd5\x12\xe7\xf8\xde\xf1\x8e\xef\xde\xdd\x5c\xc1\x56\xea\x54\x48\x0b\x6b\x2d\xb5\xb1\x11\x3c\x60\x59\x49\x41\x68\xe1\xea\x66\x36\xbb\xb9\x02\xfc\x5d\x69\x43\x98\xc1\x8f\xba\x2c\x85\xd9\xbb\x78\x23\x4c\xff\xef\x0a\x82\x97\x5a\x6d\xa8\xd0\x2a\x08\xe1\x6d\x36\x03\x00\x70\x00\x7b\x04\x2c\x87\x88\x41\x95\xa1\x81\x15\x4c\x08\xd0\x7d\x0e\x41\xba\x7a\x26\xb1\xb5\xb0\x82\xc7\xa7\x65\x7f\xf4\x29\x46\xb1\xc9\x83\x2e\x63\x34\xf0\x77\x11\x34\xe3\x1c\xee\x3b\xe5\x88\xab\xda\xe6\xc1\xf4\xcc\x7d\x4a\x94\xc8\x61\x17\x9d\x1d\x34\x42\x72\x68\x26\xe1\x43\x38\x14\x31\xfe\xdd\xdf\x61\xb5\xa1\xa1\x7f\x11\x41\xea\x97\x53\xbc\x40\x20\xe2\x46\x48\xf8\x02\xa9\xfb\x1b\x82\x41\xaa\x8d\x82\xc5\xf2\x02\xf0\xd6\x03\x5e\xbf\x8b\x74\x7d\xb4\x39\xdd\x8f\x8f\x60\x6f\x7d\xac\x07\xed\xa2\xc9\xb8\xe5\xd8\x60\x83\xc6\x62\x10\x76\x3a\xf6\x4a\x5d\x54\x69\x78\x1b\x59\x6c\x30\x48\x22\x58\x24\xe1\x48\xb3\x22\x72\x64\xff\x99\x5c\x4e\x29\x52\x94\xcf\x3b\x74\x43\x45\x62\xdb\x16\x1b\xdb\x4a\x16\x14\x30\x0e\x2c\x7c\x4c\x9e\x96\x17\x48\xee\xd9\x2e\x90\x16\x1e\xc9\x81\x2c\xed\x25\xc2\xaa\x9b\xfa\xf8\x0e\x29\xe8\x2f\x8f\x86\x94\xe1\x39\x73\x23\xed\x84\xb7\x96\xc2\xda\x0f\x92\xbb\x91\x74\xdd\x4f\xc7\x6a\xe6\x49\xd0\x9b\x30\xbe\x6f\x2d\x13\xb0\xd4\xa0\xd8\x65\xfa\x55\xad\xb5\x22\x54\xc4\x22\x78\x73\x19\x79\x9b\xf7\x34\x9a\x87\x91\xd9\x0a\x55\xd0\x25\xab\xd9\xde\xbb\x6f\x87\x91\x7e\x01\x8b\x95\x68\x52\x61\xae\x73\x14\x19\x1a\x16\xc6\x95\xae\x74\x83\xc6\xb3\x11\x99\x62\xbb\x45\xc3\x81\xe5\xee\x94\x4d\xbd\x94\xa1\x14\x7b\x0e\xbe\xf3\x98\xcd\xf5\x2b\xe3\xf0\x39\x49\x7c\xef\xb1\xbc\xc8\x90\x71\x58\x24\xc9\xd4\x7e\x53\xe0\x46\x2b\x12\x85\x6a\x2f\x4e\x75\xb6\xf7\xee\xcd\xa9\x94\x1c\xc8\xd4\x38\x8d\x57\x52\x6c\xb0\x44\x45\x2d\x8d\x48\x97\x1e\x91\x0a\x92\xc8\x81\x3d\xe8\xea\x28\x9f\x65\xe7\x17\xb7\xfc\xe3\x06\xf3\xd8\x9d\x58\xfc\x6f\xb2\x39\xbd\x0e\xe1\xd9\x2e\x19\x0b\x56\x57\x99\x20\x1c\x4b\x96\x09\x12\xef\xcb\xe6\x4e\xce\x33\x18\xb4\xf8\x8f\x9a\x1f\x1b\x0a\xde\x29\xc7\x8d\xea\x38\x57\xfb\x30\xdf\xfa\x09\xff\xe5\xf6\xd3\x74\x79\x3b\x07\x9e\x50\x30\x07\xe7\x3e\x98\xf7\xe8\xe1\x4e\xb7\x92\xba\x6a\x1e\xe5\x13\xac\x56\x2b\xa8\x55\x86\x2f\x85\xc2\xcc\x5f\x0b\x63\xdc\x78\x5f\x1d\x00\xa5\xc5\x8b\xe0\xf9\x7c\x04\x3d\x6b\x6d\x8b\xb4\xd6\xb5\xa2\xff\xd3\x5e\xe7\xe1\xa1\x98\xe9\xdb\x76\xc7\x43\xee\xaf\xaa\x20\xde\xda\x75\x98\xab\x9f\xed\x2c\xf0\x6e\x26\x86\xf8\xbd\x53\x98\x1f\x85\x1e\xa2\xdf\x6b\x9b\xf3\x56\xb0\x21\x76\xe7\x70\xa7\x46\xfb\x02\x0e\x41\x18\x2e\x67\x7f\x02\x00\x00\xff\xff\x0e\x64\x06\x75\xf7\x07\x00\x00")
func staticSummaryJsBytes() ([]byte, error) {
return bindataRead(
@@ -1416,7 +1416,7 @@ func staticSummaryJs() (*asset, error) {
return a, nil
}
-var _staticTemplatesJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x55\x4d\x6f\xe3\x36\x10\xbd\xfb\x57\x0c\xdc\x05\x24\x63\x2d\x1b\x7b\xb5\x2d\x03\x6d\xb1\x29\x02\xa4\x3d\x34\xe9\xa9\x28\x0a\x5a\x1c\xd9\x6c\x28\x52\x20\x47\x4e\x83\xc0\xff\x7d\x41\x52\x96\x28\x29\x4e\x74\x9b\xc7\xf7\xe6\x93\x1a\x9e\x99\x81\x27\xac\x6a\xc9\x08\x2d\xe4\x90\x96\x8d\x2a\x48\x68\x95\xd6\xcc\xb0\xca\x2e\xe0\x6d\x36\x9b\x01\x00\x38\x26\x45\xcc\xb7\xcb\xd2\xe3\xee\x2b\xb4\x2a\xc5\xd1\x81\x1d\x04\xb0\x5e\x43\xad\x6b\x7d\x46\x03\x2f\x82\x4e\x40\x27\x04\x29\x2c\x81\x2e\xa1\xd2\x96\xa0\xd0\x55\xa5\x15\x48\x76\x40\x69\x23\xe1\xc1\x20\x7b\xe6\xfa\x45\x6d\x20\xf9\xa9\x33\x92\xe5\x7b\x94\x5f\xb5\x22\x54\x34\x60\x66\x45\x00\x93\xe5\x6c\x98\x8e\x41\xa9\x19\x87\x0a\xad\x65\x47\x04\x51\xc2\x81\x15\xcf\xa8\x38\x9c\xd1\x58\xa1\x15\x1c\x9a\xaa\x06\x61\x81\x23\x61\x41\xc8\x23\x7d\x10\xff\x81\xc8\x91\xbb\x70\xc1\xce\x94\x07\x26\xa1\xd0\x18\x6d\xe2\xa2\x4a\x46\x4c\x7e\x77\xa8\x13\x7b\x2b\xf3\xa4\x41\x5d\x42\x11\x1a\x15\x11\xaf\xc0\x3b\xdc\xa6\xe6\x8c\xb0\x63\x06\xb3\xe3\x0d\xd3\xa9\x34\x67\xd2\x8d\xa3\xa9\xc3\x30\x7c\xd3\xa1\x14\x92\x70\x90\xa6\x27\x3e\x09\x92\xe8\x7c\x7a\x2b\x23\x67\x0e\x42\x7b\xfc\x17\xcd\x5f\x7b\xd2\x41\xf3\xd7\xcf\xc3\x5a\x21\x51\x15\x08\xa5\x36\x55\x44\x6d\xe1\x3b\x6d\x2a\xe7\xb1\x35\x33\xc7\x1a\xc4\x8d\x78\x8f\x4d\x51\xa0\xb5\x63\x7a\x66\x03\x7e\x4b\xd6\xb5\x6b\x20\x9a\x36\x37\x92\xdc\xb9\x59\x4d\x24\x7e\x82\xb7\x24\x0f\x9a\x71\xa1\x8e\x13\x91\x0c\xf8\xa4\x4f\x61\x1a\x87\x86\x48\xab\xf8\x96\x7b\xe0\xc1\x1d\x3a\x57\x9e\x95\x05\x30\x0b\xa3\x9b\x78\x62\x12\x0d\xc1\xd1\xe8\xa6\x8e\x0e\x3c\xfa\x9b\x03\x9d\x1f\x6f\x65\x9e\x33\x28\xa0\x67\x75\x17\x20\xa2\xbe\x73\x0d\x7a\xc1\xcf\x4a\x69\x62\x6e\x6f\xd8\xb1\x8c\xf5\x47\x37\xc4\xbe\xc0\x89\x2e\xac\x85\x1b\x92\xef\x12\x2b\x54\x34\x11\x61\x8b\xdf\x90\x3d\x86\x61\x8c\x55\xed\x8c\x3e\x4a\xef\x77\x36\x6e\x5d\x48\x30\xab\x58\x9d\x74\xb2\xcb\xb6\x5d\x96\x42\x09\x82\x1c\xba\x65\xba\x88\x36\xe3\x97\x15\xb2\xe2\x94\x86\x9d\xb9\xec\x39\x8a\x55\xb8\x04\x8b\x12\x0b\xd2\x66\x31\xd8\xa5\x00\x64\x5e\x47\x88\x47\xaf\x0b\xf9\x6f\xa7\xfe\x07\x72\xf8\x77\x75\xc5\xd2\x2f\x69\xe7\x6c\x75\xa2\x4a\xa6\x8b\xc5\x76\xe0\xe1\x02\x05\xa3\xe2\x04\x29\x9a\x49\x3c\x08\x6b\xdd\x6a\x89\x2b\xff\x7b\xa4\xc9\x1d\x13\x12\x39\x90\x86\x9a\x19\x8b\x5d\x70\x48\xe0\x2b\xb8\xf8\xf0\x15\x12\x6f\x74\x71\xb7\x9f\xf8\x74\x81\x47\x39\xf5\xcd\x6c\x4f\xba\xa6\x1a\x54\x1c\xcd\xf5\xb5\x8a\xdb\x1b\x5a\xe7\xd7\xfe\xff\x14\x57\xe2\x1f\x2d\xc8\xc7\x7d\xea\x43\x8a\x12\x52\x82\x3c\xcf\xa1\x51\x1c\x4b\xa1\x90\x8f\x3b\x31\xea\xc2\x5f\xea\x59\xe9\x17\x35\xad\x7e\x54\x88\x41\x6a\x8c\x82\x64\xc7\xc5\x19\x0a\xc9\xac\xcd\xe7\xff\x35\xd5\x41\x93\xd1\x6a\xbe\xdf\x9d\xbe\xed\xef\xdb\xe5\x1e\x5e\x8b\x0d\x34\xb7\x5c\xbb\xc6\xee\xd6\xa7\x6f\xfb\xdd\x9a\x8b\xf3\x3e\xe9\x23\xf5\xed\x1a\x5f\x90\x36\x3e\xa5\xd7\xb6\x44\xa2\x9b\x73\xff\x24\xe9\xfe\x06\x84\x59\xf4\x99\xce\xe3\x54\xe7\xae\xb8\x5d\xbd\x77\x18\x1a\x13\xb2\xaf\xf7\x1f\x55\x10\x0d\xd9\x67\xd0\x27\x75\xaf\x04\x6d\xfc\x0f\xd5\xff\x9e\x7f\xfa\xe8\x9b\xd1\x8d\xe8\x1c\x5d\x16\xe9\x62\x3b\xfb\x11\x00\x00\xff\xff\xec\xef\x7d\x6c\xdb\x08\x00\x00")
+var _staticTemplatesJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x55\xc1\x8e\xdb\x36\x10\xbd\xfb\x2b\x06\x6a\x80\xc8\x1b\xcb\x42\xae\xbb\x2b\x03\x6d\x91\x2d\x02\xa4\x3d\x34\xe9\xa9\x28\x02\x4a\x1c\xd9\xcc\x52\xa4\x40\x8e\xbc\x59\x04\xfe\xf7\x82\xa4\x2c\x51\xd2\x2a\xeb\xdb\x3c\xbd\x37\x33\x7c\x43\x0f\xf3\x1b\x38\x4a\x5d\x32\x69\xe1\x2b\xdc\xe4\xe0\x7e\x79\x0e\x9d\xe2\x68\x6c\xa5\x0d\xee\xbf\xd9\xcd\x26\xbf\x01\xfc\xde\x6a\x43\xc8\xe1\x0b\x36\xad\x64\x84\x16\x6e\xf2\xcd\x99\x99\x08\x28\x20\xad\x3b\x55\x91\xd0\x2a\xdd\xc2\x8f\xcd\xc6\x65\x73\x14\x8a\x28\x3f\x2e\x3b\x8f\xbb\x5f\xa5\x55\x2d\x8e\x0e\x1c\x20\x5f\xbe\xd5\xad\x3e\xa3\x81\x27\x41\x27\xa0\x13\x82\x14\x96\x40\xd7\xd0\x68\x4b\x50\xe9\xa6\xd1\x0a\x24\x2b\x51\xda\x48\x58\x1a\x64\x8f\x5c\x3f\xa9\x5b\x48\x7e\x19\x82\x64\xf7\x12\xe5\x77\xad\x08\x15\x4d\x98\x59\x15\xc0\x64\xb7\x99\xb6\x63\x50\x6a\xc6\xa1\x41\x6b\xd9\x11\x41\xd4\x50\xb2\xea\x11\x15\x87\x33\x1a\x2b\xb4\x82\xb2\x6b\x5a\x10\x16\x38\x12\x56\x84\x3c\xd2\x07\xf1\x5f\x88\x1c\xb9\x2b\x17\xe2\x4c\x79\x60\x51\x0a\x8d\xd1\x26\x3e\x54\xcd\x88\xc9\x0f\x0e\x75\x62\x1f\x65\x9e\x34\x39\x97\x50\x84\x46\x45\xc4\x2b\xf0\x02\xb7\x6b\x39\x23\x1c\x98\x21\x1c\x78\xd3\x76\x1a\xcd\x99\x74\xe3\xe8\xda\x30\x0c\x6f\x3a\xd4\x42\x12\x4e\xda\xf4\xc4\x2f\x82\x24\xba\x9c\x3e\xca\xc8\x85\x93\xd2\x1e\xff\x4d\xf3\xe7\x91\x54\x6a\xfe\xfc\x7a\x59\x2b\x24\xaa\x0a\xa1\xd6\xa6\x89\xa8\x3d\xfc\xa0\x4d\xe3\x32\xf6\x61\xe6\x58\x93\xba\x11\xef\x73\x57\x55\x68\xed\x9c\x9e\xd9\x80\xaf\xc9\x06\xbb\x26\xa2\xa5\xb9\x91\xe4\xc1\xcd\x6a\x21\xf1\x13\x5c\x93\x7c\xd2\x8c\x0b\x75\x5c\x88\x64\xc0\x17\x3e\x85\x69\x94\x1d\x91\x56\xf1\x2d\xf7\xc0\x27\xf7\xd1\xa5\xf2\xac\x2c\x80\x59\x18\xdd\x22\x13\x93\x68\x08\x8e\x46\x77\x6d\xf4\xc1\xa3\x7f\x38\xd0\xe5\xf1\x51\xe6\x39\x93\x03\x8c\xac\xe1\x02\x44\xd4\x17\xae\xc1\x28\xf8\x55\x29\x4d\xcc\x2d\x0c\x3b\x97\xb1\xf1\xd3\x8a\xd8\x1f\x70\xa1\x0b\x6b\x61\x45\xf2\x41\x62\x83\x8a\x16\x22\xec\xf1\x15\xd9\xe7\x30\x8c\xb9\xaa\x9f\xd1\xcf\xda\xfb\x93\xcd\xad\x0b\x0d\x66\x0d\x6b\x93\x41\x76\xb9\x1b\x77\xa5\x50\x82\xa0\x80\xc9\x22\xbd\xf2\xde\xec\x91\x55\xa7\x34\xac\xcd\xdd\xc8\x51\xac\xc1\x1d\x58\x94\x58\x91\x36\xdb\xc9\x3a\x05\x20\xf3\x3c\x43\x3c\x7a\xdd\xc9\xff\x3a\xf5\x7f\x50\xc0\xd7\xfd\x15\x4b\xdf\xa4\x43\xb2\xfd\x89\x1a\x99\x6e\xb7\x77\x93\x0c\x17\xa8\x18\x55\x27\x48\xd1\x2c\xea\x41\xd8\xec\x56\x4b\xdc\xfb\x7f\x48\x9a\x3c\x30\x21\x91\x03\x69\x68\x99\xb1\x38\x14\x87\x04\xde\x81\xab\x0f\xef\x20\xf1\xc1\x50\xf7\xee\x95\x9c\xae\xf0\xac\xa7\xd1\xcf\xfe\x4b\xec\xab\x41\xf7\xa6\x5d\x1f\xab\xd8\xe1\xe0\x9e\x5f\xfe\xdf\x29\x3e\x8c\x7f\xba\xa0\x98\x5b\x35\x56\x15\x35\xa4\x04\x45\x51\xf8\x07\xb3\x16\x0a\xf9\xdc\x8c\x99\x11\xff\xa8\x47\xa5\x9f\xd4\xd2\x80\xd9\x59\x0c\x52\x67\x14\x24\xf7\x5c\x9c\xa1\x92\xcc\xda\xe2\xed\xb7\xae\x29\x35\x19\xad\xde\x1e\xee\x4f\xef\x0f\x1f\xfb\x15\x1f\xde\x8c\x5b\xe8\xd6\x52\x3b\x6f\xef\xf3\xd3\xfb\xc3\x7d\xce\xc5\xf9\x90\x8c\x95\x46\xc7\xe6\x77\xa4\xaf\x4f\xe9\xd5\x96\x48\xb4\x3a\xfa\x57\x9a\x1e\x2f\x41\x98\xc5\x4a\xa7\xae\xd1\xf6\xe0\x20\x34\x26\xf4\xde\x1e\x7e\xd6\xff\x75\xca\x7d\xf9\xb1\xa3\x8f\x4a\xd0\xad\xff\x43\x8d\xff\xd0\xbf\x7d\xe9\xdb\xd9\x75\x18\xf2\x5c\xb6\xe9\xf6\x6e\xf3\x7f\x00\x00\x00\xff\xff\xfd\x4a\xee\x1e\x16\x09\x00\x00")
func staticTemplatesJsBytes() ([]byte, error) {
return bindataRead(
@@ -1436,7 +1436,7 @@ func staticTemplatesJs() (*asset, error) {
return a, nil
}
-var _staticUiJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x3b\x6b\x93\x1b\x37\x72\xdf\xf5\x2b\xda\x73\xca\x71\x58\x22\x67\x57\x4e\xee\x2a\x45\x8b\xba\x92\xbc\x67\x4b\x29\xeb\xac\xf2\xae\x93\xb8\x14\x25\x85\x9d\x69\x72\xa0\xc5\x00\x73\x00\x86\x5c\x46\xde\xff\x9e\xc2\x63\xde\x0f\x92\x7a\xdc\xa7\xe0\xc3\x2e\x39\xd3\xdd\xe8\x37\x80\x6e\x70\x47\x24\xfc\xfa\x1a\xd6\x10\x6e\x0a\x1e\x6b\x2a\x78\x98\x13\x49\x32\x35\x87\x8f\x8f\x1e\x3d\x02\x00\xb8\xb8\x80\x7d\x8a\x1c\x0a\x85\x12\x62\x46\xe3\x3b\x10\x1c\x08\x3f\x00\x61\x28\x35\x30\x72\x8b\x0c\x32\x91\x10\x06\xb9\xc8\x8b\x1c\xf6\x54\xa7\x40\x80\x51\xa5\x41\x6c\x20\x17\x4a\xd1\x5b\x86\x25\xb5\x0d\x65\x1a\x25\xec\x29\x63\xa0\x52\xb1\x5f\x80\x4e\xa9\x82\x92\x01\xa0\xca\xcc\x95\x80\x16\xa0\x50\x17\x39\xe8\x94\x68\x37\x81\x25\x61\x1f\xbe\xb1\xf3\xad\x2b\xac\xd0\x30\x0c\x7e\x3c\x0e\x83\x3f\x58\xb6\x2c\x54\x30\x8f\x04\x0f\x03\x33\x55\x74\xab\x22\x4b\x28\x58\xd4\x98\xb8\x43\xae\x9b\xe8\x66\xfc\xca\x15\x62\xf4\x96\x14\x0a\xc3\xf9\x77\xad\x57\x46\x67\x99\x9f\xfe\x71\x68\x78\x1f\x00\x70\x5a\x31\x00\x96\x7c\x24\x91\x11\x8d\xc9\x0d\x91\x5b\xd4\x63\xf0\xff\x73\x87\x07\x58\xbb\xcf\x51\x42\x34\x09\x03\xfb\x79\x79\x87\x87\x60\x14\x69\x67\x39\xe9\x23\xed\x8c\xe8\x7d\x24\xa2\xb5\x54\xb0\x86\x17\xc6\x7a\x2a\xfa\x11\xf5\x4f\x06\xfc\x85\x79\x1c\x56\x6c\x2c\x6a\xe2\x03\x34\x62\x51\x70\x63\xc3\x35\x5c\x17\x59\x46\xe4\xc1\x90\x39\x05\xd9\xea\x2d\xda\x50\x9e\x84\x81\xb3\xc4\x52\x53\xcd\x30\x98\x47\xa9\xce\x58\xd8\x02\x36\xe3\x06\xb3\xdc\x68\x4e\x45\xbf\x20\x4f\x50\x86\x81\xc5\xba\xb1\x48\x8b\x8e\xd1\xdc\xb0\x02\xae\xdc\xbf\xc5\xc0\x7b\xcf\xfc\xaa\xfc\xd0\x03\x79\x98\xb7\x1e\x0d\xc8\x9f\x52\xae\xad\x0e\x0b\x2d\x62\x91\xe5\x0c\x35\x46\x3f\x22\x47\x49\x34\xbe\x32\x2f\x3f\x51\x19\xb7\x22\x39\x8c\xe8\x62\x44\x13\x2f\x0d\xc6\x02\x3e\x5a\x96\x56\x8e\xb3\x69\x01\x1e\xd7\xaa\x27\xb7\x56\xf5\x26\x3c\x6c\x64\x07\x0b\xa8\x38\x29\xb4\x16\x7c\xe9\x82\xb5\x15\x2e\x0c\xb3\x6e\xb4\x94\x7a\xf1\xa1\x6d\xdd\x9e\x61\x16\x69\xe7\xee\xde\x2d\xdd\xdb\x25\xc9\x73\xe4\x89\x71\xcf\x02\xbb\x0e\x0a\x43\xd1\x6b\x19\x0a\x83\x94\x26\x83\xf0\x3f\x58\xb2\x2a\x7a\x91\x24\xee\x63\xe8\x26\xea\x80\x3e\x34\xbe\x37\x3f\x0f\x26\x8b\x94\x26\x09\xf2\xd3\xd3\xc5\xd1\x9c\x30\xe1\xf8\x71\x4a\x59\x22\x91\x87\xf3\x48\x62\x26\x76\xbd\x84\x33\xee\x27\x47\x51\x5d\x1a\xfb\x0f\x42\xf5\x0f\x42\xfe\x0d\xef\xf5\x2f\xc8\x04\x49\xc2\x01\x5d\x3c\x7c\x57\x27\x7c\x24\x71\xea\xd3\xfb\x56\x8a\x22\x87\x94\xec\xd0\xa6\x74\x7e\x07\x5b\xef\xe7\x09\x6c\x84\x04\xaa\x17\x70\x5b\x68\xd8\x23\x18\x03\x01\xd5\x50\x70\x4d\x59\x49\xca\x2e\x1b\xa9\xd8\xa1\x54\x60\xfe\xba\x6c\xee\xa8\x2a\x61\xc0\x13\x81\x8a\x07\x1a\xb4\x24\x2a\x05\x9d\x22\xfc\xfa\xba\x4e\xf4\x3f\x1a\xc8\x9f\x28\xbf\x7b\x65\xb1\xd7\xe3\x8e\xe8\x7c\xce\xd9\x2f\x13\x85\x42\xe4\x1d\xd7\xed\x5a\xcd\x5b\xaa\x54\xad\x15\x78\x69\x59\x5b\x5a\x49\x9f\x03\x09\xec\x5b\xaa\xd2\x70\x1e\x11\x4e\x33\xa2\x31\xec\xfb\xbe\xc8\x49\x4c\xf5\x61\x05\x4f\x2f\x2f\xdb\x4e\xb7\x80\x6f\x2f\x2f\x47\x3d\xaf\xc3\x30\x43\xb2\xc3\x7f\x2c\xc3\x27\xb2\xdb\x74\x0e\x33\x39\x10\xc6\xc0\x70\x8f\x26\x11\x52\xae\x8c\xe9\x9b\x0e\x93\x13\x8e\xcc\xd9\xda\x2e\xf4\x85\x42\xd0\x42\x30\x4d\x73\x55\x12\x22\x3c\xa9\x56\x78\xa1\xb0\x63\xf3\x1b\x0f\xdd\x34\xb9\xa5\xfd\xd7\xae\xdd\x23\xe3\xae\xf5\x3b\xaf\x9d\x77\x26\xe9\x2c\xb5\xd8\x6e\x19\xae\xfd\xd4\xef\x83\x79\x43\xbb\x74\x01\x43\xc9\xac\x34\x8b\xc7\x19\xd0\x9e\xd3\x2b\x15\x7c\x05\x1b\xc2\x14\x2e\x8c\x34\x8a\x89\xbd\x82\x44\xec\x79\x29\x28\xd8\x98\xf4\xbb\x96\xe6\x48\x90\x91\xc3\x6a\x70\xf1\x02\xbb\x25\x5a\xc1\x9f\x2e\x2f\x87\xd6\x2e\xb0\x41\xd6\x35\x9b\x33\x5d\xef\x91\x4d\x30\xab\x4a\x1e\xb3\x20\x86\x81\xcf\x3a\xf0\xfb\xef\xd5\x0b\x97\x9d\xb5\x2a\x33\xd2\x00\x25\x49\xb7\x5b\xb3\x64\x06\x36\x92\x83\xa3\x89\xb5\xf2\x17\x6b\x4f\xbb\xd5\xb0\x46\xb5\x7b\xcd\xd1\x08\x1e\x08\x78\x07\xf3\xdd\x00\x48\xe9\x1f\x4d\x88\x6a\x5a\xca\xa9\x1e\xdb\x1d\xd6\xfb\xc7\xb0\x4b\xf8\x9a\x32\xe4\x31\xfe\x20\x64\x16\xf6\x24\xa9\xdf\x5d\x11\x4d\xc6\xa8\x9b\x95\xc0\x2e\x6d\xca\x2e\x05\xc1\x1f\x38\xee\x1b\x64\x83\x79\xa4\x50\x52\xc2\xe8\xff\xe2\x0b\x29\xc9\xa1\xc9\x83\xc1\xcd\xc9\xc1\x64\x68\x58\xb7\xdc\x23\x23\x3a\x4e\xd1\x6c\x6b\xde\xbd\x6f\x9a\x47\x69\x22\xb5\x7a\xa1\x57\x10\x04\xcd\xe7\xc8\x93\x81\xa7\xb1\x44\x93\xb7\x5f\x1e\x7a\x2f\x44\x66\x22\xd9\x3c\xae\x4d\xf9\x5d\x37\xc2\x9c\x58\x03\x01\xd4\x72\x64\xb5\xa7\x3a\x4e\xc1\x6d\x00\x38\xc9\xb0\xb7\x59\x88\x89\x42\x08\xfc\x9c\xc1\xaa\xfc\x5e\x32\x17\xac\xba\xfe\xe7\x75\xf2\xae\x22\xf9\x1e\xd6\x76\xe6\xc8\xb2\xd4\xdb\x12\xdc\x4a\x24\x77\xad\xa7\x0f\x83\x09\x98\x6e\x20\x34\x26\x2a\xb5\x18\xf8\x58\x98\x5d\x11\x8d\x37\x34\xc3\xb7\x34\xbe\x43\x39\x9b\xb7\x45\xf0\xec\x44\x25\x9a\x37\xf4\x51\x2a\xe6\x71\x6b\x85\x7e\xe8\x71\xe2\xec\x76\x26\x1f\x0e\xc9\x73\x71\x84\xc2\x04\x0f\xde\xca\x7d\x9f\x85\xc8\x2c\x4d\xb1\xce\x2d\x8d\x53\x52\x68\xf7\x44\xd3\xca\x34\xb3\xea\x4c\x33\x1b\xd8\x5a\x37\x62\xc7\xe1\x34\xe7\x0e\x67\x3b\xc2\xba\x58\x46\x77\x1e\xeb\x8f\x7f\xf4\xf8\x11\x43\xbe\xd5\x29\x3c\x87\xcb\xfe\x5e\xd5\x86\xd9\x8e\xb0\xae\xdf\x50\xf5\x0b\x6e\xf1\xde\x44\xb6\xc9\xea\xbd\xd7\xd5\x3c\x35\xf5\xa7\x43\x3b\x61\xb0\xd4\x61\x0d\xc1\x7f\x87\x7f\x59\x05\xf0\xa4\x64\xea\x83\xa0\x3c\x0c\x7e\x0f\xe6\xf0\x04\x82\xf9\xe3\xa0\xbf\x97\x6d\x32\xa1\x65\xdf\xb5\x1f\x00\x99\xc2\xa9\x39\xdd\x54\xef\x2e\xdf\xf7\x50\x3b\xdf\x4b\xef\x29\x53\x4b\x94\x17\x2a\x1d\x58\xec\x00\x4c\xc4\xad\x6a\x7b\x0e\xad\x4b\x76\xd6\x95\xe5\x61\xe8\xb5\x17\x6a\x55\x7e\xe8\xb2\xd6\xdd\xaa\x0f\x46\xab\x44\x5d\x48\x5e\xf2\x3d\x9e\x9d\xbf\x27\x2c\x2e\xcc\x49\xe9\xaa\x90\x76\x95\x1e\x4e\xd5\x66\xc9\xbe\xa3\xb9\x31\xab\x89\x09\x4d\x33\x74\x4e\x06\x54\xf1\x99\x06\x89\x24\x39\xc0\x01\xb5\x87\x37\xe6\xff\xe6\xa4\x38\x37\x6b\xeb\x37\x27\x45\xb3\x17\xc9\xbb\xdb\xa3\x52\x97\x12\x3e\x33\xb5\x18\x12\x9f\x94\x15\x1a\xf8\x5a\x68\xc2\xae\xc8\xc1\xc4\x62\xe8\xf0\xa3\x84\x6e\x36\x61\xc9\xcc\x02\x66\x09\x39\xa8\xd9\xbc\x35\xad\x45\x7b\x25\x0a\x39\x85\x97\x9a\xf7\x46\x01\xff\x04\xdf\xfe\x4b\x0f\xfb\x0d\xe5\x85\xb6\x39\x60\x04\x3d\x73\x00\x33\x83\xff\xe7\xcb\x12\xdf\x2a\xca\xb9\xc1\x32\xf1\xa6\x5f\x1a\x0e\xcb\x03\x75\x25\xd1\x7c\x12\xc5\x32\xd7\xc2\xb1\xe2\x4c\x23\x79\x96\x5a\x68\x5e\x8e\xf9\xa0\x65\xaf\x50\xc5\xb0\x86\x4c\x98\x45\x30\x34\xbb\xcd\x4a\xc2\x6a\xa6\x0e\x6c\xf3\x6b\x24\x31\x67\x24\xc6\x30\xa0\x1c\x08\x6c\x70\x0f\x0a\x63\xc1\x13\x65\xce\xf0\x5c\xec\x83\xf3\xa8\xb4\x48\x00\xd9\x8a\x1e\x99\xa6\xd8\x96\xc6\x32\x41\x15\x4b\x9a\x1b\xf9\x4b\xb9\x9b\xc4\xdb\x72\x3b\x53\x0e\x48\xed\x5e\x54\xd3\xb4\xe0\xea\x2f\x67\xc8\x7b\x94\xc2\x79\xb2\x22\x4f\x86\x24\xad\x09\x4f\x6c\x14\xff\xed\xfa\xe7\xbf\xb9\x6a\xcd\x70\x0e\x32\x8a\x31\x5b\xbd\x20\x2e\x24\x03\xb3\x52\x34\x66\x2e\xeb\x11\x6e\x7b\x5e\xb2\x43\x72\x6a\xd6\x8f\x2a\x2b\x06\xff\xc5\xcd\xbf\xe5\x7f\xc2\xdb\x9f\xaf\x6f\x60\xb9\x34\xe0\x86\x54\x05\x61\x98\x88\x94\x96\x94\x6f\xe9\xe6\x10\x76\xf6\xb1\xe1\x7c\x01\x05\x4f\x70\x43\x39\x26\x0b\xf8\x76\x48\x07\x86\xc2\x4b\x26\x6e\x4b\xd9\x93\x09\x91\x7f\xcd\x93\x91\xd4\xdb\x29\x9c\xfc\x7f\xfe\x3d\x01\xfd\x0d\xe5\x06\xf6\x44\x2a\x99\x83\x6e\x13\x22\xb1\x37\x44\x59\x8a\x6e\x17\xe5\xaa\x0c\xe6\xe0\x82\x16\x6e\xe1\x8e\x51\x47\x30\x0d\x54\x1b\x4f\x69\xcc\x61\x0d\x39\x91\x0a\x5f\x73\x1d\x1e\x21\x60\xc0\x83\x79\x9d\x2f\x2e\x2e\x40\xe2\x32\x2e\xd7\x71\x47\x6e\x23\x24\x30\xb1\xf7\x1b\x9c\x1a\x92\x6e\x6c\xed\x89\xec\x10\xfe\x04\x2e\x0d\x3b\x04\xc2\x13\x88\x0b\x29\x91\x6b\x28\xa7\x02\xaa\xe0\x69\x09\xa5\x53\xc2\x5d\x47\x83\xf2\x6d\x4d\x50\x70\x5b\x84\xa2\x3c\x96\xb6\xbe\x61\x4e\xe4\x05\x4b\x60\x4b\x77\x08\x85\xaa\x66\x59\x00\x17\x1a\xfe\x5c\x52\x2b\xa7\xe8\xae\x66\xff\x6e\xf8\x1d\x5f\x0b\x8d\xf2\xea\x15\xb4\x3c\x3c\xd9\xa7\x8d\x6d\x9e\x3b\x22\xb9\x95\xa9\x79\x3c\x6a\xcd\xd0\xf8\xd2\x5c\x57\xa1\x7f\x22\x72\xe4\xca\x35\xeb\x34\x82\xf5\x42\xdb\x23\xf8\xf0\xa8\x11\xa3\xa5\xbf\xad\x21\xa8\x54\x18\x34\x65\x71\x36\xb3\x26\xa2\xb5\x36\x5b\xe6\xb2\x36\x36\x6f\xff\xd9\x19\x49\xa1\xae\x00\x95\xd3\xfb\xbf\xb6\xce\x4e\x96\xda\x73\x78\x6a\x4e\x00\x0d\xae\x9f\xd9\x69\xda\x7b\x74\xef\x9b\xf6\xdf\xb2\x01\x3c\x74\x24\xf2\x26\x23\x49\x62\x67\xf0\xd6\xaa\xc4\xee\x6e\xc6\x3f\x51\xb2\xcb\x52\xb2\x96\x48\x0d\x31\x9e\xc3\xa5\x11\xec\x7c\x21\x4f\x92\x4e\x15\xb7\x5a\x92\x58\x0f\x89\xe8\x58\xf1\xa9\xec\x59\x3b\x29\xb5\x67\x74\xb2\x27\x58\x06\xcd\xde\xc6\x8c\x44\x55\x30\x0d\x76\xcd\x36\x19\x5e\x69\x92\xe5\x26\x8c\x5d\x21\x98\x03\x61\xe6\x4b\x62\x34\x40\xb3\x22\x6b\x13\xd4\x29\x72\xf8\x50\x28\xb3\x18\x18\x45\x51\x0d\x5a\xd8\xe0\xec\x83\x57\xe9\xb6\xc5\x63\x5f\xec\x87\xc6\xf2\x76\x52\x56\xee\xec\x4f\xa6\x0e\x1a\xbd\x9a\xd1\xc5\x85\xef\x0a\x6c\xcc\x31\xda\x64\x30\x5b\xe5\xa0\x7c\x0b\xdc\x6c\x41\x1c\x2d\x55\x57\xca\x9a\xa7\xee\x89\x02\x53\xdd\x6a\xe8\xee\x16\x6a\x81\x5d\xd7\xe0\x8b\x76\x3e\xcf\x6b\x58\x0d\xb5\xac\x1a\xda\xfb\x49\x90\x84\xf2\x6d\xb0\x80\x8f\xc7\x1b\x6e\xc8\x30\x3b\xa3\x9b\x6a\xc0\x6d\x57\xd3\x1c\x22\x3e\x3e\x74\xfa\x5f\xae\xce\x61\xeb\x47\x8d\x7e\xa9\xd9\xbb\xab\x9c\x51\x1d\x06\x8b\x6e\x8d\x83\x0d\x1d\xf3\xeb\x49\xde\xb1\x12\x73\x1d\xcc\xdf\x5d\xbe\x7f\x0f\x6b\x68\x3d\x7a\xfa\x7e\xbc\x17\xe5\x58\x22\x1f\xc8\x7d\xef\xf0\x5d\x48\xb6\x82\x19\x71\x8d\xda\x0f\x4a\xf0\xbf\xfc\x7d\x6d\xbf\x99\x13\xf9\x7a\x06\x4f\xa0\x16\x62\x56\xbd\x98\xf5\x0a\xb8\x28\xa5\x90\xab\x5a\xa2\xfb\x54\x2e\x40\xe3\xbd\xbe\xd6\x44\x17\x6a\xe1\x00\x6e\x52\x29\xf6\x7c\xb8\xa0\x61\x95\x2a\xcd\x2e\xf6\x3e\x95\x91\x44\x95\x0b\xae\xf0\x06\xef\xb5\xd9\x6c\x35\xd0\xcd\xd7\x9a\xf2\x50\x81\xe3\x5c\x27\x82\x63\x8e\xf4\x03\xd1\xd6\xad\x3f\x7a\x31\x51\xca\x8e\x43\xb9\xd1\x6b\x1d\xf6\x4a\xe6\xaa\x88\x63\x54\xaa\xa1\x29\xa3\xda\x71\x8d\x9c\x12\x86\x6d\x0c\x36\xe6\x94\x6e\x78\xd7\x34\xb3\x46\xb6\x9f\xd1\xa9\xb6\xda\x67\xc3\xfc\x40\xa7\x13\xe2\x9a\x43\x4d\xfc\x0f\x0b\xd7\xa1\x19\xc7\x6f\xd0\xb0\x90\x91\x63\xb7\x41\x63\xb0\xab\x3d\x49\x0f\xfc\x1a\xc2\x7c\xa4\x94\x04\xde\xc3\x7a\xbd\xae\x4f\x1e\xc7\x89\x98\x31\x40\x64\x44\x93\xcd\xd1\xad\x7c\x9d\xc4\xde\xbb\x4a\xbe\x2f\xc3\x69\x8b\xde\x49\x24\xcc\xb8\xc3\xc3\x91\xca\xdb\xd0\xf0\xd5\xb8\x6a\xc6\x53\xf1\xfc\xcd\x89\xd3\x6f\x86\x9c\x4a\xd8\xd5\x70\x31\x59\xb5\x92\x66\xd3\x15\x6a\xa2\x27\x90\xfc\x2c\x8b\x77\x73\xef\xb1\x37\xc3\x4f\xbf\x78\x16\x33\x09\xcc\x39\x8d\x37\x5c\xf7\x16\x87\x1b\x83\xcc\xd4\x95\xfb\xb3\x2b\xf5\x15\x89\xa1\x6a\xfb\xb8\x97\xd2\x58\xf0\x97\x44\xe1\x0a\x66\x1b\x32\x1b\x77\x03\x4d\xe3\xbb\xd7\xb1\xe0\x16\x6e\x19\xa7\x18\xdf\x4d\x40\xef\x69\xa2\x53\x03\x4a\xf5\x04\x94\x63\xf1\x05\x63\x66\xf9\x59\xc1\xec\x19\x85\x98\x11\xa5\xd6\xc1\x86\x40\x39\xcb\x52\xfd\xbd\x20\x12\x97\x22\x78\xfe\xec\x82\x3e\x9f\x20\x97\xe0\x31\x82\x27\x93\xe2\x82\xe3\xb5\x77\xf5\x92\x96\xca\xed\x21\xd3\x92\x73\x97\xc2\x5c\xfb\xc3\xde\x8e\x73\x1f\x13\xdc\x90\x82\xe9\xe0\xf9\xcc\x16\x80\x5c\x8b\xbf\xd7\x2a\x81\x27\x10\xac\xe0\xd9\x85\x21\xf8\x3c\x18\x67\x22\x2b\x98\xa6\x39\xc3\x6b\xcc\x89\x24\xda\xac\x88\x33\x38\xaa\x4e\xc7\xb0\x71\x44\x62\xd8\xb6\x57\xa3\xcc\x59\x63\x02\xd1\xc2\xb4\xc5\xad\xee\xf0\x85\xbc\xc8\xca\x57\x0b\xe0\x45\x76\x63\x4e\x22\xd3\xa9\xd3\x17\x63\x4e\x52\xd9\x9e\x48\x6e\x36\x8f\x46\x65\x93\xb9\x60\xb4\xf3\xe4\xd4\x19\xc0\x13\x68\xb0\x6a\x1e\x96\x1d\xa8\x52\x2f\xa5\xc6\xc7\x73\xce\x70\xb6\x39\x27\x9b\x3c\x0e\x67\x51\x59\x04\x5b\xe6\xcd\xe3\x47\x5d\x16\x1b\x89\xc6\x8d\x37\x59\xf0\xdb\x6f\xbf\xfd\xb6\x7c\xf3\x66\x79\x75\x05\xaf\x5e\xad\xb2\x6c\xc4\x45\x4c\xe4\xaa\xb1\xbb\x07\x60\x43\x36\x73\x61\x6d\x63\x89\x89\xf8\x6e\x29\xa6\xc2\x87\xe8\x06\x38\x61\xc8\x13\x22\x27\xe0\x8b\xbc\x86\x4e\x71\x27\x05\x5f\x16\xf9\x14\x7d\xb1\xe7\x3d\x0c\xf3\x70\x02\x27\x97\xb8\xa3\xa2\x50\x3d\x3c\x86\x9b\xa9\xcc\xc2\x5d\xcc\xb6\x71\x24\xdd\xa6\x53\x48\x5a\x24\xe4\x50\x61\x11\xa5\x51\x52\x35\x95\xe5\x62\x86\x44\x56\x08\x05\x4f\xa6\xd4\x1b\x33\xa1\x5a\xe6\x50\x38\x1b\x76\xb7\x61\x1a\xbe\x24\xb8\xaa\x4a\xee\xc3\x60\x8a\x26\xf8\xf2\x70\x6d\xef\x96\x68\x59\xe0\x88\xef\x70\x46\xb9\x87\x38\xd9\xb7\x07\x6e\x6c\x0c\x5d\x8b\x18\x8d\x0b\x17\x87\x4b\x17\xba\xb7\x24\xd9\xe2\xcc\x5e\x99\x9a\xd9\xca\xdd\xac\x79\x9c\x1d\xcb\x2f\xb6\x24\x69\xc9\xd4\xd7\xf3\xa2\x9c\x48\xd7\x83\xa8\x3e\xd8\xd5\x7c\xe6\x00\xbb\x4d\xe6\x4a\x05\x1b\x08\x1d\xc4\x50\x63\x7a\x3c\xc1\xb9\xf2\x88\x4e\x51\xe2\x4c\x01\xe1\x07\x9d\x52\xbe\xad\x92\x4c\xb5\x0a\x01\x61\x63\x3b\xa0\xc1\x69\x1b\xab\xd7\x18\xcb\x13\x3d\x63\xcf\x99\x7d\xff\x69\xf3\x1f\x9f\xfd\x64\x47\xb9\xb8\xb0\xd5\x30\x5f\xc8\xf1\x8e\x0b\x5a\x00\x17\x7b\x78\x52\x95\x6d\x07\xdd\xe4\xf4\xda\x78\xd5\x7a\x22\x49\x12\x3e\xad\x9a\x89\xb3\x61\x07\x6c\xf3\x64\x52\xa3\x61\xe8\xc9\x53\x48\x45\xd1\xbf\x38\x7c\x46\x55\xa9\xc7\x46\xd9\x12\x1d\xe1\x62\x9f\x22\xc7\x1d\x36\x3a\x13\x71\x4a\xf8\xd6\xae\x53\xb6\x30\x46\x54\x59\x18\xb3\x6a\xdb\x88\xb2\x85\x30\x42\x0f\x21\x26\x7c\xa6\x5d\xe1\xbc\x2a\xf0\x95\xd4\x47\x44\xeb\xdd\x65\x12\x3c\x0c\x92\x3c\x72\xbc\x04\x0b\x68\xb4\x4a\x9a\xd7\x18\x87\x7d\xef\xf4\x8e\x4e\xb7\x53\x33\x44\xed\x0b\xb4\x6d\x7a\x5a\xf2\x7a\xe1\x88\x89\x32\x86\xbf\x45\x20\x1a\x18\x12\xa5\xeb\x36\x02\xd9\xe8\x86\x5d\x86\xd3\xab\x7f\x59\x5a\xdb\x97\xde\x87\xeb\x04\xe7\xf9\x73\xaf\x69\xdc\x1c\x63\xbb\x8d\x11\x4b\x56\x77\xc0\x49\xd4\x6b\x70\xdf\x6a\x1e\x2c\xc6\x1b\x7d\x67\x4d\x34\x2b\x2b\x92\xb1\x60\x8c\xe4\x0a\x17\x50\x39\x51\x23\xa1\xc3\x78\x46\x1f\xe9\xb2\x8e\x99\xf2\xb4\xb2\xed\xe7\xe8\x6e\xf6\xd5\xb8\x3f\x83\x0f\x55\xdc\x66\x54\x87\xd3\xf5\xdd\x7a\xd4\x57\x0d\x7b\x3d\xe1\x31\x35\x9a\x90\xed\x5d\x1c\xf2\xb7\xa1\xd6\xeb\xf5\xd0\x6d\xab\xe6\xf0\x65\xc4\xef\x05\xd7\xc8\x4d\x94\x4e\x1e\x89\xff\x2a\xa5\x90\x8d\xc2\x5e\x70\xed\x97\xa8\x32\x04\x05\x77\xc7\x81\x60\xfc\x4c\xdf\xd7\x95\xad\x6e\x54\x5d\xfc\x8a\x99\xf2\x06\xfd\xf7\xe6\xdc\x51\xfe\x00\x60\x2c\x40\xdd\x38\x9e\x93\x1a\xad\xb1\x21\x55\x14\x92\xd9\xcb\x10\x09\x61\x43\x5d\xfe\x31\x9a\x23\xd5\xe2\x7a\xe8\x43\x8e\x2b\x08\xde\xfe\x7c\x7d\x33\x71\x50\xb4\xd5\xe5\x42\x4e\x54\x87\x0c\x4f\xab\xee\xfd\x01\x6f\xfe\x89\xda\xcf\xe7\x97\x9b\xeb\x71\x71\x01\xfe\x78\x6c\xf2\xef\x3e\x25\xda\xae\x82\x96\x82\xa5\xe9\x57\x32\xd8\xe2\x70\xea\x2d\xc7\x17\xac\x60\xd7\xc3\x84\x43\x97\xdc\x29\xf5\xc1\x76\xdb\x9a\x80\x44\x8b\xee\x04\xd2\xf2\x60\x64\x4d\x30\x16\xee\xf7\x14\x44\x59\x1b\x9c\x44\xb5\xea\x56\xdf\xa2\x57\xd2\x46\x8a\xcc\x95\xf4\x32\xc2\xc9\x16\x25\x84\xd4\x6a\x6d\x8f\x12\x81\xdc\x32\xbb\xa5\x89\x05\xe7\x18\xeb\xa1\x92\x53\x7b\x18\xee\x4e\xa9\x5e\x1a\x7d\x7f\x80\xb5\xf3\x1e\x7b\x11\xa0\xaf\xa9\x63\x65\x3c\xf0\x2a\xfe\x10\x39\x51\xbe\x39\xbf\x0e\x0b\xde\xe8\x9e\xc4\x29\x33\x1e\x2b\x17\x9b\x1d\x75\x4c\xdc\x1d\x67\x43\xf3\x34\x46\x2e\x2e\xfc\x86\xcb\xea\x02\x3e\x28\xc1\x17\x90\x98\xcd\xad\x3d\x09\x1c\x9f\x73\x12\x62\x34\xcd\xb8\xf1\x79\x79\xd7\x36\x54\xa6\x35\xf7\x75\x52\xec\xc8\x99\x16\x46\x5b\x35\xed\x34\x73\x9f\x1e\xb5\x8d\xf1\x2e\xdb\x6d\x51\x16\xc7\xde\x5a\xf0\xa4\x83\xe3\x76\x1d\x96\x9a\x24\xc9\x19\x8b\x88\xa3\x33\xeb\x2c\xe6\x33\xaf\xbc\x49\x3b\x5d\x7b\x46\x87\x7f\x06\xd9\xd3\x98\x43\x7c\x7d\xb5\xb2\x79\x3d\x72\x62\xfb\x87\xc9\xb1\x82\xfa\xf0\xc1\xa4\x01\x30\x7d\xc8\x2c\x47\x9d\x85\x83\xd7\x7c\x47\x18\xb5\x57\x04\x5c\xf2\xeb\x27\xaa\x17\x6f\x5f\xbb\x12\x5d\x67\x09\xb2\x5d\xb9\x63\x4a\xfd\xea\x3e\xff\xf5\x36\x16\x53\xd1\x3e\x11\x13\x46\x2d\x37\x6e\xe9\x37\xe9\x25\x98\x68\x73\x8c\xbc\x72\xdd\xf5\x5c\xda\xff\x57\x6e\xdd\x3d\x67\x57\x7a\xee\x2e\xbb\x2d\x66\x8b\xb1\x87\xc1\xab\x0c\xff\x88\xdf\x65\x7e\xcd\xdf\x56\xfa\x2d\x63\xcd\xe4\x6b\x4e\xf5\xca\xfe\x5c\xa9\xb6\xeb\x75\xf7\x37\x53\xab\xfe\xcf\xa8\x2a\xb2\x0f\x73\x33\xe1\xff\x05\x00\x00\xff\xff\x72\x53\x8d\xd4\xc8\x3f\x00\x00")
+var _staticUiJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x3b\x6b\x93\x1b\x37\x72\xdf\xf5\x2b\xda\x73\xce\x69\x68\x91\xdc\x95\x93\xbb\x4a\xd1\xa2\xae\x24\xef\xd9\x52\xca\x3a\xab\xbc\xeb\x24\x2e\x45\x49\x61\x67\x9a\x1c\xec\x62\x80\x39\x00\xb3\x5c\x46\xde\xff\x9e\xc2\x63\xde\x98\x21\xa9\x47\x3e\x1d\x3e\xec\x92\x33\xdd\x8d\x7e\x03\xe8\x06\xcf\xbe\x81\x2d\x13\xd7\x84\x29\xc8\x45\x8e\x5c\xc3\x37\x67\x60\xc6\xd9\x99\x7f\xb0\xbc\x51\x8f\x1e\xb5\xc0\x5e\x30\x94\x5a\xcd\xe1\x45\xa9\x45\x22\xf2\x82\xa1\xc6\x39\xfc\x40\x99\x46\xa9\xe6\x70\x59\xe6\x39\x91\xfb\x39\x5c\x61\x5e\x30\xa2\x51\xcd\xe1\x57\xae\x10\xe1\x9b\x33\x4b\x07\xef\x0b\x21\x35\xa6\xf0\xeb\x6b\xf3\xe8\x8e\x48\xf3\x69\x0d\xf1\xa6\xe4\x89\xa6\x82\xc7\x33\xf8\xf0\xe8\x91\xe7\x61\x97\x21\x87\x52\xa1\x84\x84\xd1\xe4\x16\x04\x07\xc2\xf7\x40\x0c\x13\xc0\xc8\x35\x32\xc8\x45\x4a\x18\x14\xa2\x28\x0b\xd8\x51\x9d\x01\x01\x46\x95\x06\xb1\x81\x42\x28\x45\xaf\x19\x56\xd4\x36\x96\x4b\xd8\x51\xc6\x40\x65\x62\x37\x07\x9d\x51\x05\xd5\xcc\x40\x95\x99\x2b\x05\x2d\x40\xa1\x2e\x0b\xd0\x19\xd1\x6e\x02\x4b\xc2\x30\x6b\x5f\xbc\xb1\x73\xae\xa1\xc3\x33\xf8\xf1\x75\x1c\xfd\xc1\xb2\x66\xa1\xa2\xd9\x52\xf0\x38\x32\xd3\x2d\xaf\xd5\xd2\x12\x8b\xe6\x0d\x26\xde\x21\xd7\x6d\x74\x33\xac\xc6\x96\x6f\x49\xa9\x30\x9e\x7d\xd7\x79\x65\x78\xc8\xfd\xf4\x5f\xc7\x86\xff\x00\x80\xd3\x8c\x01\xb0\xe4\x97\x12\x8d\x29\xd2\x2b\x22\xb7\xa8\xc7\xe0\xff\xe7\x16\xf7\xb0\x76\x9f\x97\x29\xd1\x24\x8e\xec\xe7\xc5\x2d\xee\xa3\x51\xa4\x3b\xcb\xc9\x10\xe9\xce\x88\x3e\x44\x22\x5a\x4b\x05\x6b\xef\x46\xcb\x1f\x51\xff\x64\xc0\x5f\x98\xc7\x71\xcd\xc6\xbc\x21\x1e\xa0\x91\x88\x92\x1b\x3b\xae\x2b\x6f\x33\x64\x8e\x41\xb6\x7a\x5b\x6e\x28\x4f\xe3\xc8\x59\x62\xa1\xa9\x66\x18\xcd\x96\x99\xce\x59\xdc\x01\x36\xa3\x76\xe2\xe5\x2f\xc8\x53\x94\x71\x64\xb1\xae\x2c\xd2\xbc\x67\x34\x37\xac\x80\x2b\xf7\x6f\x1e\x78\xef\x99\x5f\x55\x1f\x06\x20\x0f\xb3\xce\xa3\x80\xfc\x19\xe5\xda\xea\xb0\x15\x82\xcb\x1f\x91\xa3\x24\x1a\x5f\x99\x97\x1f\xa9\x8c\x6b\x91\xee\x47\x74\x31\xa2\x89\x97\x06\x63\x0e\x1f\x2c\x4b\x2b\xc7\xd9\xb4\x00\x5f\x37\xaa\x27\xd7\x56\xf5\x26\x3c\x6c\x74\x47\x73\xa8\x39\x29\xb5\x16\x7c\xe1\x02\xb6\x13\x2e\x0c\xf3\x7e\xb4\x54\x7a\xf1\xe1\x6d\xdd\x9e\x61\xbe\xd4\xce\xdd\xbd\x5b\xba\xb7\x0b\x52\x14\xc8\x53\xe3\x9e\x25\xf6\x1d\x14\x42\xd1\x6b\x19\x8a\xa3\x8c\xa6\x41\x78\x9f\xf9\x96\x2f\xd2\xd4\x7d\x8c\xdd\x44\x3d\xd0\x87\xd6\xf7\xf6\xe7\x60\xb2\xc8\x68\x9a\x22\x0f\xa6\x8b\xbe\xec\x07\xd3\xc1\x84\xcf\x27\x19\x65\xa9\x44\x1e\xcf\x96\x12\x73\x71\x37\xc8\x35\xe3\x2e\x72\x10\xd5\x65\xb0\xff\x20\x54\xff\x20\xe4\xdf\xf0\x5e\xff\x82\x4c\x90\x34\x0e\xa8\xe1\xe1\xbb\x3a\xdd\x23\x49\x32\x9f\xdc\xb7\x52\x94\x05\x64\xe4\x0e\x6d\x42\xe7\xb7\xb0\xf5\x1e\x9e\xc2\x46\x48\xa0\x7a\x0e\xd7\xa5\x86\x1d\x82\x31\x0d\x50\x0d\x25\xd7\x94\x55\xa4\xec\xa2\x91\x89\x3b\x94\x0a\xcc\x5f\x97\xcb\x1d\x55\x25\x0c\x78\x2a\x50\xf1\x48\x83\x96\x44\x65\xa0\x33\x84\x5f\x5f\x77\xd3\xfc\x8f\x06\xfa\x27\xca\x6f\x5f\x59\x0a\xeb\x71\x37\x74\x1e\xe7\xac\x97\x8b\x52\x21\xf2\x9e\xe3\xf6\x0d\xe7\x8d\x55\x69\xd7\x0a\xbd\xb0\xec\x2d\xac\xb4\xcf\x81\x44\xf6\x2d\x55\x59\x3c\x5b\x12\x4e\x73\xa2\x31\x1e\x7a\xbe\x28\x48\x42\xf5\x7e\x05\x4f\xcf\xcf\xbb\x2e\x37\x87\x6f\xcf\xcf\x47\xfd\xae\xc7\x30\x43\x72\x87\xff\xbf\x0c\x1f\xc9\x6e\xcb\x3f\xcc\xdc\x40\x18\x03\xc3\x3c\x9a\x2c\x48\xb9\x32\xd6\x6f\xfb\x4c\x41\x38\x32\x67\x6e\xbb\xd2\x97\x0a\x41\x0b\xc1\x34\x2d\x54\x45\x88\xf0\xb4\x5e\xe2\x85\xc2\x80\xd9\xaf\x3c\x46\xdb\xea\x96\xfe\x5f\xfb\xa6\x5f\x1a\xaf\x6d\xde\x79\x05\xbd\x33\x59\x67\xa1\xc5\x76\xcb\x70\xed\xa7\x7f\x1f\xcd\x5a\x0a\xa6\x73\x08\x65\xb3\xca\x32\x1e\x27\xa0\x40\xa7\x5a\x2a\xf8\x0a\x36\x84\x29\x9c\x1b\x89\x14\x13\x3b\x05\xa9\xd8\xf1\x4a\x58\xb0\x91\xe9\xb7\x2e\xed\x91\x22\x23\xfb\x55\x70\xf5\x02\xbb\x2f\x5a\xc1\x9f\xce\xcf\x43\x8b\x17\xd8\x58\xeb\x5b\xce\x59\x6f\xf0\xc8\xa6\x99\x55\x2d\x8f\x59\x11\xe3\xc8\xe7\x1e\xf8\xfd\xf7\xfa\x85\x4b\xcf\x5a\x55\x79\x29\x40\x49\xd2\xed\xd6\xac\x99\x91\x0d\xe8\xe8\x60\x66\xad\x5c\xa6\x36\xa9\xdd\x6e\x58\xbb\xda\xcd\xe6\x68\x1c\x07\xc2\xde\xc1\x7c\x17\x00\xa9\x5c\xa4\x0d\xd1\x9e\x99\x72\xaa\xc7\x36\x89\xcd\x36\x32\xee\xd3\xbe\xa4\x0c\x79\x82\x3f\x08\x99\xc7\x21\x79\x9a\xd7\x17\x44\x93\xb1\x09\x0c\xa8\x5d\xe4\x94\x5d\x19\xa2\x3f\x70\xdc\xb5\x28\x47\xb3\xa5\x42\x49\x09\xa3\xff\x8b\x2f\xa4\x24\xfb\x36\x1b\x06\xb7\x20\x7b\x93\xb0\x61\xdd\xf1\x93\x9c\xe8\x24\x43\xb3\xc1\x79\xf7\xbe\x6d\x27\xa5\x89\xd4\xea\x85\x5e\x41\x14\xb5\x9f\x23\x4f\x03\x4f\x13\x89\x26\x8f\xbf\xdc\x0f\x5e\x88\xdc\x84\xb5\x79\xdc\xd8\xf4\xbb\x7e\xa8\x39\xb1\x02\x91\xd4\xf1\x68\xb5\xa3\x3a\xc9\xc0\x6d\x05\x38\xc9\x71\xb0\x6d\x48\x88\x42\x88\xfc\x9c\xd1\xaa\xfa\x5e\x31\x17\xad\xfa\x8e\xe8\x75\xf2\xae\x26\xf9\x1e\xd6\x76\xe6\xa5\x65\x69\xb0\x39\xb8\x96\x48\x6e\x3b\x4f\x1f\x82\xc9\x98\x6e\x20\x36\x26\xaa\xb4\x18\x55\x41\x71\x41\x34\x5e\xd1\x1c\xdf\xd2\xe4\x16\x65\x34\xeb\x8a\xe0\xd9\x59\x56\x68\xde\xd0\x07\xa9\x98\xc7\x9d\x05\xfb\x61\xc0\x89\xb3\xdb\x89\x7c\x38\x24\xcf\xc5\x01\x0a\x13\x3c\x78\x2b\x0f\x7d\x16\x96\x66\x99\x4a\x74\xe1\x69\x1c\xce\xa5\xfd\xb3\x4d\x37\xe5\x4c\x9e\x6e\x5a\xb1\xe3\x70\xda\x73\xc7\x51\xe0\x78\x63\x74\xe7\xb1\xfe\xf8\x47\x8f\xbf\x64\xc8\xb7\x3a\x83\xe7\x70\x3e\xdc\xb5\xda\x30\xbb\x23\xac\xef\x37\x36\x77\xa8\x5f\x70\x8b\xf7\x26\xba\x4d\x8a\xef\x83\x34\x73\x35\x33\x3c\x0d\xed\x8b\xc1\xce\x00\x6b\x88\xfe\x3b\xfe\xcb\x2a\x82\x27\x15\x63\x37\x82\xf2\x38\xfa\x3d\x9a\xc1\x13\x88\x66\x5f\x47\xc3\x9d\x2d\xb4\x98\xd0\x72\xe8\xde\x0f\x80\x4c\xe1\xd4\x9c\x6e\xaa\x77\xe7\xef\x07\xa8\xbd\xef\x95\x07\x55\xe9\x65\x59\x94\x2a\x0b\xac\x7c\x00\x26\xea\x56\x8d\x4d\x43\x8b\x94\x9d\x75\x65\x79\x08\xbd\xf6\x42\xad\xaa\x0f\x7d\xd6\xfa\x1b\xf7\x60\xc4\x4a\xd4\xa5\xe4\x15\xdf\x93\x49\xfa\x7b\xc2\x92\xd2\x1c\x9d\x2e\x4a\x69\x57\xed\x70\xc6\x36\x4b\xf8\x2d\x2d\x8c\x65\x4d\x68\x68\x9a\xa3\xf3\x35\xa0\x8a\x3f\xd6\x20\x91\xa4\x7b\xd8\xa3\xf6\xf0\xc6\x03\xbe\x3a\x2a\xdc\xcd\x5a\xfb\xd5\x51\x41\xed\xa5\xf2\x1e\xf7\xa8\x52\xa7\x84\x4f\xcc\x30\x86\xc4\x47\x25\x87\x16\xbe\x16\x9a\xb0\x0b\xb2\x37\x21\x19\x3b\xfc\x65\x4a\x37\x9b\xb8\x62\x66\x0e\x51\x4a\xf6\x2a\x9a\x75\xa6\xb5\x68\xaf\x44\x29\xa7\xf0\x32\xf3\xde\x28\xe0\x9f\xe0\xdb\x7f\x19\x60\xbf\xa1\xbc\xd4\x36\x15\x8c\xa0\xe7\x0e\x20\x32\xf8\x7f\x3e\xaf\xf0\xad\xa2\x9c\x1b\x2c\x52\x6f\xfa\x85\xe3\xd0\x9d\xb0\x6b\x89\x66\x93\x28\x9e\xb9\x16\x8e\x15\x67\x1a\xa9\x66\xa9\x85\xe6\xe5\x98\x05\x2d\x7b\x81\x2a\x81\xb5\xaf\xf9\xc5\x66\xf7\x59\x4b\x58\xcf\xd4\x83\x6d\x7f\x5d\x4a\x2c\x18\x49\x30\x8e\x28\x07\x02\x1b\xdc\x81\xc2\x44\xf0\x54\x99\x43\x3d\x17\xbb\xe8\x34\x2a\x1d\x12\x40\xb6\x62\x40\xa6\x2d\xb6\xa5\xb1\x48\x51\x25\x92\x16\x46\xfe\x4a\xee\x36\xf1\xae\xdc\xce\x94\x01\xa9\xdd\x8b\x7a\x9a\x0e\x5c\xf3\xe5\x04\x79\x0f\x52\x38\x4d\x56\xe4\x69\x48\xd2\x86\xf0\xf4\x96\xf1\xdf\x2e\x7f\xfe\x9b\xab\xe0\x84\xd3\x90\x01\x37\x9b\xbe\x28\x29\x25\x03\xb3\x5e\xb4\x26\xaf\x6a\x14\x2e\x6a\x2b\x8e\x48\x41\xcd\x2a\x52\xe7\xc6\xe8\xbf\xb8\xf9\xb7\xf8\x4f\x78\xfb\xf3\xe5\x15\x2c\x16\x06\xdc\x90\xaa\x21\x0c\x13\x4b\xa5\x25\xe5\x5b\xba\xd9\xc7\xbd\x1d\x6d\x3c\x9b\x43\xc9\x53\xdc\x50\x8e\xe9\x1c\xbe\x0d\xa9\xc1\x50\x78\xc9\xc4\x75\x25\x7e\x3a\x2d\xf5\xaf\x45\x3a\x92\x80\x7b\xe5\xd7\x7f\x64\xe1\x23\xd0\xdf\x50\x6e\x60\x8f\xa4\x92\x3b\xe8\x2e\x21\x92\x78\x43\x54\x15\xea\x6e\xad\xae\xce\x63\x0e\x2e\xea\xe0\x96\xee\x58\x75\x00\xd3\x40\x75\xf1\x94\xc6\x02\xd6\x50\x10\xa9\xf0\x35\xd7\xf1\x01\x02\x06\xdc\x2e\x26\x8d\x6b\x48\x5c\x24\xd5\x6a\xee\xc8\x6d\x84\x04\x26\x76\x7e\xa7\xd3\x40\xd2\x8d\x2d\x4c\x91\x3b\x84\x3f\x81\x4b\xc6\x0e\x81\xf0\x14\x92\x52\x4a\xe4\x1a\xaa\xa9\x80\x2a\x78\x5a\x41\xe9\x8c\x70\xd7\xec\xa0\x7c\xdb\x10\x14\xdc\x56\xa8\x28\x4f\xa4\xad\x7c\x98\x73\x7a\xc9\x52\xd8\xd2\x3b\x84\x52\xd5\xb3\xcc\x81\x0b\x0d\x7f\xae\xa8\x55\x53\xf4\xd7\xb4\x7f\x37\xfc\x8e\xaf\x88\x46\x79\xcd\x3a\x5a\x9d\xa4\xec\xd3\xd6\x7e\xcf\x9d\x97\xdc\xfa\xd4\x3e\x2b\x75\x66\x68\x7d\x69\xaf\xae\x30\x3c\x1e\x39\x72\xd5\xca\x75\x1c\xc1\x66\xb9\x1d\x10\x7c\x78\xd4\x8a\xd1\xca\xdf\xd6\x10\xd5\x2a\x8c\xda\xb2\x38\x9b\x59\x13\xd1\x46\x9b\x1d\x73\x59\x1b\x9b\xb7\xff\xec\x8c\xa4\x50\xd7\x80\xca\xe9\xfd\x5f\x3b\x07\x29\x4b\xed\x39\x3c\x35\xc7\x81\x16\xd7\xcf\xec\x34\xdd\xcd\xba\xf7\x4d\xfb\x6f\xd1\x02\x0e\x9d\x8f\xbc\xc9\x48\x9a\xda\x19\xbc\xb5\x6a\xb1\xfb\xbb\xf2\x8f\x94\xec\xbc\x92\xac\x23\x52\x4b\x8c\xe7\x70\x6e\x04\x3b\x5d\xc8\xa3\xa4\x53\xe5\xb5\x96\x24\xd1\x21\x11\x1d\x2b\x3e\x95\x3d\xeb\x26\xa5\xee\x8c\x4e\xf6\x14\xab\xa0\xd9\xd9\x98\x91\xa8\x4a\xa6\xc1\xae\xdc\x26\xc3\x2b\x4d\xf2\xc2\x84\xb1\xab\x12\x73\x20\xcc\x7c\x49\x8d\x06\x68\x5e\xe6\x5d\x82\x3a\x43\x0e\x37\xa5\x32\x8b\x81\x51\x14\xd5\xa0\x85\x0d\xce\x21\x78\x9d\x6e\x3b\x3c\x0e\xc5\x7e\x68\xad\x70\x47\x65\xe5\xde\x2e\x65\xea\xb8\xd1\xaf\x21\xd9\xce\x6e\x4a\x98\xc9\x5d\xb9\x4d\x60\xb6\xe2\x41\xf9\x16\xb8\xd9\x87\x38\x52\xaa\x5b\x3f\x6b\x9f\xc2\x27\x0a\x4e\x4d\x27\xa2\xbf\x67\x68\x64\x76\x4d\x85\xcf\xda\x13\x3d\xad\x95\x15\x6a\x66\xb5\x14\xf8\x93\x20\x29\xe5\xdb\x68\x0e\x1f\x0e\xb7\xe2\x90\x61\x7e\x42\x9f\xd5\x80\xdb\x7e\xa7\x39\x4d\x7c\x78\xe8\x75\xc6\x5c\xdd\xc3\xd6\x93\x5a\x05\x0a\xb3\x89\x57\x05\xa3\x3a\x8e\xe6\xfd\x9a\x07\x0b\x1d\xf9\x9b\x49\xde\xb1\x0a\x73\x1d\xcd\xde\x9d\xbf\x7f\x0f\x6b\xe8\x3c\x7a\xfa\x7e\xbc\x4b\xe5\x58\x22\x37\xe4\x7e\x70\x10\x2f\x25\x5b\x41\x44\x5c\x0b\xf7\x46\x09\xfe\x97\xbf\xaf\xed\x37\x73\x3a\x5f\x9b\x4d\x63\x4b\x88\xfa\xc5\xb0\xb2\x8b\x52\x0a\xb9\x6a\x24\xba\xcf\xe4\x1c\x34\xde\xeb\x4b\x4d\x74\xa9\xe6\x0e\xe0\x2a\x93\x62\xc7\xc3\xc5\x0d\xab\x54\x69\xf6\xb2\xf7\x99\x5c\x4a\x54\x85\xe0\x0a\xaf\xf0\x5e\x9b\xfd\x56\x0b\xdd\x7c\x6d\x28\x87\x8a\x1d\xa7\x3a\x11\x1c\x72\xa4\x1f\x88\xb6\x6e\xfd\xc1\x8b\x89\x52\xf6\x1c\xca\x8d\x41\x53\x71\x50\x4b\x57\x65\x92\xa0\x52\x2d\x4d\x19\xd5\x8e\x6b\xe4\x98\x30\xec\x62\xb0\x31\xa7\x74\xc3\xbb\xa6\x99\x75\x69\x1b\x1d\xbd\xea\xab\x7d\x16\xe6\x07\x7a\x2d\x12\xd7\x38\x6a\xe3\xdf\xcc\x5d\xfb\x66\x1c\xbf\x45\xc3\x42\x2e\x1d\xbb\x2d\x1a\xc1\x7e\xf7\x24\x3d\xf0\xcb\x08\xf3\x91\x52\x11\x78\x0f\xeb\xf5\xba\x39\x7f\x1c\x26\x62\x46\x80\xc8\x88\x26\xdb\xa3\x5f\x05\x3b\x8a\xbd\x77\xb5\x7c\x9f\x87\xd3\x0e\xbd\xa3\x48\x98\x71\x8b\xfb\x03\x55\xb8\xd0\xf0\x95\xb9\x7a\xc6\x63\xf1\xfc\x9d\x8a\xe3\xef\x8c\x1c\x4b\xd8\xd5\x74\x31\x5d\x75\x92\x66\xdb\x15\x1a\xa2\x47\x90\xfc\x24\x8b\xf7\x73\xef\xa1\x37\xe1\xa7\x9f\x3d\x8b\x99\x04\xe6\x9c\xc6\x1b\xae\x7f\xbf\xc3\x8d\x20\x33\x4d\x25\xff\xe4\xca\x7d\x4d\x22\x54\x7d\x1f\xf7\x52\x9a\x08\xfe\x92\x28\x5c\x41\xb4\x21\xd1\xb8\x1b\x68\x9a\xdc\xbe\x4e\x04\xb7\x70\x8b\x24\xc3\xe4\x76\x02\x7a\x47\x53\x9d\x19\x50\xaa\x27\xa0\x1c\x8b\x2f\x18\x33\xcb\xcf\x0a\xa2\x67\x14\x12\x46\x94\x5a\x3f\xde\x10\xa8\x66\x59\xa8\xbf\x97\x44\xe2\x42\x3c\x7e\xfe\xec\x8c\x3e\x9f\x20\x97\xe2\x21\x82\x47\x93\xe2\x82\xe3\xa5\x77\xf5\x8a\x96\x2a\xec\x39\xd3\x92\x73\xd7\xc5\x5c\x3b\xc4\xde\x9d\x73\x1f\x53\xdc\x90\x92\xe9\xc7\xcf\x5d\x19\xc8\xb5\xff\x07\xad\x13\x78\x02\xd1\x0a\x9e\x9d\x19\x82\x53\x4c\xe4\x25\xd3\xb4\x60\x78\x89\x05\x91\x44\x9b\x15\x31\x82\x83\xea\x74\x0c\x1b\x47\x24\x86\x6d\x7b\x69\xca\x1c\x37\x26\x10\x2d\x4c\x57\xdc\xfa\x86\x5f\xcc\xcb\xbc\x7a\x35\x9d\x30\x7d\x15\xe6\x28\x45\xed\x88\xe4\x94\x6f\xad\xa2\x26\x33\xc0\x68\xff\xc9\x29\xd1\xe8\xb9\xc5\xa0\x79\x58\xf5\xa1\x2a\x6d\x54\x7a\x1e\xcf\x34\xe1\x1c\x73\x4a\x0e\x31\xf1\x5a\x55\xbf\x16\x45\xfb\xdc\xd1\xd4\xc3\x46\x62\x70\x53\x19\xea\xb7\xdf\x7e\xfb\x6d\xf1\xe6\xcd\xe2\xe2\x02\x5e\xbd\x5a\xe5\xf9\x88\xbd\x4c\xbc\xaa\xb1\xab\x08\x60\x03\x35\x77\xc1\x6c\x23\x88\x89\xe4\x76\x21\xa6\x82\x86\xe8\x16\x38\x61\xc8\x53\x22\x27\xe0\xcb\xa2\x81\xce\xf0\x4e\x0a\xbe\x28\x8b\x29\xfa\x62\xc7\x07\x18\xe6\xe1\x04\x4e\x21\xf1\x8e\x8a\x52\x0d\xf0\x18\x6e\xa6\xf2\x09\x77\x91\xda\xc5\x91\x74\x9b\x4d\x21\x69\x91\x92\x7d\x8d\x45\x94\x46\x49\xd5\x54\x6e\x4b\x18\x12\x59\x23\x94\x3c\x9d\x52\x6f\xc2\x84\xea\x98\x43\x61\x14\x76\xb7\x30\x0d\x5f\x0b\x5c\xd5\x15\xf7\x30\x98\xa2\x29\xbe\xdc\x5f\xda\xab\x26\x5a\x96\x38\xe2\x3b\x9c\x51\xee\x21\x8e\xf6\xed\xc0\xed\x8d\xd0\xe5\x88\xd1\xb8\x70\x71\xb8\x70\xa1\x7b\x4d\xd2\x6d\xff\x06\xe3\xe8\xfd\xa9\x6a\xb8\x33\xb5\xa1\xd2\x5c\xd9\x5b\x16\x44\xba\x0e\x44\xfd\xc1\x2d\xe1\x0e\x30\xbc\x6f\xf7\x45\x26\x0b\x11\xea\x4e\x8f\xe7\x37\x57\x16\xd1\x19\x4a\x7c\xac\x80\xf0\xbd\xce\xcc\xf1\xbf\xca\x31\xf5\xd2\x03\x84\x8d\x6d\x7b\x82\xd3\xb6\x96\xac\x31\x96\x27\x9a\xc6\x9e\x33\xfb\xfe\xe3\xe6\x3f\x3c\xfb\xd1\x7e\x72\x76\x66\xab\x60\xbe\x80\xe3\xfd\x16\xb4\x00\x2e\x76\xf0\xa4\x2e\xd7\x86\xbd\xe4\xe8\x9a\x78\xdd\x78\x22\x69\x1a\x3f\xad\x5b\x89\x23\xfe\xd7\xe5\xc9\x64\x46\xc3\xd0\x93\xa7\x90\x89\x72\x78\x8f\xf8\x84\x6a\xd2\x80\x8d\xaa\x21\x3a\xc2\xc5\x2e\x43\x8e\x77\xd8\xea\x48\x24\x19\xe1\x5b\xbb\x4c\xd9\x82\x18\x51\x55\x41\xcc\xaa\x6d\x23\xaa\xd6\xc1\x08\x3d\x84\x84\xf0\xc7\xda\x15\xcc\xeb\xc2\x5e\x45\x7d\x44\xb4\xc1\x85\x26\x13\x86\x69\xb1\x74\xbc\x44\x73\x68\xb5\x48\xda\x71\x19\xf6\xbd\xe3\x3b\x39\xfd\x0e\x4d\x88\xda\x67\x68\xd7\x0c\xb4\xe4\xf5\xc2\x11\x53\x65\x0c\x7f\x8d\x40\x34\x30\x24\x4a\x37\xed\x03\xb2\xd1\x2d\xbb\x84\xb3\xab\x7f\x39\x70\xba\xf0\xcc\xa7\xf8\xf3\xa0\x65\xdc\x1e\xa3\x9b\x8d\xb0\x25\xeb\x2b\xe1\x64\x39\x68\x6f\x5f\x6b\x1e\xcd\xc7\x1b\x7c\xa7\x4d\x54\x95\x21\x13\xc1\x18\x29\x14\xce\xa1\xed\x44\xcd\xd6\x71\x3c\x9f\x06\xfb\xab\x63\x96\x3c\xae\x5a\xfb\x69\xaa\xfb\x42\xcc\x9f\xc0\x86\x2a\xaf\x73\xaa\xe3\xe9\x92\x6e\x33\xba\x37\x0e\x07\x0d\xe1\x31\x4d\x9a\xa0\x1d\xdc\x1d\xf2\x17\xa2\xd6\xeb\x75\xe8\xd2\x55\x7f\x56\x94\xf2\x7b\xc1\x35\x72\x13\xa7\x93\x27\xe1\xbf\x4a\x29\x64\xab\x9e\x17\x5d\xfa\x45\xaa\x0a\x42\xc1\xdd\x79\x20\x1a\x3f\xca\x0f\xf5\x65\x8b\x1a\x75\x17\xbf\x66\xa6\xba\x57\xff\xbd\x39\x78\x54\xbf\x08\x18\x0b\x51\x37\x0e\x67\xa5\x56\x53\x2c\xa4\x8a\x52\x32\x7b\x19\x22\x25\x2c\xd4\xe2\x1f\xa3\x39\x52\x24\x6e\x86\xde\x17\x66\xd3\xf8\xf6\xe7\xcb\xab\xa9\xad\xb8\x64\x2b\xf3\x67\x72\x73\x4f\x56\xfd\xcb\x03\xde\xfc\x13\x25\x9f\x4f\xaf\x32\x37\xe3\xec\x0c\xfc\xa9\xd8\x64\xe0\x5d\x46\xb4\x5d\x07\x2d\x05\x4b\xd3\xaf\x65\xb0\xc5\x70\xf2\xad\xc6\x67\x2c\x5c\x37\xc3\x84\x43\x9f\xdc\x31\x65\xc1\x6e\xc3\x9a\x80\x44\x8b\xee\x04\xd2\x72\x6f\x64\x4d\x31\x11\xee\x67\x16\x44\x59\x1b\x1c\x45\xb5\xee\x53\x5f\xa3\x57\xd2\x46\x8a\xdc\x55\xf2\x72\xc2\xc9\x16\x25\xc4\xd4\x6a\x6d\x87\x12\x81\x5c\x33\xbb\xa9\x49\x04\xe7\x98\xe8\x50\xa5\xa9\x3b\x0c\x77\xc7\x14\x2d\x8d\xbe\x6f\x60\xed\xbc\xc7\x5e\x01\x18\x6a\xea\x50\xf5\x0e\xbc\x8a\x6f\x96\x4e\x94\xaf\x4e\x2f\xbf\x82\x37\xba\x27\x71\xcc\x8c\x87\xaa\xc4\x66\x4f\x9d\x10\x77\xd5\xd9\xd0\x3c\x8e\x91\xb3\x33\xbf\xe5\xb2\xba\x80\x1b\x25\xf8\x1c\x52\xb3\xbd\xb5\x67\x81\xc3\x73\x4e\x42\x8c\xa6\x19\x37\x3e\x2d\xef\xda\x3e\xca\xb4\xe6\xbe\x4c\x8a\x1d\x39\xd4\xc2\x89\x1d\x9a\x66\x18\x67\xb2\x3d\x15\x65\x83\xdb\x5e\x4f\xf0\x94\xa2\xc3\x66\x0c\x0b\x49\xd2\xf4\x84\x35\x63\x48\xc7\xaf\xdf\x56\x57\x93\x66\xb9\xf4\x8c\x86\x7f\x06\x39\x50\x90\x43\x7c\x7d\xb1\xb2\x69\x7c\xe9\xc4\xf6\x0f\xd3\x43\x65\xf3\xf0\x49\xa4\x05\x30\x7d\xaa\xac\x46\x93\x74\xa3\xd7\xfc\x8e\x30\x6a\xef\x02\xb8\x5c\x37\xcc\x4b\x2f\xde\xbe\x76\x25\xb9\xde\x8a\x63\x2d\x7b\x48\xa9\x5f\xdc\xc5\xbf\xdc\x3e\x62\x2a\xb8\x27\x42\xc0\xa8\xe5\xca\xad\xf4\x26\x9b\x84\xeb\x42\x6e\x0f\x39\xf2\xca\xf5\xd0\x0b\x69\xff\x5f\xb8\x65\xf6\x94\x8d\xe8\xa9\xfb\xea\xae\x98\x1d\xc6\x1e\x82\x17\x16\xbe\xf0\xef\x32\xbf\xe0\x6f\x2b\xfd\xde\xb0\xe1\xf1\x35\xa7\x7a\x65\x7f\xa1\xd4\x58\xf4\xb2\xff\x4b\xa9\xd5\xf0\xc7\x53\x35\xd5\x87\x99\x99\xef\xff\x02\x00\x00\xff\xff\xa5\x6d\xa7\x6d\x40\x40\x00\x00")
func staticUiJsBytes() ([]byte, error) {
return bindataRead(
@@ -1456,7 +1456,7 @@ func staticUiJs() (*asset, error) {
return a, nil
}
-var _staticUnseeJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x59\xef\x6e\xdc\x36\x12\xff\xee\xa7\x98\x3a\x05\x24\xb5\x6b\x6d\x8c\x22\xf7\x61\x1d\xf7\x90\x04\x49\xea\x43\x91\x06\x76\x7d\x2d\x70\x38\x14\x5c\x69\x76\x97\x36\x45\x2a\x24\xb5\xeb\x45\xb0\x8f\x51\xf4\xfd\xfa\x24\x07\xfe\x91\x44\xfd\xf3\x3a\x87\xa2\xfc\x90\x78\xc9\x99\xe1\x70\x38\xf3\xe3\xcc\x68\x4b\x24\xdc\x72\x85\x08\x97\x10\xaf\x2a\x9e\x69\x2a\x78\x5c\x12\x49\x0a\x95\xc0\xe7\x93\x93\x13\x00\x00\x43\xa5\x69\x81\x12\x2e\x61\x45\x98\xc2\x8b\x66\x7a\x8b\x52\x51\xc1\x87\x0b\x12\x57\x12\xd5\xe6\x8a\x6b\x94\x5b\xc2\xe0\x12\xce\x5f\x5c\xb4\xe2\x14\x32\xcc\xb4\x90\x0a\x2e\xe1\xb3\x9d\x35\xc3\x33\xbd\xae\xb4\x16\x7c\x01\xd1\x33\x3f\x11\xcd\x1a\x12\x94\x52\x48\x65\xd6\xdc\x5f\x91\x5d\x39\x5c\x78\x55\x29\xa7\xda\x28\x53\x1f\x25\x09\xa4\x7f\x94\x62\x2d\x51\xa9\xf4\x8a\x53\x1d\x27\x5e\x1b\x33\xde\x08\xbe\xa2\x6b\x37\xdf\xd2\xbb\x95\x72\x7f\xe3\x75\x35\x9b\x66\xa2\xdc\x9f\x29\xd4\x9a\xf2\xb5\x3a\xdb\x51\xbd\x39\x5b\x51\xa6\x51\x06\x2a\x9a\x71\x43\xb6\x18\xf2\x29\xb2\xc5\xb3\x1c\x57\xa4\x62\x7a\x9c\xe3\x1a\x15\xea\x90\x45\x9a\x89\x66\xaf\xa8\x21\x3e\x24\x17\x7d\xc5\x7f\x14\x24\xef\x1d\xa8\x32\x86\x6f\x4e\xda\xa8\x55\x15\x05\x91\xfb\xc1\xfc\x7b\x49\xf3\xc1\xe4\xab\x4a\x8b\x4c\x14\x25\x43\x8d\x83\xc5\x77\xf6\x0c\x6a\x30\xff\x0b\xd1\xd9\x26\x17\xde\x98\xdf\x3d\x9f\xc1\x3f\x9e\x7f\x73\xfe\x22\xb9\x80\xf9\x1c\x14\x6a\xd8\x79\x02\xd0\x02\xce\x5f\x40\x41\x79\xa5\x51\xb5\xaa\x7f\x1d\x37\xbe\x91\x76\xfc\x21\x49\x33\x46\xb3\xfb\x78\xf4\x6e\xed\xdd\xaf\x20\xfe\xea\x11\xf6\x52\x8a\x32\x8e\x72\xaa\xc8\x92\x61\x1e\x25\x7d\x7e\x33\x6c\x30\xa4\xd7\xc8\xbc\x45\xc3\xb5\x43\xe7\x97\x44\x5d\x49\x1e\xba\x7d\x78\x39\x8d\x43\xae\x51\x5f\x3b\x35\xae\x89\xc6\x29\xd7\xf4\xc2\x7a\x41\xd3\x13\xa5\x26\x45\x29\xcc\x04\xcf\x55\x28\xd1\xc6\xa0\x23\x2b\x89\x54\x78\xc5\x75\x43\xd6\xaa\x6b\x4c\x46\xd5\x07\xf2\x21\x36\xb4\x03\x8b\xcc\xe7\x86\xa2\x24\x4a\x61\xee\xa4\x51\x05\x94\x67\x42\x4a\xcc\x34\x54\x0a\x7d\x20\xc3\x96\xb0\x0a\xbb\xf6\x71\x9b\x7b\x0f\x7d\x8f\xfa\xa7\xd2\xea\x1a\xd5\x31\x9d\x98\xc9\xbe\x8d\x8f\x28\xd4\x2a\xa5\x37\x44\x47\x0a\x08\x53\x02\x96\x42\xde\x63\x6e\xd5\xf1\x21\x06\xe7\x2f\x06\x7c\x5e\x21\x03\x43\xe3\xb7\x7a\xe8\xe3\x50\x00\x5e\x86\xf9\x62\x88\x24\x36\x68\xe3\xfe\x9d\x73\xc4\x5c\xdd\x96\x6b\x49\xf2\xce\x35\x49\x54\xa5\xe0\x0a\xff\xed\x40\x33\x3c\x9c\x39\x77\x83\xa5\x97\x1e\x4d\xfb\xa7\x6f\xc1\xb6\x27\xe9\xe2\x29\x9e\xd9\x77\xb6\x5a\xda\x57\x13\xe2\x9a\xe3\x48\xe4\x39\xca\xb7\x06\x6e\xc3\xd3\x68\x2c\x4a\x46\x34\xce\x20\x13\x5c\xe3\x83\x0e\xd5\xad\x01\xc8\x72\x0d\x90\xe6\x0d\x43\x32\x9c\xfd\x81\xe6\x18\x4e\x86\xa1\xec\xc0\x3e\x49\x37\xba\x60\xf1\xcf\x7e\x67\x63\x7f\xa3\xda\x88\x2a\x47\xc4\xa8\x8d\xd8\xc5\x1d\x1c\x75\xea\xde\xf2\x7b\x2e\x76\x7c\x0c\x32\x6f\xcb\x9c\x68\x8c\x3f\x87\xf0\x9b\x8b\xac\x2a\x90\xeb\x54\x53\xcd\xcc\x55\x9f\xc6\x7f\xfe\xf1\x3b\xfc\x04\x7f\xfe\xf1\x7b\x72\xda\xd2\x55\x96\xf7\x8d\xc7\xd2\x7c\xe0\x30\x1b\xc2\x73\x86\x03\x0b\xa3\x94\xa1\x4d\xaf\xc9\x16\x79\x9a\x91\x52\x57\x12\xdf\x3e\x64\x58\x36\x54\xdd\x88\xde\x51\x9e\x8b\x5d\x9a\x09\xae\x04\x1b\x78\x91\x9f\x76\xb6\x30\xdc\xa9\xd2\x24\xbb\x4f\xc6\x5d\xa5\xb9\xfa\x38\xa2\xc6\x44\x9c\x30\xfb\x33\x9a\xf5\xc4\x72\x52\xe0\xc2\x3c\xcf\xa9\xf9\xab\xfb\xb6\x15\xa8\x14\x59\xfb\x65\xff\x63\xd6\x43\x8b\x9d\x5d\x1d\x7d\xe5\x14\xea\x9f\x69\x81\xa2\xd2\xd3\xe0\xef\x80\xfb\x17\x42\xf5\x3b\x21\x3f\xe0\x83\x1e\x62\xf8\x61\x06\x2f\x9e\x3f\xef\xdb\xbe\x1a\xc6\x69\x17\x99\x03\x0b\x48\x2b\xf3\x03\x62\x8e\xb9\x31\xc0\x97\x2a\xc9\x44\x46\xcc\x42\x2a\xc7\x94\xfb\xee\xf9\x50\x3b\x2d\xe9\x7a\x8d\xd2\x1d\x66\x4a\x47\xe7\x5e\x57\xea\x1a\x49\xbe\xef\x44\x50\x4a\xee\xc8\x43\x2f\xa5\xa9\x24\x5b\x40\x44\x18\x4a\xad\xd2\x3b\x25\xf8\x3f\x3f\x5d\x46\xf0\x6d\xf3\xa2\xbf\x47\xed\xff\x8c\x93\xf4\x4e\x50\x1e\x47\xb3\x28\xe9\x5e\x97\xaa\xb2\x0c\x95\x5a\x74\xb1\x6d\x0c\xad\xeb\xc8\xba\x71\x1c\x7d\xbc\x07\xef\xb2\x21\x64\x5a\x59\xa9\x87\xa7\xd1\x27\x20\xb8\xb7\x31\x81\x07\x40\xa6\xd0\xca\xb5\xa2\xac\xa7\x4f\xc9\x79\x24\xf4\xc3\xd1\xf1\x03\x67\xf0\xf1\x38\x08\x87\xdd\x78\x01\xd1\x6b\x92\xdd\x23\xcf\xdd\xef\x5e\xde\x17\x8e\x26\x4e\x5a\xb5\xa7\x89\x19\x51\xfa\x37\xad\x16\x6d\xca\xf5\x1e\xf5\x8f\x44\x69\x8f\x54\xc9\x28\xe7\x61\xe2\x7c\x4f\x88\x9f\x46\x84\x33\xef\xf8\xb1\xe7\x73\xef\x8e\xbf\x39\x0f\x8b\x13\x93\x33\x64\x65\x05\x1b\x24\xdb\x3d\x28\x01\x54\xc3\x8e\x32\x06\x4b\x26\xb2\x7b\x58\x4a\xb1\x53\x28\x61\x25\x45\x01\xa4\x2c\xd9\x9e\xf2\x35\x64\x4a\x41\xb6\x21\x7c\x8d\x6a\x6a\x1b\xca\xef\x4c\xe6\xa1\x29\xdf\x43\x8e\x8c\xec\x61\x89\x7a\x87\xc8\x81\xe4\xf9\x1b\x46\x8c\xb3\x01\x59\x8a\x2d\x02\xe1\xf9\x40\x2b\x25\x6c\x0e\x01\x7a\x83\xb5\x0e\x53\x3b\x6d\x88\x91\x61\xf5\xc9\xd0\xe4\xad\x12\x57\x36\xeb\xd1\x1b\xa1\xd0\x4b\x1e\xd7\xf3\x29\xa8\x10\x0e\x2d\xf7\x8f\xac\xc2\x91\xf7\x68\x6c\xd4\x61\xed\xee\xf3\x35\xc9\xd7\xa8\x5c\x58\xb8\x32\x44\x1d\xe1\x7f\x23\x98\x79\x39\xfd\x76\x96\x31\xb3\x53\x47\xf8\x5e\x39\x80\x09\xf8\x8e\x30\x4c\x3c\x92\x53\xa3\xf1\xfa\x8f\x82\xaf\xe3\x42\x98\x77\xd8\xa9\x67\x4a\x55\xa5\x49\x51\x26\x47\x44\x7c\x81\xcf\x87\xc3\xd6\x19\x6d\x9d\xa3\xde\x11\x4d\x58\x3c\x09\x54\xed\x98\x4c\x68\xa2\xe8\xc8\x96\x13\xbc\x26\x61\x3a\xca\x7b\x98\x5c\x3d\x40\x66\x4e\x01\xfd\x44\x63\x6c\x3c\x11\x26\xeb\x11\x64\x34\xbd\x04\x65\x6c\xfc\x1f\x17\x31\x7e\x2a\xfb\xc4\x8f\x41\x56\x37\xe5\xef\x82\xaa\x47\xe9\x26\x3e\xef\x3e\xfd\xfa\xc3\xf5\x0c\x4c\x1e\x79\xa3\x89\xae\xd4\x63\xef\xda\x23\xf6\x70\x85\xca\xca\x78\x87\xdb\x03\x76\xc4\x54\x2c\xd2\x3c\xd3\xf5\xcb\x8e\x39\xec\xd0\x21\x8c\xa3\xf1\x6f\xc0\x98\x34\x25\x20\x17\x3c\xd2\x06\xe0\x80\xe3\x0e\x04\x1f\xd2\x7d\xa1\x77\xfe\xbd\xef\x5a\xf4\xea\x5f\xaf\x7e\x05\x89\x9f\x2a\x54\x1a\x56\x84\x9a\x42\xfc\xef\x78\xe2\x86\xee\xf2\x44\x9f\x3b\x4c\x97\xf6\x9d\xb4\xeb\x68\xd3\xa9\x06\xb6\xa9\x0a\xe7\xf1\x66\xc5\x0c\xb4\xac\x70\xa4\x62\x09\x8b\xa6\x9e\x66\x0d\x94\x4e\xe9\xd6\xe4\x66\xbd\x6a\xa8\x7e\x32\x6e\xa7\x11\xf9\x2f\x3b\x96\x2b\x74\x5b\x5e\xfb\xdc\x66\xf7\xb0\x12\x12\x56\xf4\xc1\xe4\x02\x25\xc9\x73\xf3\xbf\xa2\xe6\xf9\xa5\xbc\xac\x34\x64\x84\xc3\x5a\x8a\x9d\x7d\xda\x5d\xa2\x00\x1b\xa4\xeb\x8d\x0e\xb4\x88\x96\x22\xdf\x47\x49\x9a\x29\x15\x47\x5e\xca\x99\x16\x65\x34\x33\x8b\x29\x27\xdb\x25\x91\x51\x92\x3a\xc6\x38\xe9\x9b\xb1\x24\x95\x9a\x2c\x0c\x1a\x0b\x7c\x34\x54\x63\xe6\x1b\x2c\x98\xd0\x74\x7d\xd4\xaf\xa6\x4a\xfc\xcc\x54\xc6\x75\xdf\xc1\x11\xf7\x1c\x72\xa4\x11\xdb\xfa\x69\x50\xb3\xab\xaa\x98\xd4\xdd\x28\x32\x6c\xcc\x90\x4a\x8b\x5e\x73\xa6\xaf\xde\x13\x3c\x63\x34\x3b\x9c\x34\x09\x3c\xa1\x5f\x31\xde\x6d\xf9\x4b\x0c\xda\x6e\x52\x9b\x35\x48\xd8\xc2\x5e\xe0\xcc\xe3\xc5\xfb\x4e\x0f\x2e\x4e\xe0\x1b\x38\x1f\x29\xdb\x56\x8c\xa8\xcd\x94\xf5\xb7\x44\xc2\x72\x0d\x97\xc6\x09\x9f\x59\xca\xda\x47\x97\x24\xbb\x5f\x4b\x51\xf1\xfc\xcc\xe6\x58\x51\x27\xa8\x7a\xc4\x39\x55\x25\x23\xfb\x68\x06\x91\xcd\xa4\xa3\x24\x25\x9c\x16\x36\x29\xec\x98\xa0\x95\x6a\x73\xb9\x05\x44\xcf\x56\xab\x55\xd4\x2b\x3d\x67\xe3\xca\xba\xad\xf5\x86\xaa\x29\xf1\xa3\x5b\x2c\xd7\xbd\x17\xd7\x98\x69\xa8\x38\x17\x1c\xc3\x43\x0e\x30\xd6\xfb\x46\xbb\xe3\x15\xa7\x7a\x61\xdb\xfc\xed\xb3\x61\xbd\x6a\xe1\xc2\xb5\x9d\x1d\x40\xfb\xc2\x47\x45\x4b\x52\xcf\x77\xaa\xec\x76\xb9\x7b\xd9\x8b\x5e\x2f\xb7\xa5\xbb\xe9\xd1\xa9\x09\xba\x77\xe6\xfa\x16\xce\x39\x9a\x63\x1e\x12\xdb\xb9\x3f\xf9\x3a\xae\xbb\x49\x49\x6a\x33\x84\x6e\xc1\x70\x62\xa1\x71\x27\x49\x09\x84\x31\x6b\x00\x65\x12\x82\x1d\x5a\x2c\x74\xf9\x96\xff\x3a\x72\x12\xd6\x11\xb6\x52\xa2\xda\x72\x21\x43\xb3\x81\x82\x4a\x19\x40\x5d\x0a\xa1\x95\x96\xa4\xbc\xd9\x51\x9d\x39\x95\x0c\x30\x6a\xb1\x5e\x33\x8c\x92\xb4\x47\xd0\x7c\x62\x98\xcf\x01\xb9\x41\x70\xd0\x42\x30\x4d\x4b\x35\x83\x67\xf5\x97\x0a\x53\xef\x11\xc8\xa5\x28\x73\xb1\xe3\xbe\xe0\xab\xb3\x9e\x4a\xa1\x82\x9c\xae\x56\x28\x91\x6b\xc8\x89\x26\x67\x6e\xbb\x7a\xf7\xff\x04\x73\x97\xa7\x5e\xfe\xe9\x7f\x83\x0d\xa2\x24\xf5\xd3\x81\x27\xfa\x2b\x5c\x40\xb4\x11\x5b\x94\xfe\xb3\x50\xad\x70\xdb\x31\x0c\xbf\x57\xdc\x5e\x75\x7f\xda\x08\xef\x7c\x1c\x9a\xcf\x7d\x69\x69\x4c\x48\x09\x03\x5b\x3e\x82\x6d\xc6\x68\x61\x6c\x2a\x76\x6d\x05\x4b\x39\x55\x1b\x9f\x51\x51\xee\x22\xe0\x58\x01\x58\x23\xe3\x4d\xd0\x75\xf1\x31\xe0\x62\xc6\xfc\x38\x40\x90\xa9\xb7\xad\x8c\xe9\x86\xa0\xa8\x41\xee\xf1\x76\x60\xb7\x15\x18\xbd\xf5\x69\x1d\x7c\xeb\x1c\xa9\xd3\x18\x3c\xd4\x06\xa9\x9b\xad\x0a\x0a\xf3\x6c\x02\x17\x1a\x96\x68\x6d\x82\x39\xec\x51\xcf\xa0\x20\xf7\x08\x4a\x14\x08\xa6\xbc\x81\x82\xf0\x8a\x30\xb6\xf7\x57\x7c\xea\x3f\xdd\x9d\xfa\xea\xc7\xab\x13\xbd\xcc\xe9\x16\x32\x53\xb8\x5f\x9e\xde\x55\xc5\x52\x68\x29\xf8\xe9\xf7\x11\x7c\xdb\x50\x6c\xce\x6b\x02\x93\x9d\x9f\x65\x68\x80\xbd\x43\x72\xe5\x9b\x94\x3e\x9b\x7e\x49\x6b\x86\x15\x81\x15\x39\xc3\x87\x8c\x91\xc2\x36\xe1\xce\x32\x2a\x33\xe3\xc2\x46\x52\x6e\x32\x08\x79\x3a\xef\xec\x36\xdf\x9c\x77\x7e\x07\xfa\x75\xb6\x7f\x59\x06\x64\xce\x72\x3e\xe3\x0d\x85\x95\xdf\xbf\x9c\xe7\x74\xeb\xff\x75\x0e\x1a\x76\xa2\x0f\x06\x0b\x2e\x4e\xfe\x17\x00\x00\xff\xff\x4a\xa8\x93\x75\x93\x1d\x00\x00")
+var _staticUnseeJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x59\xef\x6e\xdc\x36\x12\xff\x9e\xa7\x98\x28\x01\x2c\x25\x6b\x6d\x8c\x22\xf7\x61\x1d\xf7\x90\x04\x49\xce\x87\x22\x0d\xec\xfa\x7a\xc0\xe1\x50\x70\xa5\xd9\x5d\xda\x14\xa9\x92\xd4\xae\x17\xc1\x3e\x46\xd1\xf7\xeb\x93\x1c\xf8\x47\x12\xf5\xcf\xeb\x1c\x8a\xf2\x43\x62\x91\x33\xc3\xe1\x70\xe6\xc7\x99\xd9\xf9\x0b\x58\x33\xb1\x24\x4c\xc1\x15\xd9\x22\x87\x17\x73\x30\x63\x3e\x07\x69\xbe\xd3\x5b\xf5\x24\xa0\x29\x44\x81\x5c\x7b\xa2\xf9\xdc\x7f\x1b\xa2\x90\xea\x2d\x43\xa9\xd5\x0c\xde\x56\x5a\x64\xa2\x28\x19\x6a\x9c\xc1\x7b\xc1\x84\x54\xe6\x7f\xbe\xa2\x6b\xf3\x7f\xc5\x35\xca\x19\x7c\x92\x34\x9f\xc1\x47\xca\x34\x9a\xf5\x2f\x52\xac\x25\x2a\x35\x83\xeb\xaa\x28\x88\xdc\xcf\xe0\x27\x2c\x4a\x46\x34\xaa\x19\xdc\x5c\xce\xe0\x67\xa2\xb3\x4d\x2e\xd6\xf0\x62\x6e\xf7\xc5\xfb\x52\x48\x8d\x39\xdc\x70\x85\x68\x66\xb7\x44\xfa\x8f\x0b\x88\x57\x15\xcf\x34\x15\x3c\x4e\xe0\xeb\x93\x27\x46\x73\xb3\xac\x69\x81\x12\x2e\x60\x45\x98\xc2\xf3\x66\x7a\x8b\x52\x51\xc1\x87\x0b\x12\x57\x12\xd5\xe6\xd2\xe8\xbc\x25\x0c\x2e\xe0\xec\xf5\x79\x2b\x4e\x21\xc3\x4c\x0b\xa9\xe0\x02\xbe\xda\x59\x33\x3c\xd3\xbb\x4a\x6b\xc1\x17\x10\x3d\xf3\x13\xd1\xac\x21\x41\x29\x85\x54\x66\xcd\xfd\x15\xd9\x95\x43\x20\x9a\x72\xaa\x8d\x3e\xe1\x31\x6a\xee\xda\x58\xe9\x25\xa7\x3a\x4e\x3c\x97\x19\xce\xcc\x6e\xbe\xa5\x77\x2b\xe5\xfe\xda\xab\x6b\xf6\xcd\x44\xb9\x3f\x55\xa8\x35\xe5\x6b\x75\xba\xa3\x7a\x73\xba\xb2\x97\x11\x68\x69\xc6\x35\xd9\x62\xc8\xa7\xc8\x16\x4f\x73\x5c\x91\x8a\xe9\x71\x8e\x2b\x54\xa8\x43\x16\x69\x26\x9a\xbd\xa2\x86\xf8\x90\x9c\xf7\x15\xff\x41\x90\xbc\x77\x20\xeb\x2f\xcd\x49\x1b\xb5\x9c\x97\x0c\xe6\x8d\x5b\x0d\x26\x43\x97\x1c\x2c\x7a\x17\x1c\xcc\xd7\xfe\xe6\x16\xbe\x7b\x35\x83\xbf\xbd\x7a\x71\xf6\x3a\x39\x37\x21\xa0\x50\xc3\xae\x76\x48\x2d\xe0\xec\x35\x14\x94\x57\x1a\x55\xab\xfa\xf3\xb8\x71\x8f\xb4\xe3\x12\x49\x9a\x31\x9a\xdd\xc5\xa3\x77\x6b\x06\x5d\x41\xfc\xf4\x01\xf6\x52\x8a\x32\x8e\x72\xaa\xc8\x92\x61\x1e\x25\x7d\x7e\x33\x6c\x20\xa4\x57\xc8\xbc\x45\xc3\xb5\x43\xe7\x4b\xa2\xae\x24\x0f\x3d\x3f\xbc\x9c\xd0\x27\xd7\xa8\xaf\x9c\x26\x57\x44\xe3\x94\x77\x7a\x79\xbd\xd0\x19\x4a\x53\x93\xd2\x14\x66\x82\xe7\x2a\x14\x6a\x83\xd1\x91\x95\x44\x2a\xbc\xe4\xba\x21\x6b\x95\x36\x86\xa3\xea\x33\xf9\x1c\x1b\xda\x81\x5d\xe6\x73\x43\x51\x12\xa5\x30\x77\xd2\xa8\x02\xca\x33\x21\x25\x66\x1a\x2a\x85\x3e\xa2\x61\x4b\x58\x85\x5d\x2b\xb9\xcd\xbd\x9f\x7e\x42\xfd\x63\x69\x75\x8d\xea\xe0\x4e\xcc\x64\xdf\xd2\x47\x14\x6a\x95\xd2\x1b\xa2\x4f\x14\x10\xa6\x04\x2c\x85\xbc\xc3\xdc\xaa\xe3\x03\x0d\xce\x5e\x0f\xf8\xbc\x42\x06\x8f\xc6\xef\xf6\xd0\x07\xa4\x00\xc5\x0c\xf3\xf9\x10\x4f\x6c\xe8\xc6\x23\x37\xcf\x11\x73\x75\x53\xae\x25\xc9\x3b\x37\x25\x51\x95\x82\x2b\xfc\x97\x03\xd0\xf0\x7c\xe6\xe8\x0d\xae\x5e\x78\x64\xed\x1b\xa0\x05\xde\x9e\xa4\xf3\xc7\xb8\x68\xdf\xe5\x6a\x69\x4f\x27\xc4\x85\x27\x92\xc8\x73\x94\x1f\x0c\xfa\x86\x07\xd2\xfe\xd1\x99\x41\x26\xb8\xc6\x7b\x1d\x6a\x5c\x83\x91\xe5\x1a\xa0\xce\x7b\x86\x64\x38\xfb\x0f\x9a\x63\x38\x19\x86\xb5\xc3\xfe\x24\xdd\xe8\x82\xc5\xcd\x73\x97\x5e\x59\xd5\x46\x54\x39\x22\x46\x6d\xc4\x2e\xee\x60\xaa\x53\xf7\x86\xdf\x71\xb1\xe3\x63\xf0\x79\x53\xe6\x44\x63\xfc\x35\x84\xe2\x5c\x64\x95\x7d\xe0\x35\xd5\xcc\xdc\x76\x14\xff\xf1\xfb\x6f\xf0\x23\xfc\xf1\xfb\x6f\x49\xd4\xd2\x55\x96\xf7\xbd\xc7\xd5\x7c\xcc\x6d\x36\x84\xe7\x0c\x07\x46\x46\x29\x43\xb3\xda\x1c\x24\xcd\x48\xa9\x2b\x89\x1f\xee\x33\x2c\x1b\xaa\x6e\x68\xef\x28\xcf\xc5\x2e\xcd\x04\x57\x82\x0d\x7c\xc9\x4f\x3b\x73\x18\xee\x54\x69\x92\xdd\x25\xe3\x0e\xd3\xdc\x7e\x1c\x51\x63\x25\x4e\x98\xfd\x8c\x66\x3d\xb1\x9c\x14\xb8\x30\x0f\x76\x6a\xfe\xea\x3e\x75\x05\x2a\x45\xd6\x7e\xd9\x7f\xcc\x7a\xb0\xb1\xb3\xab\xa3\x8f\x9e\x42\xfd\x13\x2d\x50\x54\x7a\xfa\x2d\x70\x38\xfe\x33\xa1\xfa\xa3\x90\x9f\xf1\x5e\x0f\x21\xfd\x30\x83\xd7\xaf\x5e\x8d\x98\xbf\x1a\x06\x6c\x17\xa8\x03\x23\x48\x2b\xf6\x33\x62\x8e\xb9\xb1\xc1\xb7\xea\xc9\x44\x46\xcc\x42\x2a\xc7\xf4\xfb\xee\xd5\xa8\x82\x5a\xd2\xf5\x1a\xa5\x3b\xd2\x94\x9a\xce\xcf\x2e\xd5\x15\x92\x7c\xdf\x09\xa5\x94\xdc\x92\xfb\x5e\x9e\x53\x49\xb6\x80\x88\xd8\x64\x34\xbd\x55\x82\xff\xfd\xd7\x8b\x08\x5e\x36\xcf\xfc\x27\xd4\xfe\xcf\x38\x49\x6f\x05\xe5\x71\x34\x8b\x92\xee\xa5\xa9\x2a\xcb\x50\xa9\x45\x17\xe7\xc6\xc0\xbb\x0e\xb1\x6b\xc7\xd1\x87\x7f\xf0\x8e\x1b\xc2\xa7\x95\x95\x7a\xa8\x1a\x7d\x11\xdc\xa1\x1d\xf1\x88\xc0\x03\x20\x53\x68\xe5\x5a\x51\xd6\xdf\xa7\xe4\x3c\x80\x01\xe1\xe8\xb8\x82\x33\xf8\x78\x34\x84\xc3\x6e\xbc\x80\xe8\x1d\xc9\xee\x90\xe7\xee\xbb\x97\x0c\x86\xa3\x89\x96\x56\xed\x69\x62\x46\x94\xfe\x45\xab\x45\x9b\x87\x7d\x42\xfd\x03\x51\xda\x43\x56\x32\xca\x79\x98\x38\xdf\x23\xa2\xa8\x11\xe1\xcc\x3b\x7e\xec\xf9\xdc\xbb\xe3\x2f\xce\xc3\xe2\xc4\xa4\x10\x59\x59\xc1\x06\xc9\x76\x0f\x4a\x00\xd5\xb0\xa3\x8c\xc1\x92\x89\xec\x0e\x96\x52\xec\x14\x4a\x58\x49\x51\x00\x29\x4b\xb6\xa7\x7c\x0d\x99\x52\x90\x6d\x08\x5f\xa3\x9a\xda\x86\xf2\x5b\x93\x88\x68\xca\xf7\x90\x23\x23\x7b\x58\xa2\xde\x21\x72\x20\x79\xfe\x9e\x11\xe3\x6c\x40\x96\x62\x8b\x40\x78\x3e\xd0\x4a\x09\x9b\x52\x80\xde\x60\xad\xc3\xd4\x4e\x1b\x62\x64\x58\x7d\x32\x34\xc9\xac\xc4\x95\x4d\x82\xf4\x46\x28\xf4\x92\xc7\xf5\x7c\x0c\x30\x84\x43\xcb\xfd\x03\xab\x70\xe4\x61\x1a\x1b\x75\x58\xbb\xfb\x7c\x47\xf2\x35\x2a\x17\x16\xae\x36\x51\x47\xf8\x5d\x7d\x5a\x6f\x67\x19\x33\x3b\x75\x84\xcf\x55\xbb\x21\xdf\x11\x86\x89\xd7\x72\x6a\x34\x5e\xff\x45\xf0\x75\xec\x2a\x6e\xa7\x9e\x29\x61\x95\x26\x45\x99\x1c\x11\xf1\x0d\x3e\x1f\x0e\x5b\x7c\xb4\xc5\x8f\xfa\x48\x34\x61\xf1\x24\x50\xb5\x63\x32\xb3\x89\xa2\x23\x5b\x4e\xf0\x9a\xcc\xe9\x28\xef\x61\x72\xf5\x00\x99\x39\x05\xf4\xd3\x8d\xb1\xf1\x48\x98\xac\x47\x90\xd7\xf4\xd2\x94\xb1\xf1\x7f\x5c\xc4\xf8\xa9\xec\x43\x3f\x06\x59\xdd\x0a\xa0\x0b\xaa\x1e\xa5\x1f\x8c\xcf\x47\x1c\xdf\x95\x29\x2b\xe3\x0c\x4e\x24\xec\x88\xa9\x57\xa4\x79\x95\xeb\x87\x1c\x73\xd8\xa1\x03\x14\x47\xe3\x21\x7f\x4c\x9a\x12\x90\x0b\x7e\xa2\x0d\x9e\x01\xc7\x1d\x08\x3e\xa4\xfb\x46\x67\xfc\x6b\x9f\xb1\xe8\xed\x3f\xdf\xfe\x1b\x24\xfe\x5a\xa1\xd2\xb0\x22\xd4\x14\xe3\x7f\xc5\x8b\x36\xf4\x8e\x47\xba\xd8\xe1\xc1\xf2\xbe\x93\x68\x1d\xed\x3d\xd5\x50\x36\x55\xdc\x3c\xdc\xb3\x98\x81\x96\x15\x8e\x14\x2b\x61\xbd\x34\x54\xae\xc1\xcf\x29\xf5\x9a\x84\xac\x57\x0b\xd5\xef\xc4\xcd\x34\x0c\xff\x69\x27\x73\x95\x6e\xcb\x6b\xdf\xd8\xec\x0e\x56\x42\xc2\x8a\xde\x9b\x04\xa0\x24\x79\x6e\xfe\x57\xd4\xbc\xb9\x94\x97\x95\x86\x8c\x70\x58\x4b\xb1\xb3\xef\xb9\xcb\x0e\x60\x83\x74\xbd\xd1\x81\x16\xd1\x52\xe4\xfb\x28\x49\x33\xa5\xe2\xc8\x4b\x39\xd5\xa2\x8c\x66\x66\x31\xe5\x64\xbb\x24\x32\x4a\x52\xc7\x18\x27\x23\x96\x2c\x49\xa5\x26\x6b\x82\xc6\x08\x5f\x0c\xd5\x98\x05\x07\x0b\x26\x46\x5d\x5f\xf5\xe9\x54\x99\x9f\x99\xd2\xb8\x6e\x3f\x38\xe2\x9e\x67\x8e\x34\x66\x5b\x87\xed\xd6\xed\xaa\x2a\x26\xd5\x37\xba\x0c\x5b\x34\xa4\xd2\xa2\xd7\xa6\xe9\x6b\xf8\x08\xff\x18\x4d\x0c\x27\xad\x02\x8f\x68\x5b\x8c\xf7\x5d\xfe\x14\x9b\xb6\x9b\xd4\x96\x0d\x72\xb5\xb0\x37\x38\xf3\xd8\xf1\xa9\xd3\x8d\x8b\x13\x78\x01\x67\xe3\x45\xdb\x8a\x11\xb5\x99\xba\x00\x43\xb0\x5c\xc3\x85\xf1\xc6\x67\x96\xb2\x76\xd6\x25\xc9\xee\xd6\x52\x54\x3c\x3f\xb5\x19\x56\xd4\x89\xae\x1e\x71\x4e\x55\xc9\xc8\x3e\x9a\x41\x64\xf3\xe8\x28\x49\x09\xa7\x85\x4d\x09\x3b\x56\x68\xa5\xda\x4c\x6e\x01\xd1\xb3\xd5\x6a\x15\xf5\x6a\xcf\xd9\xf4\xf3\xf7\x3c\xd6\x1b\xaa\xa6\xc4\x8f\x6e\xb1\x5c\xf7\xde\x5b\x63\xa9\xa1\xe2\x5c\x70\x0c\x0f\xd9\x87\x5c\xef\x1d\xed\x86\x97\x9c\xea\x85\x6d\xfc\xb7\x8f\x88\xf5\xab\x85\x8b\xd9\x76\x76\x00\xf4\x0b\x1f\x17\x2d\x49\x3d\xdf\x29\xb1\xdb\xe5\xee\x75\x2f\x7a\xad\xdd\x96\xee\xba\x47\xa7\x26\xe8\x3e\x9a\xdb\x5b\x38\xdf\x68\x4e\x79\x48\x6c\x2f\xff\x79\x5c\xb7\x94\x92\xd4\xa6\x0b\x83\x1f\x67\xe6\x73\xd8\x49\x52\x02\x61\xcc\x9e\x5f\x99\xec\x60\x87\x16\x12\x5d\xae\xe5\x7f\x31\x79\x12\xd6\x10\xb6\x4a\xa2\xda\x72\x21\x43\xb3\x81\x82\x4a\x19\x5c\x5d\x0a\xa1\x95\x96\xa4\xbc\xde\x51\x9d\x39\x8d\x0c\x3e\x6a\xb1\x5e\x33\x8c\x92\xb4\x47\xd0\xfc\xe6\x30\x9f\x03\x72\x03\xe4\xa0\x85\x60\x9a\x96\x6a\x06\xcf\xea\x9f\x2e\x4c\xad\x47\x20\x97\xa2\xcc\xc5\x8e\xfb\x62\xaf\x4e\x81\x2a\x85\x0a\x72\xba\x5a\xa1\x44\xae\x21\x27\x9a\x9c\xba\xed\xea\xdd\xff\x13\xcc\x5d\x9c\x78\xf9\x27\xff\x0d\x36\x88\x92\xd4\x4f\x07\x7e\xe8\x6f\x70\x01\xd1\x46\x6c\x51\xfa\x9f\x8a\x6a\x85\xdb\xb6\x61\xf8\x03\xc6\xcd\x65\xf7\xd3\x86\x78\xe7\xd7\xa2\xf9\xdc\x97\x95\xc6\x84\x94\x30\xb0\xa5\x23\xd8\x46\x8c\x16\xc6\xa6\x62\xd7\x56\xaf\x94\x53\xb5\xf1\xe9\x15\xe5\xce\xff\x8f\x15\x7f\x35\x34\x5e\x07\x1d\x17\x1f\x01\x2e\x62\xcc\xc7\x01\x82\x2c\xbd\x6d\x63\x4c\xb7\x04\x45\x8d\x72\x0f\x37\x04\xbb\xcd\xc0\xe8\x83\xcf\xf1\xe0\xa5\x73\xa4\x4e\x6b\xf0\x50\x1b\xa4\xee\xb8\x2a\x28\xcc\xeb\x09\x5c\x68\x58\xa2\xb5\x09\xe6\xb0\x47\x3d\x83\x82\xdc\x21\x28\x51\x20\x98\xd2\x06\x0a\xc2\x2b\xc2\xd8\xbe\xbe\xe2\xfa\xe7\x3c\x5f\xf9\x78\x75\xa2\x37\x39\xdd\x42\x66\x8a\xf6\x8b\x93\xdb\xaa\x58\x0a\x2d\x05\x3f\xf9\x3e\x82\x97\x0d\xc5\xe6\xac\x26\xd0\x78\xaf\x4f\x33\x34\xc8\xde\x21\xb9\xf4\x6d\x4a\x9f\x5a\xbf\xa1\x35\xc3\x8a\xc0\x8a\x9c\xe2\x7d\xc6\x48\x61\x7b\x70\xa7\x19\x95\x99\x71\x61\x23\x29\x37\x89\x84\x3c\x99\x77\x76\x9b\x6f\xce\x3a\xdf\x81\x7e\x9d\xed\xdf\x94\x01\x99\xb3\x9c\x4f\x7f\x43\x61\xe5\xf7\x6f\xe6\x39\xdd\xfa\x7f\x9d\x83\x86\xed\xe8\x83\x81\x82\xf3\x27\xff\x0b\x00\x00\xff\xff\x2c\x34\xbd\x66\x77\x1e\x00\x00")
func staticUnseeJsBytes() ([]byte, error) {
return bindataRead(
@@ -1476,7 +1476,7 @@ func staticUnseeJs() (*asset, error) {
return a, nil
}
-var _staticWatchdogJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x54\xcf\x6b\xeb\x38\x10\xbe\xe7\xaf\x98\xa5\x05\xcb\x4b\xe2\x7a\x2f\x3d\x38\x64\x2f\x65\xb7\x14\x0a\xef\x51\x52\xde\xb1\xe8\xd9\xe3\x44\x54\x91\x8a\x34\x6e\x0a\x25\xff\xfb\x43\x8a\x2d\x4b\xae\x43\x75\x08\xb1\xbe\xf9\xf1\xcd\x37\x9a\x79\xe7\x06\x7e\x71\xaa\xf7\x8d\xde\xc1\x06\x58\xdb\xa9\x9a\x84\x56\x2c\x87\xcf\xc5\x62\x01\x00\xe0\x4c\x2c\x4a\xac\x49\x1b\x0b\x1b\xf8\xf4\xb7\xee\xd4\xba\x53\xd4\xe8\xa3\xaa\x20\xbb\x32\x28\x35\x6f\x56\xfe\x0e\x4d\xe6\x8d\x4e\xeb\x31\x84\xe4\x96\xb6\xce\xbf\x5c\x87\xbb\x03\xff\x78\xe4\xbb\xf1\x9b\xc4\x01\x0d\x6c\xa0\xe5\xd2\x62\xe4\x2b\xd4\xdd\x90\x6a\x44\x07\xb0\xe5\xc4\x65\x8c\xdf\x96\x13\xf0\xc9\x53\xdb\xa6\xc1\xbf\xba\xa3\x99\x98\x9c\x09\x78\x52\x5b\x51\xbf\x3a\x20\x96\x67\x90\x41\xb4\xc0\x86\xea\x36\x1b\x28\x73\x30\x48\x9d\x51\x7d\x01\xee\xdc\xdc\x40\xa3\x55\x46\x60\xb8\xb0\x08\x5c\x01\x1a\xa3\x8d\x73\xe5\x1d\x69\x83\xad\x41\xbb\x07\x61\xa1\x11\x96\xff\x96\xd8\x24\xd1\xff\xba\xd3\xaa\x15\xbb\xe2\x1e\xe9\xc7\x9b\xcf\x9f\x45\x6e\x59\xee\x00\x96\xcf\xe4\x75\x05\x2a\x7d\x84\x0d\x1c\xf4\x01\x15\xb1\xbc\xe8\xa8\x76\xbf\x4a\x7c\xb0\x7c\x9d\x64\x71\x86\xab\xa1\x4f\xff\xf6\xcd\x89\x0b\x75\xe7\x9a\x65\x57\x9e\xbb\xcd\xf2\x62\x4f\x07\xc9\xb6\x78\x78\x93\x9c\xd0\x16\x4f\xa8\x1a\x34\x2c\xf3\x92\xfe\xe7\x8c\xb2\xe5\xc4\xdd\x1d\x97\xe1\x85\x6c\xd5\xa7\x5a\x7e\x31\xb0\x58\x6b\xd5\xd8\x17\x89\x2d\x55\x93\xfe\x26\xc6\xa7\x3c\x2f\xec\x5e\x1f\xe3\x4a\xdc\xe9\xdb\x59\x3c\xab\x57\xa5\x8f\x6a\x0a\x7b\x49\xa3\x37\x35\xad\xd1\x9d\x8b\xaf\xea\x8b\x51\xfa\xba\x2c\x92\xfb\xab\x3b\x62\xb3\x8f\x25\x11\x42\xd7\xdc\x19\x14\xe7\xd9\x99\xd2\xf4\x15\x2e\xe1\xb6\x84\xbf\xe1\x9f\xb2\x2c\x67\xe0\xb9\xc7\x6b\x91\x1e\xdc\xf7\x3b\x97\xdf\x53\xb8\x66\x61\xb4\x8b\x30\xce\x79\x41\xf8\x41\x6c\xb5\x4a\x45\x98\xa7\x77\x81\x59\x3a\xb2\x64\x3a\x4c\x6d\x4e\xe1\xeb\x04\x28\x2d\x4e\xf8\x5d\x9c\xf8\x60\xd0\x02\x9b\xca\x9f\x43\x2d\x91\x9b\xa0\xff\x14\xbe\x10\x21\xd6\x6f\x2e\x44\x82\x8f\x31\x4e\x61\xc5\x2d\xce\x8c\x05\xc5\x1b\x42\xf4\x3d\x58\x02\x69\x89\x86\xab\x1a\xe3\x26\x9c\xa7\xcb\x49\x33\xa0\x63\xe4\xb8\x83\x61\xfb\x2c\x61\x88\x98\x3e\x87\x40\xa0\x7b\x6b\x38\xa1\x5f\xb1\x81\x04\xd9\x38\x67\x58\xc1\x64\x67\xd6\x40\x08\xb4\x43\x4a\xa3\xc4\x31\xce\x2b\xa6\x0f\xb5\x4e\xb6\xfc\x0e\xe9\x7f\xa7\xd7\x37\xae\x51\x6b\x27\x89\x7b\x83\xd1\xe3\x41\x09\xaa\xbc\xb2\xe3\x92\xf8\xa9\xd5\xae\x0a\xc5\x8e\xf7\xf7\x48\x8f\xdc\xd2\xb3\x07\xaa\x73\x11\x23\xfa\x60\x3d\xb5\x2a\x90\x0c\x99\x4f\x2c\xcf\xd7\x8b\x3f\x01\x00\x00\xff\xff\x03\xc2\x51\x9f\x08\x07\x00\x00")
+var _staticWatchdogJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x54\xcf\x6b\xdb\x30\x14\xbe\xe7\xaf\x78\x73\x0b\x93\x83\xe3\x78\x97\x1e\x1c\xb2\x4b\xd9\x4a\xa1\xb0\x51\x52\x76\x2c\xaa\xfd\x9c\x68\x55\xa4\x20\x3d\x37\x81\x92\xff\x7d\xc8\x71\x64\xd9\x75\x56\x1d\x42\xac\xef\x7b\xdf\xfb\xa9\x37\x9f\xc2\x5a\xea\x17\x2e\x2d\x6c\xf5\x16\x15\xc1\x74\x0e\x00\x30\x9f\xb7\xdf\xe9\x5f\x3b\x99\x04\xac\x5b\xad\x2a\xb1\x4e\xe0\x56\xd7\x8a\xd0\x24\xb0\xc2\xed\x4e\x72\x42\x0b\xd3\x79\xc3\xc4\xc3\x4e\x1b\xc2\x12\xfe\x70\x2a\x36\xa5\x5e\x3b\xe0\x8d\x9b\xee\x7b\x09\xac\xaa\x55\x41\x42\x2b\x16\xc3\xfb\x64\xe2\x3c\x3a\x86\x45\x89\x05\x69\x63\x61\x09\xef\xcd\xad\x3b\x85\x73\x55\xea\xbd\xca\x21\xba\x32\x28\x35\x2f\x67\xc5\xc9\x7d\xd4\x90\x8e\x8b\x4e\x42\x72\x4b\x2b\x67\x9f\x2d\xfc\xdd\x96\x1f\x1e\xf8\x3a\x20\x09\x75\x7b\xd6\x84\x25\x54\x5c\x5a\xec\xd8\x15\x27\x2e\x43\xfc\x26\x1b\x80\x8f\x4d\x0c\x2b\xb1\x45\xf3\x3f\x73\x34\x03\x8a\xe7\x90\xbb\x5f\x89\xe2\xd5\x61\x61\x25\xce\x29\x8b\x0a\xd8\x39\x93\xe5\x12\xb2\x18\x0c\x52\x6d\x54\xab\xd1\x76\xa8\xd4\xea\x2b\x81\xe1\xc2\x22\x70\x05\x68\x8c\x36\xce\x94\xd7\xa4\x0d\x56\x06\xed\x06\x84\x85\x52\x58\xfe\x22\xb1\xec\xa9\x7f\x39\x35\x32\xbd\x43\xfa\xb5\x6b\xfc\x47\x81\x59\x14\x3b\x80\xc5\x23\x7e\x5d\xfc\x4a\xef\x61\xd9\x0e\x08\x8b\xd3\x9a\x0a\xf7\xab\xc4\x81\xc5\x8b\x9e\x17\x47\x9c\x9d\x7b\xf2\xbd\x6d\x44\x98\xa8\x3b\xd7\x2c\xba\x6a\x62\xb7\x51\x9c\x6e\x68\x2b\x99\x9f\xa9\xf4\x11\x55\x89\x86\x45\x4d\x55\x7f\x38\x52\x94\x0c\xcc\xdd\x71\x1e\x9e\xc9\xe6\xad\xab\xe4\x03\xc1\x62\xa1\x55\x69\x9f\x25\x56\x94\x0f\x5a\xdc\x23\x1f\xe3\x38\xb5\x1b\xbd\x0f\x33\x71\xa7\xed\x68\xfa\xa4\x5e\x95\xde\xab\x21\xdc\x94\x34\x18\xab\x61\x8e\xee\x5c\x1c\xac\x0f\xa4\xfe\x80\x59\x24\xf7\x57\xd7\xc4\x46\x87\xa5\x57\x08\x5d\x70\x47\x48\x4f\xef\x64\x18\x66\x93\x61\x02\x37\x19\x4c\xe1\x5b\x96\x65\x23\xf0\xd8\xfc\x5a\xa4\x7b\xf7\xfd\xc6\xe5\xe7\x21\x5c\x33\xff\x8c\x53\xff\x74\xe3\x94\xf0\x40\x6c\x36\xeb\x17\x61\x3c\xbc\x0b\x91\xf5\x5f\x2d\x99\x1a\xfb\x9c\xa3\xff\x3a\x02\x4a\x8b\x83\xf8\x2e\x3e\x7a\x4f\xa8\x80\x0d\xcb\x1f\x43\x21\x91\x1b\x5f\xff\x21\x7c\x41\x21\xac\xdf\x98\x44\x0f\xef\x34\x8e\x1f\xd6\x99\x50\x82\xc2\x25\x21\xda\x36\x24\x40\x5a\xa2\xe1\xaa\xc0\xb0\x0f\xa7\x07\xe6\xaa\x73\x46\x3b\xf1\xb0\x89\x7e\x01\x25\x70\x56\xec\x4f\x44\x18\x43\xbd\x2b\x39\x61\xb3\x54\x7d\x1c\x64\x43\xb7\x7e\xe9\x92\x1d\x59\x06\xa1\xd6\x1a\xa9\x2f\x14\xca\x9c\x76\x4d\xab\x36\x6a\xfb\xd3\x15\xef\x13\xf3\xa0\xcf\x7d\x8d\x16\xef\x0c\xee\x95\xa0\xbc\x29\x71\xb7\x30\x7e\x6b\xb5\xce\x7d\xca\xdd\xfd\x1d\xd2\x03\xb7\xf4\xd4\x00\xf9\x29\x8f\x0e\xbd\xb7\x4d\x64\xb9\x8f\xd1\x3b\x3e\xb2\x38\x5e\x4c\xfe\x05\x00\x00\xff\xff\x4e\x64\x6d\xcc\x67\x07\x00\x00")
func staticWatchdogJsBytes() ([]byte, error) {
return bindataRead(