diff --git a/assets/static/alerts.js b/assets/static/alerts.js
index bb9d0c231..4b2734463 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);
@@ -43,8 +48,7 @@ var Alerts = (function() {
}
-
- destroyGroup = function(groupID) {
+ 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) {
@@ -53,8 +57,7 @@ var Alerts = (function() {
Grid.Remove($('#' + groupID));
};
-
- sortMapByKey = function(mapToSort) {
+ var sortMapByKey = function(mapToSort) {
var keys = Object.keys(mapToSort);
keys.sort();
var sorted = [];
@@ -68,8 +71,7 @@ var Alerts = (function() {
return sorted;
};
-
- labelAttrs = function(key, value) {
+ var labelAttrs = function(key, value) {
var label = key + ': ' + value;
var attrs = labelCache.get(label);
@@ -84,8 +86,7 @@ var Alerts = (function() {
return attrs;
};
-
- humanizeTimestamps = function() {
+ var humanizeTimestamps = function() {
var now = moment();
// change timestamp labels to be relative
$.each($('.label-ts'), function(i, elem) {
@@ -105,8 +106,7 @@ var Alerts = (function() {
$('.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 = {};
@@ -185,7 +185,6 @@ var Alerts = (function() {
};
-
return {
Update: updateAlerts,
SortMapByKey: sortMapByKey,
diff --git a/assets/static/autocomplete.js b/assets/static/autocomplete.js
index 834122dfe..2fe698ed8 100644
--- a/assets/static/autocomplete.js
+++ b/assets/static/autocomplete.js
@@ -1,10 +1,11 @@
-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,
@@ -18,18 +19,16 @@ var Autocomplete = (function() {
});
};
- 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') {
// static list of hints for @silenced label
@@ -64,7 +63,6 @@ var Autocomplete = (function() {
return hints;
};
-
return {
Init: init,
Reset: reset,
diff --git a/assets/static/colors.js b/assets/static/colors.js
index eed43f965..5b103a3a0 100644
--- a/assets/static/colors.js
+++ b/assets/static/colors.js
@@ -1,6 +1,6 @@
+/* exported Colors */
var Colors = (function() {
-
var colors,
staticColorLabels;
@@ -11,13 +11,11 @@ var Colors = (function() {
'@inhibited: true': 'label-success'
};
-
- update = function(colorData) {
+ var update = function(colorData) {
colors = colorData;
};
-
- getClass = function(key, value) {
+ 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
@@ -30,8 +28,7 @@ var Colors = (function() {
}
};
-
- 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) {
@@ -42,16 +39,15 @@ var Colors = (function() {
return style;
};
-
- getStaticLabels = function() {
+ 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..79ff84a97 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 {
@@ -15,7 +20,7 @@ var Option = (function(params) {
this.Set = params.Setter || function(val) {
$(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) {
@@ -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,8 +85,7 @@ var Config = (function() {
});
};
-
- init = function(params) {
+ var init = function(params) {
// copy current filter button action
new Clipboard(params.CopySelector, {
@@ -100,7 +101,7 @@ var Config = (function() {
});
// save settings button action
- $(params.SaveSelector).on('click', function(elem) {
+ $(params.SaveSelector).on('click', function() {
var filter = Filters.GetFilters().join(',');
Cookies.set('defaultFilter.v2', filter, {
expires: 365,
@@ -110,7 +111,7 @@ var Config = (function() {
});
// reset settings button action
- $(params.ResetSelector).on('click', function(elem) {
+ $(params.ResetSelector).on('click', function() {
Config.Reset();
QueryString.Remove('q');
location.reload();
@@ -172,19 +173,16 @@ var Config = (function() {
};
-
- 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..32725dad7 100644
--- a/assets/static/counter.js
+++ b/assets/static/counter.js
@@ -1,16 +1,16 @@
-var Counter = (function(params) {
+/* globals Favico */ // favico.js
+/* exported Counter */
+var Counter = (function() {
var selectors = {
counter: '#alert-count',
spinner: '#spinner'
};
-
var favicon = false;
-
- setCounter = function(val) {
+ var setCounter = function(val) {
favicon.badge(val);
Counter.Show();
$(selectors.counter).html(val);
@@ -27,39 +27,33 @@ var Counter = (function(params) {
}
};
-
- setUnknown = function() {
+ var setUnknown = function() {
favicon.badge('?');
Counter.Show();
$(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).show();
};
-
- show = function() {
+ var show = function() {
$(selectors.spinner).hide();
$(selectors.counter).show();
};
-
- markError = function() {
+ var markError = function() {
$(selectors.spinner).children().removeClass('spinner-success').addClass('spinner-error');
};
-
- markSuccess = function() {
+ var markSuccess = function() {
$(selectors.spinner).children().addClass('spinner-success');
};
-
- init = function() {
+ var init = function() {
favicon = new Favico({
animation: 'none',
position: 'up',
@@ -69,7 +63,6 @@ var Counter = (function(params) {
Counter.Unknown();
};
-
return {
Init: init,
Set: setCounter,
diff --git a/assets/static/filters.js b/assets/static/filters.js
index 50be06729..e3a63359a 100644
--- a/assets/static/filters.js
+++ b/assets/static/filters.js
@@ -1,13 +1,16 @@
+/* globals sha1 */ // sha1.js
+
+/* globals Autocomplete, Cookies, QueryString, Unsee */
+
+/* exported Filters */
var Filters = (function() {
-
- selectors = {
+ var selectors = {
filter: '#filter',
icon: '#filter-icon'
};
-
- addBadge = function(text) {
+ var addBadge = function(text) {
$.each($('span.tag'), function(i, tag) {
if ($(tag).text() == text) {
var chksum = sha1(text);
@@ -16,8 +19,7 @@ var Filters = (function() {
});
};
-
- update = function() {
+ var update = function() {
Filters.Updating();
// update location so it's easy to share it
@@ -27,8 +29,7 @@ var Filters = (function() {
Unsee.Reload();
};
-
- init = function() {
+ var init = function() {
var initial_filter;
if ($(selectors.filter).data('default-used') == 'false' || $(selectors.filter).data('default-used') === false) {
@@ -71,10 +72,10 @@ var Filters = (function() {
// stop when user is typing in the filter bar
$('.bootstrap-tagsinput').typing({
- start: function(event, elem) {
+ 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
@@ -95,13 +96,11 @@ var Filters = (function() {
};
-
- getFilters = function() {
+ 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')) {
@@ -116,28 +115,23 @@ var Filters = (function() {
});
};
-
- addFilter = function(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');
};
-
- updateDone = function() {
+ var updateDone = function() {
$(selectors.icon).removeClass('fa-circle-o-notch fa-spin fa-pause').addClass('fa-search');
};
-
- setPause = function() {
+ 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..1a0f46027 100644
--- a/assets/static/grid.js
+++ b/assets/static/grid.js
@@ -1,5 +1,7 @@
-var Grid = (function(params) {
+/* globals Config */
+/* exported Grid */
+var Grid = (function() {
var selectors = {
alerts: '#alerts',
@@ -9,8 +11,7 @@ var Grid = (function(params) {
var grid;
-
- init = function() {
+ var init = function() {
grid = $(selectors.alerts).masonry({
itemSelector: selectors.incident,
columnWidth: selectors.gridSizer,
@@ -25,23 +26,19 @@ var Grid = (function(params) {
});
};
-
- clear = function() {
+ var clear = function() {
grid.masonry('remove', $(selectors.incident));
};
-
- redraw = function() {
+ var redraw = function() {
grid.masonry('layout');
};
-
- remove = function(elem) {
+ var remove = function(elem) {
grid.masonry('remove', elem);
};
-
- append = function(elem) {
+ var append = function(elem) {
if (Config.GetOption('appendtop').Get()) {
grid.prepend(elem).masonry('prepended', elem);
} else {
@@ -49,22 +46,18 @@ var Grid = (function(params) {
}
};
-
- items = function() {
+ 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..776ff7c4f 100644
--- a/assets/static/progress.js
+++ b/assets/static/progress.js
@@ -1,10 +1,13 @@
-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,
@@ -12,28 +15,24 @@ var Progress = (function() {
});
};
-
- 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..2c9c82b4b 100644
--- a/assets/static/querystring.js
+++ b/assets/static/querystring.js
@@ -1,7 +1,7 @@
+/* exported QueryString */
var QueryString = (function() {
-
- parse = function() {
+ var parse = function() {
var vars = [],
hash;
var q = document.URL.split('?')[1];
@@ -15,8 +15,7 @@ var QueryString = (function() {
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(''),
urlQueryString = document.location.search,
@@ -25,7 +24,7 @@ var QueryString = (function() {
// 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) {
@@ -37,8 +36,7 @@ var QueryString = (function() {
window.history.replaceState({}, "", baseUrl + params);
};
-
- remove = function(key) {
+ var remove = function(key) {
var baseUrl = [location.protocol, '//', location.host, location.pathname].join(''),
q = QueryString.Parse();
if (q[key] !== undefined) {
@@ -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..f9a13322b 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({
@@ -31,8 +33,7 @@ var Summary = (function() {
return Templates.Render('breakdownContent', {tags: tags});
};
-
- init = function() {
+ var init = function() {
summary = {};
$('.navbar-header').popover({
trigger: 'hover',
@@ -49,19 +50,16 @@ var Summary = (function() {
});
};
-
- update = function(data) {
+ var update = function(data) {
summary = data;
};
-
- reset = function() {
+ var reset = function() {
summary = {};
render();
};
-
- push = function(labelKey, labelVal) {
+ var push = function(labelKey, labelVal) {
var l = labelKey + ': ' + labelVal;
if (summary[l] === undefined) {
summary[l] = 1;
@@ -70,12 +68,11 @@ var Summary = (function() {
}
};
- getCount = function(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..2ee11cb7c 100644
--- a/assets/static/templates.js
+++ b/assets/static/templates.js
@@ -1,5 +1,7 @@
-var Templates = (function(params) {
+/* globals _ */ // underscore.js
+/* exported Templates */
+var Templates = (function() {
var templates = {},
config = {
@@ -39,8 +41,7 @@ var Templates = (function(params) {
alertGroupLabelMap: '#alert-group-label-map'
};
-
- init = function() {
+ var init = function() {
$.each(config, function(name, selector) {
try {
templates[name] = _.template($(selector).html());
@@ -51,8 +52,7 @@ var Templates = (function(params) {
});
};
-
- renderTemplate = function(name, context) {
+ var renderTemplate = function(name, context) {
var t = templates[name];
if (t === undefined) {
console.error('Unknown template ' + name);
@@ -65,7 +65,6 @@ var Templates = (function(params) {
}
};
-
return {
Init: init,
Render: renderTemplate
diff --git a/assets/static/ui.js b/assets/static/ui.js
index d8950cc86..06768ddee 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: [],
@@ -109,7 +108,7 @@ var UI = (function(params) {
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,8 +125,7 @@ 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;
@@ -152,16 +150,14 @@ 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;
@@ -207,9 +203,8 @@ var UI = (function(params) {
silenceFormCalculateDuration();
};
-
// modal form for creating new silences
- setupSilenceForm = function() {
+ var setupSilenceForm = function() {
var modal = $("#silenceModal");
modal.on("show.bs.modal", function(event) {
Unsee.Pause();
@@ -262,7 +257,7 @@ var UI = (function(params) {
noneSelectedText: '' + $(this).data('label-key') + ": ",
multipleSeparator: ' ',
selectedTextFormat: 'count > 1',
- countSelectedText: function (numSelected, numTotal) {
+ countSelectedText: function (numSelected) {
return '' +
$(elem).data('label-key') + ": " + numSelected + " values selected";
}
@@ -286,7 +281,7 @@ var UI = (function(params) {
inline: true
});
setupGroupTooltips($("#newSilenceForm"));
- $('.select-label-badge').on('click', function(e) {
+ $('.select-label-badge').on('click', function() {
var select = $(this).parent().parent().find('select');
if (select.selectpicker('val')) {
// if there's anything selected deselect all
@@ -310,15 +305,15 @@ var UI = (function(params) {
$("#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,7 +344,7 @@ 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", {
@@ -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..735741b64 100644
--- a/assets/static/unsee.js
+++ b/assets/static/unsee.js
@@ -1,5 +1,10 @@
-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;
@@ -10,8 +15,7 @@ var Unsee = (function(params) {
errors: '#errors'
};
-
- init = function() {
+ var init = function() {
Progress.Init();
Config.Init({
@@ -36,13 +40,11 @@ var Unsee = (function(params) {
});
};
-
- 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
@@ -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,8 +78,7 @@ var Unsee = (function(params) {
updateCompleted();
};
-
- handleError = function(err) {
+ var handleError = function(err) {
Raven.captureException(err);
if (window.console) {
console.error(err.stack);
@@ -94,16 +93,14 @@ var Unsee = (function(params) {
}, 500);
};
-
- upgrade = function() {
+ var upgrade = function() {
renderError('reloadNeeded', {});
setTimeout(function() {
location.reload();
}, 3000);
};
-
- triggerReload = function() {
+ var triggerReload = function() {
updateIsReady();
$.ajax({
url: 'alerts.json?q=' + Filters.GetFilters().join(','),
@@ -144,7 +141,7 @@ 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
@@ -160,15 +157,13 @@ var Unsee = (function(params) {
});
};
-
- updateIsReady = function() {
+ var updateIsReady = function() {
Progress.Complete();
$(selectors.refreshButton).prop('disabled', true);
Counter.Hide();
};
-
- updateCompleted = function() {
+ var updateCompleted = function() {
Counter.Show();
Filters.UpdateCompleted();
Progress.Complete();
@@ -177,8 +172,7 @@ var Unsee = (function(params) {
$('body').css('padding-top', $('.navbar').height());
};
-
- pause = function() {
+ var pause = function() {
Progress.Pause();
Filters.Pause();
if (timer !== false) {
@@ -187,8 +181,7 @@ var Unsee = (function(params) {
}
};
-
- resume = function() {
+ var resume = function() {
if (Config.GetOption('autorefresh').Get()) {
Filters.UpdateCompleted();
} else {
@@ -202,8 +195,7 @@ var Unsee = (function(params) {
timer = setTimeout(Unsee.Reload, Unsee.GetRefreshRate() * 1000);
};
-
- flash = function() {
+ var flash = function() {
var bg = $('#flash').css('background-color');
$('#flash').css('display', 'block').animate({
backgroundColor: '#fff'
@@ -214,7 +206,6 @@ var Unsee = (function(params) {
});
};
-
return {
Init: init,
Pause: pause,
@@ -227,7 +218,6 @@ var Unsee = (function(params) {
})();
-
$(document).ready(function() {
// wrap all inits so we can handle errors
diff --git a/assets/static/watchdog.js b/assets/static/watchdog.js
index 3ca7097e7..b748420fa 100644
--- a/assets/static/watchdog.js
+++ b/assets/static/watchdog.js
@@ -1,5 +1,9 @@
-var Watchdog = (function() {
+/* globals moment */ // moment.js
+/* globals Config, Counter, Templates */
+
+/* exported Watchdog */
+var Watchdog = (function() {
var selectors = {
countdown: '#reload-counter'
@@ -7,15 +11,13 @@ var Watchdog = (function() {
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
@@ -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..043dd0dbf 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\xeb\x6f\xdc\xb8\x11\xff\x9e\xbf\x62\xee\x1a\x40\xda\x8b\x2c\x39\x08\x9a\x16\xeb\xee\x01\x6e\x0e\x0d\x8c\xe6\x1a\xc0\x8e\x3f\xb9\x81\x41\x8b\xb3\x2b\xc6\x5a\x52\x20\x47\x5e\x6f\x03\xff\xef\x05\x1f\x92\xa8\x87\x93\x5c\xd1\xfd\x60\x4b\xe2\x3c\x7e\x33\x1c\xce\x83\x45\x01\x5f\x4c\x25\x24\x01\x9a\x07\xd4\x46\x28\xb9\x86\xb7\x2f\x5e\x14\xbf\xc0\xae\x56\x77\xac\x36\xf0\xe1\xf2\xfa\x77\xd6\xc0\x2f\x05\xd8\x5f\x51\x40\xad\xdb\xfc\x8b\x89\x49\xf6\x6a\x8f\x92\x22\x12\xff\xc1\x52\xc5\x64\xe7\x2d\xa9\x52\xed\x9b\x1a\x09\x33\x78\xa7\x6a\xa5\x8d\xfd\x2f\xb7\x62\x67\xff\xb7\x92\x50\x67\xf0\x5e\x0b\x9e\xc1\x27\xdc\x37\x35\x23\x34\x19\x5c\xb5\xfb\x3d\xd3\xc7\x0c\xae\x2f\x32\xb8\x96\x06\x11\x7e\x29\x9c\x64\x7c\x6c\x94\x26\xe4\x70\x5e\xa3\x26\x63\x3f\x3f\x30\xdd\xbd\x6d\x20\xdd\xb6\xb2\x24\xa1\x64\xba\x82\xaf\x2f\x5e\x58\x74\x76\xdd\x88\x1a\x65\x89\x96\xe2\xeb\x53\xe6\x3e\xdb\x5f\xcd\xee\xb0\x7e\xc7\xca\x0a\x61\x03\x12\x0f\xc1\xf4\xf4\xf5\xe9\xe9\xe9\xea\xcc\xb3\x97\x35\x33\xc6\x2b\x78\xaf\x55\xdb\xc0\xd7\x9e\xbd\x54\xd2\x90\x6e\x4b\x52\x3a\xdd\xd9\xb5\xdf\x18\xb1\x55\x44\x60\x7f\x2f\x73\x7c\x24\x94\x3c\xa5\x4a\x98\x0c\x06\xba\xb3\x9e\xec\xe9\x45\xff\x78\x89\x92\xa3\x4e\xa7\x42\x34\x52\xab\xe5\xe0\xa2\x3c\xd0\x25\xac\xc7\x95\x64\x13\x1e\xfb\x73\xda\xd6\xe0\x54\xcf\x16\x3b\xa7\xac\xfb\xa7\x05\x1a\x62\x24\xca\xdb\xd2\x6e\xdd\xad\x73\xd7\x3a\xec\x63\xfe\x1e\xe9\xca\xad\x7e\xb0\x9f\x4d\xba\x9a\x73\x3b\x74\xb7\xb5\xd8\x0b\x5a\xc3\x9f\x47\xcb\x4f\xcb\xf6\x17\x05\x94\xac\xae\x91\x03\xdb\x12\x6a\x6f\x00\x1c\x98\x01\xed\x2c\x46\x0e\x5b\xa5\x81\x2a\x84\xad\xd0\x86\x80\xc4\x1e\x7b\xee\x73\xce\x91\xcf\x9c\x77\x7d\x91\x5f\x21\xb5\xcd\xb0\x87\xd7\x17\xe9\xcb\x34\xf9\x53\x02\xaf\x9c\x6b\x72\xc1\x57\xcb\x70\xae\x1b\xce\x08\x67\x12\x8b\x02\x2a\xc1\x11\x1a\xd5\x28\x7b\x88\x40\x48\x27\xc8\xc3\x1d\x6f\xff\x58\x0f\xbc\x82\x04\x6e\x38\x23\x76\xe2\xbc\x79\x42\xc7\x06\x37\x3f\x6f\x45\x4d\xa8\x7f\xfe\x9c\xac\xf2\x20\x33\x4d\xac\x86\xa4\x8b\xc2\x48\xb3\xc6\xbd\x7a\x40\x60\x75\x0d\x58\xa3\x3d\x76\x06\x1a\x2d\xac\x57\x94\x0d\x49\xb2\x27\xb3\x75\xc0\xed\x97\xa6\xd5\xbb\x40\xfd\x60\x57\x6a\x61\x08\xa5\x05\xcd\x24\x87\x4a\xa9\x7b\x33\x8d\x57\x56\x56\x33\xff\xe4\x5b\x21\x79\x9a\xe4\x0d\x93\x58\x9f\xdc\x29\x7e\xcc\x20\xbc\x54\xc8\xb8\x90\xbb\x64\x95\x41\x7f\xfa\x44\xe6\xc0\x4d\x1d\xe7\x3d\xe2\x56\x72\x6f\x47\x1a\x39\xbe\x8b\x8b\x6f\x39\x70\x95\x57\xb4\xaf\xd3\x97\xee\x38\x75\xc7\x60\x15\xbe\xae\x26\xc2\x66\xbc\xd6\xf1\x69\x52\x31\x53\x25\x99\xff\x6a\x9f\x17\x9c\xdc\xb4\xb5\x41\x17\x66\x77\x8c\xef\x9c\x23\x4d\xa5\x0e\x40\x15\xa3\x10\x94\x9d\xab\x6d\x70\x96\x15\x93\x3b\xe4\x19\x68\x6c\x90\x11\x08\x02\x3a\x88\x12\xbf\x1b\x0a\xbf\x06\x27\xf6\x0f\x9d\x37\xed\x07\xa7\x7a\x2d\xe4\xc9\x83\xc0\x83\xcd\x7b\x89\xdb\x06\x61\xaa\x74\x95\x6f\x19\xc7\x8f\x2d\xa5\x6f\x4e\x4f\xfd\xcb\x85\x1c\x9e\x97\x16\x66\x01\xfe\x34\xe4\x47\x8e\x86\xb4\x3a\xfa\x04\xb7\x19\xb6\xd1\x59\x7a\xf1\x5b\xbc\x8d\x9d\x15\x61\xe9\x7f\x08\xe8\xef\x4b\x22\xb5\xdb\xd5\xb8\x21\xa5\x6a\x12\x8d\x15\x12\x1e\x17\x84\x8c\xc3\xb5\x03\xfc\xff\x09\xd7\xe7\x43\x35\x4e\x5f\xb6\x7c\xe5\x97\x9e\x64\x8a\x23\x90\x3d\x9d\x45\xb5\x48\x69\xfa\x9d\x35\x7f\x3f\xfe\x13\x8f\xb1\xaf\xf7\xac\xf9\xa4\xae\x94\xa6\x18\x85\x65\xb8\xc7\xa3\x2d\x5c\x1f\xef\xbe\x60\x49\xb9\x7d\x8b\x68\x07\x18\x76\x21\xb7\xc2\x63\x9c\x9d\x42\xe4\xb0\x81\x9b\xcf\x33\xbf\x59\xa6\xb1\x1f\xee\xf1\x38\x75\x83\x17\x90\x37\xad\xa9\xd2\xf9\x79\xbe\xc7\xe3\xda\xfe\x99\xa7\xff\x07\x56\xb7\xb8\x86\x1e\xec\xcd\x3d\x1e\x3f\xcf\xc9\x08\x1f\xc9\x49\xb0\x11\xb0\x06\xeb\xbe\x31\xcb\xf3\x85\x23\x7a\x0e\x25\xd2\x63\x9d\x7b\xdd\x05\xe7\x39\x91\x36\xb1\xcf\x2d\x6c\x0f\x73\xea\x74\x47\x0f\x9b\x31\x2c\x47\x19\x25\x0b\x4b\xc8\x82\xcc\xa1\x97\xc8\x77\x48\xa9\x7b\x8d\xe0\x89\x2d\xa4\x9e\xf4\xa7\xcd\x06\x5a\xc9\x71\x2b\x24\xf2\x55\x87\xdb\xad\x45\xa2\x3b\xb1\x63\x7f\x7b\x57\x39\xd9\x63\x3f\xba\x2e\x65\x0d\x89\x87\xed\x4f\xa2\xcd\xf4\x0e\xf6\x50\xb0\xdf\x59\xb2\xd8\xea\xb1\x14\x43\xc7\x1a\xe3\x02\x1f\x93\x0e\x5e\x3f\x5b\x68\xa0\x72\xd3\x19\x9d\x79\xec\xf3\xad\x09\x26\x4e\x77\xa6\x6a\xf7\x4c\x8a\xff\xe0\x27\xb1\x47\x43\x6c\xdf\x8c\x76\x68\xba\x2f\x52\x1d\x60\x13\xda\xcd\x38\xd0\x6d\xe3\xe0\x92\xb0\xeb\x08\x9c\x1c\x8f\xce\xd8\xdc\x7d\x87\xa0\xb1\x66\x24\x1e\x70\x21\x73\xe4\x21\x73\x99\x1f\xc9\x09\x16\x84\x6b\x35\x03\x86\x2e\x47\xf8\xd2\xe2\x65\x84\x6e\xf8\xe2\xea\xe3\xed\x5f\xdf\x9e\xbe\x9e\x54\xa5\x38\xbc\xc8\xe4\x5b\xad\xf6\xff\x52\x87\x69\x21\xec\xe4\x86\x44\xd6\x41\x3c\x31\x0d\x93\x36\x21\xe2\xe3\x3c\xc8\x62\x3e\xeb\xed\x34\xf1\xe9\xd4\x9c\x90\xa0\x1a\x6d\xcd\x33\x39\xa9\x2b\xd2\x42\xee\x66\xd5\xd2\x5b\x76\xcb\x76\xae\x1b\x56\x87\x9c\x8b\xed\x36\x25\x93\x41\xb2\x17\xb2\x25\x34\xc9\x84\xc3\x06\x75\xe0\xf8\x1b\xbc\xf9\x56\xb1\x67\x9c\xfb\xd8\x4b\x34\x96\x28\xe9\xc4\xb5\x86\x49\x6f\x9e\x90\xa5\xe0\xf6\xbb\x90\x5c\x94\x8c\x94\x4e\xba\xb4\x1b\xf8\x2a\xc1\x39\xca\x29\x82\x27\x40\x5b\xa8\xbf\xd7\x65\xfc\x71\xdd\x03\xe0\x67\x14\x8f\x92\x50\x1c\x86\xdb\x9a\x99\x0a\xbc\x2a\xdf\x01\x9b\xb8\xe4\xe5\x31\x88\x6f\x15\xf7\x4f\xae\x08\x0e\x65\xfc\x0f\xbc\xcf\x0f\x99\xef\x07\xfb\x31\xa9\x0f\x72\xd6\x88\x4b\x34\x8d\x92\x66\x96\x01\x1d\x40\x37\xa3\xc1\x06\x4e\xc7\x25\xc5\x95\x37\x3f\x4d\x8d\x8d\x0f\x7d\xa7\x1f\x00\x87\xb1\x8b\x8b\x92\x80\x19\x10\x94\x18\x90\x88\x3c\xf4\xf1\xbe\xa9\x17\x72\xd7\xcb\x88\x26\xb5\x08\x5b\xde\x7d\x9e\x24\x5f\xe3\x07\x45\x3b\x4f\x05\x30\xbd\xa7\xfd\xe9\x8e\x65\x94\x7e\xde\x8c\xeb\x9d\x3b\x40\xb7\x2e\xc9\x75\xab\xab\xd9\xf8\x66\xe5\x3c\xcb\xfb\xc0\xea\x0c\x2a\x41\x53\x3e\x67\xcb\x80\xee\xa6\xd7\x34\x54\x93\x5e\xc0\x67\xd8\x38\x11\xf3\x4e\x78\xe9\x39\x0c\xc7\x79\x98\x4d\x22\x25\x71\x20\x2e\xd8\xef\x37\x6d\x9c\xe1\x9e\x1d\x5b\xfb\x08\xe8\x7a\x42\x3b\x1e\x0f\x13\x54\xba\x34\xc7\x42\x37\x71\x9a\x9b\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\x41\xb0\xe3\x5d\x3a\x08\x9a\xb6\x66\x57\x95\xcf\xae\xa3\xc8\xe1\x42\x93\x6b\xbf\x58\x6d\x70\x1c\xc3\x15\x93\xbc\xb6\x23\x93\x46\xc6\x8f\x80\x8f\xc2\x90\xed\xc8\xbd\x69\x53\x0f\x3b\x15\x17\x84\x7b\x3b\x01\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\xde\x0a\x0a\xf3\xca\x8c\xb1\xd7\xe1\xe6\x22\xf8\x69\x33\x36\xc2\x15\x39\x83\xe4\xa7\xa6\x05\xc5\x23\xe5\x76\x30\xf2\xf9\xc0\x0d\x46\xf6\xa4\x07\xc5\x66\x91\xd1\x2b\xee\x46\xee\xb3\x45\x9a\xe7\xe1\x74\x7e\x74\x2f\xcb\xcc\xdd\x9e\x93\x1e\x75\x71\x13\xf0\x15\x51\x63\xd6\x45\xb1\x13\x54\xb5\x77\x79\xa9\xf6\x05\x1d\xee\x4c\x71\xa7\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\xdb\x8b\x65\xec\x4f\x19\x84\x5b\xa9\xd9\xca\x8f\x15\xc4\x7e\x5b\x84\x81\x9d\x92\x98\x75\x43\x1f\x08\x9a\x11\xc7\xf3\x60\x3a\x8d\xcb\x05\x0c\x63\xcf\x3e\x8f\x6e\xb8\xbe\xb0\x5d\x4f\x57\x46\xba\xea\x70\xc0\x44\x23\x70\x25\x11\x0e\x82\xaa\x29\x30\x8e\x35\xda\xda\xf2\xdd\xd3\x32\xad\xc8\x21\xf6\x6c\x06\x9b\x9c\x61\x7b\x0a\xbb\x39\x7e\x71\x3e\x9a\xe7\x4c\x1e\x92\xe6\x74\x3f\x83\x18\x3f\x25\xf9\x0d\xed\x6f\x27\x96\x13\x79\x51\x00\x6b\x1a\x94\x3c\x42\x06\x42\x42\x59\xb5\x32\xba\x94\xb1\x67\xb2\x13\xee\xb3\x21\xfc\x0a\xa7\x53\xf5\x2e\x0d\x9d\x3b\x71\xe9\xcb\x9e\xde\x34\xb5\x28\x31\x3d\x75\xc1\xb3\xca\xbf\x28\x21\xd3\xe4\xdf\x32\x59\x4d\x7b\xbf\xe5\x0d\x1c\x5f\xcc\xb1\xfa\xc0\x8e\x06\x34\x6e\x35\x9a\x6a\xd6\x67\xf7\xa4\xf3\x86\x3e\x5d\xa8\x4c\x3f\xee\xd9\x67\x4e\xc7\x68\x97\xad\x93\x9c\x0d\x53\xe6\xf8\x0a\x3a\xbf\x44\x3b\xa5\x4c\x4c\x0f\xe3\x3b\xd7\x6c\xd6\x83\x5b\xa9\xfe\xb6\xda\x0e\x43\x1f\x1b\x87\x33\x71\x0d\x5e\xb2\x72\xf3\xd1\x6a\xe9\x58\xbb\x1b\xeb\xfc\x1f\x96\x6c\x76\xbd\x35\xbb\x84\x09\x46\x84\x19\x69\x10\xe6\xf3\xe0\x7a\xd4\xb9\x0d\xd3\xda\x55\x74\x89\xb0\x1e\x5d\x29\x0c\x34\xef\x91\x3e\xf4\x53\xef\x3a\x9a\x80\x7b\xc5\x4f\x2e\x36\xff\x1b\x00\x00\xff\xff\x7a\xb3\xc2\x65\x13\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\x26\x67\x80\xbd\x15\x56\x7d\x63\xe4\xf4\x2e\x31\x7a\x89\x59\xe3\xa9\x31\xc6\x98\x4b\x2f\x14\x43\xdd\x36\xdd\x6c\x77\x31\xbb\xa3\xc1\xcf\x6e\x9a\x99\xa5\x9b\x39\x66\x5c\xe5\x65\x86\xe2\xff\x2b\xfe\x5d\x5d\x54\x67\x97\xb0\x91\xfa\x56\x48\x0b\x6f\xa4\xd6\x55\xa3\x7b\x55\xc1\x65\x06\x00\x59\x06\xbc\xeb\x50\x34\x28\xaa\xf4\x83\x5d\xad\xb2\x4b\xc0\xc7\x4e\x1b\xc6\x0a\x5e\xf7\xac\x4b\xdd\x76\x12\x19\xe1\x32\x5b\x6d\x85\x99\xc7\x0a\x88\xeb\x5e\x95\x4c\x5a\xc5\x09\xfc\xb5\x5a\x01\x00\x38\x95\x08\x54\x6b\x1f\x26\x45\x0c\x05\xcc\x18\x38\x5c\x62\x9e\x58\xe1\x43\x60\x36\xf6\x3a\x77\x55\x82\xfb\xf6\x67\x7d\x87\x8a\xfe\x44\x93\x07\xc2\x94\x9f\xa2\x36\x7d\x68\x88\xd1\x76\xa2\xc4\xab\x19\x7d\xdf\xa3\xd9\xfd\x6f\xda\x60\xab\x19\x73\x98\x3b\x72\x57\x6f\x64\x0e\x51\xb8\x8e\xf4\x83\xd5\xea\x2b\x46\xd3\x16\x9f\xfc\xf8\xcb\x37\xef\x7e\x8b\xae\x3e\xa2\x1e\x48\x56\xa5\x30\x55\x0e\xd1\x49\x8d\x11\x8c\xdf\x53\x4b\xfc\x66\x97\x43\xc4\x8d\xd1\xcc\x12\xcf\x09\x7f\x15\xc4\x39\x7c\x71\x7d\x3d\x93\x0c\x73\xc2\xf6\x75\x4d\x25\xa1\xe2\x1c\x3e\xfb\x7c\x7a\x34\x24\xeb\xf1\xff\x10\xec\x9c\x41\x8b\xcf\xda\xba\xb4\x94\x28\x4c\xbc\x90\x62\x83\x7c\xd4\x3c\x8b\xc9\x0c\x72\x6f\xd4\x51\x07\x85\xb9\x5c\xcb\x36\x64\x81\x2c\xf4\x16\x2b\x60\x0d\x1b\x54\xe8\x96\x0e\xf7\x3d\x95\x77\x50\x93\x64\x34\x16\x6a\x6d\x40\x8a\x5b\x94\xd0\xea\x4a\xc8\xc0\xc9\x5e\xfe\x1d\x29\xb6\xa1\x8f\x51\xfc\xfe\x0e\x77\x57\x7b\xee\xfd\x56\x48\xef\xcd\xa1\xcd\x01\xf9\xfd\x8f\xf5\x21\x4a\x35\x78\x0e\x8a\x02\xa2\xaf\x2d\x49\x54\x25\x56\x51\xb8\xae\x2c\x03\xcb\x82\xa9\x04\x49\x96\x41\xd7\x87\x5c\xce\xe4\x44\xec\x5f\x3b\x31\xa3\x22\xed\x7a\xdb\xc4\x3e\x6b\xc1\xa6\xc7\x28\x59\xff\x8b\xaa\x16\xd2\x06\xb2\x01\x50\x5a\x5c\x72\x4b\xaa\xa1\x5b\xe2\xff\x62\x77\x42\xce\xf9\x9d\x44\xe7\x0d\x7b\xd9\xb2\xe3\x99\x25\xbc\xef\x85\x04\xa1\x2a\x50\x5a\x7d\xba\xbf\xf3\xbe\x70\x8b\x66\xc7\x0d\xa9\xcd\x88\x2e\xbd\xcf\xaf\xfd\x25\x44\x45\x04\x2f\x83\x8d\x5e\x34\x38\x03\x2e\x3e\x22\x42\x73\x54\x03\x37\x68\x30\xb2\x30\xce\x0d\x20\xe5\x02\x87\x16\x9c\x7a\xd4\xe0\x06\x1f\xbb\xc0\x76\x27\x0c\x93\x90\x76\xca\xe5\x37\x69\x2b\x64\xca\xfa\x27\x36\xa4\x36\x71\x92\x92\xaa\xf0\xf1\x87\x3a\x8e\x20\x4a\xe0\x55\x01\xd7\xc9\x6c\x0c\xbd\x48\x51\x94\xcd\x32\x6a\x3b\x49\x3c\x82\x57\x41\xbf\x3f\xf5\xb9\xb3\x90\x1c\x4f\xb4\x93\x65\xfb\xdb\x57\x61\x04\xd7\xcf\x04\x2f\xce\x81\x43\x70\x37\x1c\xd7\x75\x2b\x64\x8f\xee\x8b\x17\x0a\x48\xb1\x2f\x26\x48\xb4\x16\x32\x68\xb5\xc1\xfd\x7b\x67\x55\x7c\x91\x92\xbd\xe9\x5b\x34\x54\xfa\xb2\x24\xf3\xaa\xb9\xcf\x7a\x2b\xe4\x6b\x27\xbc\x45\x03\x85\xdb\x10\x8b\x6f\x15\xc7\x4b\xbd\xb1\x4f\x7c\x41\xf6\x46\xdc\xc4\x01\x77\x94\xf5\x74\x15\x5e\x9d\xea\xba\x73\xd0\x97\xa7\xa1\x61\x75\xfc\xef\xe9\xf7\x30\x4a\xc7\x9c\xf3\x19\x7a\x78\xe2\x0d\xbf\x55\xee\xbc\x70\xe7\xb3\x3f\x22\xde\xb9\x99\x9f\xef\x47\xbf\x8f\x86\x33\x3c\x3f\x1e\xea\x5e\xf6\x6d\x38\x63\xf3\xf9\xc8\x9d\xac\x0c\x71\x92\xac\x57\xff\x04\x00\x00\xff\xff\xcc\xfc\xcf\x29\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\xeb\x57\x54\x76\xeb\x26\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\xb8\x06\xfc\xb3\x6d\x8d\xc5\x0a\xee\x5a\xd5\x1a\x82\xeb\xc5\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\x2b\x54\x54\x1c\xb1\xb4\x45\x21\xb9\xea\xed\x50\xc2\xdb\x18\xc5\xbe\x91\x54\xa8\x05\x56\x39\xd4\x5c\x11\xb2\x1c\x98\x72\xb8\xdb\x8a\xeb\x06\x0d\xcb\x26\xb1\xd6\x74\x01\x94\x3a\x21\x90\x28\xc2\x4a\xbd\x96\x2b\x69\x3f\x97\x38\x00\x4f\x67\xf6\xd8\x7d\x70\xa5\x6e\x5b\x71\x8b\x50\xc2\xd8\x1d\xdf\x90\x1f\xdc\xf2\x34\xb8\x9f\x18\xba\x38\x7a\x8b\xb3\x54\x0d\xda\x3b\xc5\x89\xc2\x64\x1b\xdc\x65\xf0\xc2\x55\x87\x61\x36\x87\xf6\x75\x41\x09\x1b\xdc\xc1\x0d\xb8\x4a\xe1\xa6\x47\x16\x23\x4e\xd6\xe0\x32\x40\x59\x02\xe3\x0a\x8d\xd5\xfc\x19\x59\x98\xc9\xfd\x0c\xda\xce\xe8\xe1\xa6\x5b\x23\x9f\xb9\xd9\xb1\x02\x60\xb1\x18\x5e\x0c\x04\x27\x84\xba\x35\x30\xa6\xe9\x0b\xc8\xe0\x75\x2d\xc5\x1a\x24\x81\x5d\x23\x78\x47\x5b\xf7\xa8\x91\x64\x0f\xa8\x08\x7d\x35\x91\x02\x96\x3e\xc5\x13\xfc\x57\x96\xd0\xe9\x0a\x6b\xa9\xb1\xfa\x47\x75\x53\x81\xc5\x14\x43\xaf\xd7\xf9\x03\x3d\x7a\x21\xfa\x00\xd7\x84\xf4\xfd\x6b\x4b\x5d\xb7\xec\x2c\xe1\x7b\x11\xaf\xdc\x68\xa9\x9b\x30\x68\xea\x49\x1f\xed\x4e\xe1\xc7\x4f\xba\x58\x38\x70\x2f\x0f\xa8\xb8\xe5\xd9\x81\x0e\x2b\xe0\x04\x82\x08\xc8\x67\x22\x6b\xa4\x6e\x22\x29\xd0\x81\xe2\xe2\x22\x7e\xfa\x5e\x74\xcb\x0d\xee\x4e\x7a\x0c\x57\x57\x10\x38\x97\xbe\x9a\x0f\xde\xc1\xcf\xfa\x20\xe0\x28\xae\x88\x70\x43\x31\x6c\xc5\xc5\xa6\x31\x6d\xa7\xab\x5b\x1f\x93\x83\x69\x56\x3c\x71\x32\x5d\x8a\xf9\xd1\x3b\x37\x58\x65\x10\x59\x1a\x83\xa8\x4f\x6c\x2b\xd5\xe1\x89\x89\xab\xed\x9a\x3f\xcd\x7f\xb7\x52\x27\x2c\x03\x96\xba\x41\x48\x0b\x60\x53\x15\xdd\x94\xc0\x26\xea\xa8\x5b\x6d\x87\x0a\xfc\xff\x91\xdb\x9f\x06\x56\x7f\xf8\x04\xdf\x7e\x76\xaa\x5b\x47\x3e\x39\xeb\x81\x3e\xa3\x91\x0f\x1b\x7f\x48\x72\x99\xb0\xff\xfd\x48\x11\x4b\xe7\x4e\x1c\x09\xeb\xd7\x6c\xdf\xd9\x5b\x2f\x48\xe7\xa3\xad\x92\x36\x61\xae\xaa\x33\x4a\x19\x4e\xc4\x89\x20\x27\x38\x93\xcb\xb9\xd4\xdf\x8d\xe1\xbb\x5e\xb1\x87\xb9\xba\x8f\x0b\x4f\xd2\x14\xbe\x96\xf0\x65\x8a\x4f\x4b\x1b\xd2\x04\x1f\x06\x0a\xf9\xce\x3e\x18\x50\x86\x36\x8a\x33\x1f\xaa\x3b\x86\x3f\x68\x69\x73\x4f\x76\x5c\xe4\xbf\xfc\x52\xce\x0f\xcb\xf9\x68\xbf\x47\x9b\x8f\x33\x19\x99\xfd\xe2\xcd\xc7\x15\x1c\xf9\xc2\xfb\xe6\xa7\x2f\x77\x44\x46\x1b\x27\x8f\xdb\x3d\x5e\x61\x9f\x26\x69\x31\xfb\x1b\x00\x00\xff\xff\x3d\x8a\x24\x67\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\xbb\x60\x92\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\x49\xb4\x9d\x74\xa8\x5e\x62\x89\xc7\xfb\xf3\xe3\xdd\x8f\x77\x49\x12\x74\x2f\x0a\x42\x25\x02\xb1\x06\x2e\x08\xa3\x29\x7a\x37\x99\x24\xaf\xd0\xb2\x64\x73\x5c\x0a\x74\x56\x92\x6a\xce\x30\xcf\xd1\xab\x04\xa9\x27\x49\x50\xd6\x7c\x8b\xef\x45\x4f\x96\xb1\xcf\x04\x44\x23\xa9\x65\xef\x45\x9c\xe9\xcf\x4a\xd6\x15\x3e\x27\xa5\x04\x2e\x22\xf4\x91\x0a\x80\x08\xfd\x59\x03\xff\x72\x2b\x39\xa1\x4b\xf4\x2a\xd1\xa2\xf0\x58\x31\x2e\x21\x47\x67\x8c\x2e\xc8\xf2\x43\x25\x09\xa3\x6a\x71\x8d\x79\xff\xdb\x0c\x85\x8b\x9a\x66\xea\x77\x38\x45\xff\x4e\x26\xca\x7a\x56\x62\x21\x10\xd3\x12\x67\xfa\xb7\x5d\xd0\x8b\x8c\x0a\xc9\xeb\x4c\x32\x1e\x56\x98\xe3\x95\x50\xfb\x90\xf3\xc8\x82\x88\xd8\x84\x84\x66\xc8\xc8\xd8\xf7\xd3\xb1\xa0\x76\xff\x5a\x09\x75\xc2\xdd\x37\xcf\x86\x5b\x28\x41\x59\xef\xc4\x9b\x2f\x1e\xe1\x0b\x90\x9d\xdc\x05\x48\x09\x1c\x7d\xfd\x8a\x7a\x31\xa3\xc1\xc3\x41\xd6\x9c\xa2\xa3\xb0\x67\x6e\x1a\x13\x11\xbe\x4c\xb3\x02\xb2\xcf\x90\xbf\x9c\xf6\x8d\x6d\xbd\x8e\x4a\xd7\xc7\x91\xed\x35\x2e\x7d\xe6\x47\x76\xe7\x8c\x49\x21\x39\xae\x6e\x37\x44\x66\x45\x18\x08\x89\x25\x04\x11\x3a\x8a\x2b\xcc\x05\xfc\x7e\xfb\xe1\x4a\x2b\x8b\x90\xe4\x35\x3c\xc1\xb3\xf7\x99\x3d\x7c\xeb\x9c\x7d\x1f\x00\xe3\xdb\x79\x49\x89\x13\x94\x7e\x3b\x04\xa7\xca\x39\x28\x41\x1d\xaf\x52\x71\x7a\x38\x60\x46\xc3\x40\xe8\x58\xcf\x0a\x4c\x97\x30\x44\x20\x88\x3a\x8b\xb0\x06\x2a\x23\xb4\x03\x4b\xf5\x28\xdb\xf1\x2d\x5e\x83\xc6\x68\x6c\xbe\x95\x79\xdf\x1d\xcb\x58\x6a\xbb\x1b\xd6\x6d\x57\x1c\x7f\x30\x9c\x8f\x40\x50\x00\x64\x35\xe7\x40\xe5\xdf\xb8\xb4\x30\xa8\x64\x0c\xa7\xa7\x93\x91\xe4\x5a\x8b\x58\x46\x88\x97\x20\x43\xa7\x9e\x06\x4e\x90\x05\x52\xee\xa2\x17\xb3\x19\xaa\x69\x0e\x0b\x42\x21\xf7\xe1\xd0\xe4\xa3\x27\xb8\xed\xd8\x85\x07\x34\x73\x59\x25\xbe\x56\x59\x16\x7a\x6c\x3f\x7c\x1a\x94\xf0\xdd\x33\x5c\x19\x6f\xde\xef\x99\x32\xe8\xc0\xf8\x62\xb6\xeb\xd0\x9d\x14\xf7\xc6\xeb\xd1\xdf\xa6\xc7\x40\x5d\x73\x0c\xa2\x7f\x0c\x3a\xdf\x22\x8f\x69\x78\xac\x08\x07\x91\xa2\xb7\xef\x7e\x8e\x46\xab\x15\x96\x45\x8a\x82\xa0\xef\xcf\x74\x94\x49\xf6\x8f\xe5\xa1\xce\xca\x15\x6c\x52\x97\x96\x8d\xf0\xe9\x64\xb2\x0d\xa7\x2a\x95\xc6\xcc\xdf\xe7\x7c\x3f\xdb\xab\x75\xa3\x54\xa0\x99\xae\xfa\xf6\x73\xc9\x70\x7e\xce\xd9\xaa\xb9\x9f\x66\xfe\x4a\x3f\x8a\x01\x67\x45\x68\x95\x38\xc5\x49\xf1\x0a\x22\xab\xdc\x57\x15\x6b\x5c\xd6\xea\x8e\x30\x12\xb1\xa9\x1e\x6f\x8a\xd7\x70\x38\xb3\xac\x16\x9b\xe6\x63\x22\x9c\x0c\x21\x77\x43\xe5\x20\x34\x5d\x7b\x03\x4c\x12\x9d\x54\x88\x08\x44\x99\x54\xec\x27\x11\x5b\xb4\xa8\xad\x70\x35\x19\x66\x0c\x87\x15\x5b\x43\xf8\x32\x87\x05\xae\x4b\x69\x2e\xed\x78\xfd\xc6\xbd\x38\xbe\x09\xb7\x81\x01\x1b\xf4\x88\x1e\x7c\x31\x12\x43\xde\xad\x99\xee\xfa\x76\x23\xcd\x58\xf5\xa5\xe1\x2b\xb4\xd0\x7e\xa3\x79\x2d\x25\xa3\x08\xeb\x7d\xad\x30\x85\x4d\xd7\xe6\x84\xed\x45\x5f\x7d\x69\xa8\x7c\x58\x22\x12\x1e\x65\xea\x70\x77\x09\xab\x5d\x37\xc6\x1c\x0b\xf8\xc8\x15\x15\x7e\x2a\x59\x86\x75\x90\x15\x67\x92\x65\xac\x8c\x50\x90\x24\x41\x84\xda\x85\x82\x09\xe9\xbc\xaa\x3a\x53\x10\xde\xc5\xf7\x8c\xd0\x30\x08\x3c\x7c\xae\x79\x4e\x51\x8f\xb2\x10\x3c\xcc\x02\xf4\xba\xe9\xac\x14\x35\xdb\x9f\xe1\xd4\xaa\x88\x82\xe9\x9d\xe7\xe6\xfa\x96\x03\x6c\x1e\x6d\x3d\xae\x6a\xd1\x28\x70\x5b\xa1\xd7\x28\xd0\x2e\xd9\x15\x7d\x59\xc4\x92\x19\x42\xd6\xd5\x3e\x54\x37\xbc\xa0\xb4\x7f\x06\xe2\x78\x41\x28\x11\x45\x38\x8d\x17\x38\x87\x0f\xb5\x0c\x7f\x3a\x39\x31\x2f\x97\x34\x7c\x7b\x72\xe2\xd9\x6a\xc9\xa7\x39\x86\xd7\x28\xf8\x4d\xf9\x63\x9c\x36\x98\xfc\x38\xc4\xb5\x5f\x61\x6e\x4e\x09\xbc\x06\x24\x40\x4a\x42\x97\x62\x47\x36\x1d\x35\x19\xa4\xc8\xb8\xdf\x0c\x64\x25\xc9\x3e\xbb\xb7\xbe\x8f\x4c\x6c\xaa\xce\x0e\x1c\xe3\xe9\x4e\x82\x0f\x86\xb5\xaa\x2c\xea\xdf\xdf\x81\xea\xf7\x44\xfc\x8c\xd3\x1a\xe2\x6c\x58\xec\xa9\x40\xdf\x28\xe9\x67\x22\x6d\x6e\x12\xb3\x75\xc8\xd5\x6e\xcf\x70\x63\xe8\x29\x78\x18\x22\xde\x56\x29\x87\x72\xc0\xf7\xc3\x68\x0a\x29\x2b\x91\x26\xc9\x92\xc8\xa2\x9e\xc7\x19\x5b\x25\x72\x33\x17\x49\xdb\x0e\x26\x44\x88\x1a\x44\xf2\xe6\xe4\xd7\x5f\x9c\xf0\x72\x96\xd5\x2b\xa0\xb2\x1f\x52\x10\xe7\x9c\x55\x39\xdb\xd0\xe3\x15\xd0\xba\xff\x76\xbc\x60\x7c\xd5\xeb\x2b\x87\x81\x43\x2c\x24\xab\xae\x39\xab\xf0\x12\x1b\x68\x76\x78\x6e\x21\xba\x82\x8d\x19\xb2\x42\x1f\x81\xa7\x28\xc0\xb5\x64\x37\xb0\xe0\x20\x8a\x20\x1a\x03\xa9\x89\xc0\x8a\x71\xaf\x58\x73\x74\x29\x0a\x7e\xd8\x2d\x65\x3a\xa1\xf4\xe0\xdc\x61\x6f\xda\x5d\x74\xa5\xa7\xcd\xf8\x1f\x4c\xe4\x39\xe3\x57\xf0\x28\x6f\x46\xe7\xd7\xa2\x81\xa0\x14\xb0\x57\xcf\x35\xae\xc7\x2d\x25\xea\x71\x08\xda\xcd\x28\x4f\x45\xd8\x02\x72\x49\x25\xf0\x35\x2e\xf7\xa1\x7c\x18\x61\x2b\x71\x4c\xfc\xda\xd4\x2c\x94\x7e\x8f\x49\x28\xd3\x33\xd0\xbe\x9a\x74\xf5\x9b\xf1\x41\xcf\x33\x17\xe3\x0a\x6d\x9e\xef\x34\x13\xf5\x11\x31\xe3\xf6\x01\x4c\x76\x0d\xdb\x6b\x5c\x0e\x9d\xdf\x0e\xcf\x66\xa0\xfe\xa9\xf3\xb4\x52\xad\x07\xe7\x4b\x6a\x06\xa2\xfd\x76\x9e\x5a\x3f\x26\xb1\x6f\x41\xda\x9a\xbe\xc1\x12\xf6\xdb\xe9\x27\xf7\xb3\xb3\x5b\x14\x6c\x73\x5e\xe2\xfd\xec\xb1\xf0\x08\xb8\x59\xad\x94\x1c\x1b\xa1\xff\xc9\x66\x55\x05\x34\xff\x8b\x55\x7b\xb9\x4c\x0b\xc9\x91\x50\x8f\xc9\xb4\xcc\xb1\x12\x1a\x7b\xe4\xb6\xb3\xb4\x71\xc9\xdf\xd3\x36\x7b\xbb\xf9\x06\xcd\x4c\xcb\xea\xfc\x03\x4c\xc5\xd5\xec\xe9\x4e\xc7\x76\x5d\xaa\xa4\xc3\xd1\x67\xf1\x69\xd4\xae\xdd\xb5\x33\xcc\xb8\xe9\x5e\x82\x1c\x7b\xf9\xd0\x6e\x75\x3d\xb5\xb5\xd0\x98\xe9\x84\xee\xfa\x6a\x47\x83\xa1\xe1\x1e\xd5\xde\x47\xbd\x7f\x45\xa4\xc3\x09\xae\x5b\xd6\x17\x78\x6a\x1a\x86\xc8\x9d\x30\x8d\xb3\x69\x87\x6e\xb7\x7a\xd1\x84\x92\x76\x51\x0d\x66\xd0\xff\x02\x00\x00\xff\xff\x5a\x4e\xc9\x0b\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\x9c\x3e\x14\xc7\xf7\x73\x8a\xa7\xfc\x7e\x12\x30\x6a\x20\x55\x76\xa4\xa8\x8b\xa8\x55\xbb\x8e\xba\xae\x3c\xf0\x18\xdc\x18\x7b\x64\x9b\x21\x52\x14\xa9\x97\x88\x72\x92\x4a\xdd\xf5\x2e\xb9\x40\xaf\x50\xd9\x38\xc6\x43\x86\x74\x9a\xf1\x0a\xfc\xfe\xf8\xf3\x7d\x7e\xb6\xb3\x25\xac\x99\x58\x11\xa6\xe0\x23\xd9\xd2\x52\xc0\x32\x03\x33\xb2\x0c\x6a\x3b\x91\x7e\x53\x8b\x45\xb6\x04\xbc\xd9\x08\xa9\xb1\x82\x4b\xd1\x71\x8d\x12\x96\xd9\x62\x4b\xa4\xff\x2d\x20\xae\x3b\x5e\x6a\x2a\x78\x9c\xc0\xed\x62\x61\xb2\x18\x07\x85\x0c\x4b\x2d\xa4\x82\x02\x6e\xed\xac\x19\xe5\x10\x96\x43\xf4\x1f\x61\x28\xf5\xa9\x9d\x88\xde\x78\x07\xb5\xa1\x9c\x0f\x0e\xee\x33\xb2\xb6\xbb\x8b\x31\xf5\x40\xc8\xa1\x80\x9a\x30\x85\x17\xe1\xa2\x7a\x04\xf3\x5c\x5b\xc2\x92\x80\xc1\x85\xa7\x2b\x52\xad\xd1\x1a\x2f\xbc\xcd\x45\xa7\x57\x8d\xe8\xe3\x60\xfe\xff\xd8\xeb\x49\x9d\x86\x24\x6d\x74\xcb\x26\xf1\x59\x66\x18\xc0\x6a\x1b\xc4\x42\xa9\x14\xac\x88\xc2\x0a\x04\x07\xdd\x20\xf0\xae\x5d\xa1\x04\x51\x0f\x6e\xca\x07\xd3\x1a\x4c\x3a\x28\x8a\x02\xce\x42\xe2\x59\x02\x89\xad\xd8\xe2\x25\x23\x4a\xc5\x91\xc6\x1b\x7d\xda\x13\xc9\x29\x5f\x83\xfd\xa9\x08\x5f\xa3\x8c\x92\x94\x54\x55\xe8\xa4\xba\xb2\x44\xa5\xa2\x00\xdc\x8c\x4a\x94\x5d\x8b\x5c\xa7\x9a\x6a\x86\x50\xc0\x49\xfc\xf8\x70\xff\xf8\xfd\xd7\xe3\xc3\x7d\x72\x32\xfa\xde\x01\x32\x85\x1e\xf7\x1d\xbc\x7d\x2d\xad\x03\x79\x99\xd6\x49\x3a\x8c\xf6\xeb\x7e\xd6\xe3\xe9\x3c\xc5\x14\xef\x09\xfb\x10\xba\xdf\x3f\x7f\x4c\xf9\x9e\x75\xb7\x42\xfd\x85\x5f\x73\xd1\xf3\xb0\x87\xe7\x1b\x38\x7a\x1f\x1d\xd5\xc0\xbb\xf1\x47\x94\x06\xf6\x94\x23\x14\xd6\xd0\x0a\xe7\x24\xed\xc7\xa3\x15\xce\x69\x70\x97\x43\x92\x96\x0d\x65\x95\x44\x1e\x4f\x30\x9d\x83\x27\x7d\xfa\x47\x29\x85\x9c\x53\xec\xb3\xaa\xa0\x7c\x3b\x9b\xd3\x88\xfe\x10\x0d\x3e\xd1\x4b\x1a\xbc\xd0\xb9\xd5\x5a\x22\xaf\x3f\x18\xde\x7f\x5a\xf2\xc0\x8a\xec\x74\xf2\xde\xea\x4c\x51\xae\x5c\x29\x5f\x09\xf3\x7c\xb5\xc9\x3d\x14\xae\x47\x39\xd5\x7f\xe9\x7f\x28\x80\x63\xef\x1e\xb0\x78\xf7\x84\x13\x4e\x5b\x62\x02\x73\x88\xb8\xe0\x18\xbc\x30\x66\x6c\x84\xa2\xce\xda\x6d\x26\xb6\xd5\xfa\x52\x30\x61\x5f\xa0\xf3\xf3\xf3\x89\xd1\xb4\xb8\x37\xd7\xf5\x59\x34\x1e\xe4\x3d\x87\xd0\x9d\xe3\xe9\xd6\x4a\xd4\x9d\xe4\x81\xa0\xcf\x9c\xea\xdc\x4a\x1e\x57\xbb\x42\x9d\x07\xef\xd9\x68\x70\x49\xf3\xe0\xa2\x18\x8d\x9f\x68\x85\xb9\x3d\x69\x41\xa6\x46\xf4\xb9\xed\xdc\x71\xce\x76\x55\x3e\x36\x58\xe0\x3d\xec\x49\x1e\xee\xb8\xa7\xbf\x4b\x8c\x96\x3f\x01\x00\x00\xff\xff\xee\xd9\x95\x7c\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\x93\x43\x21\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\x88\x06\xa4\xfa\x16\x8c\xb4\xb6\x51\x08\xdc\x74\x32\x83\x40\x8b\x2e\xd0\x04\xe4\x33\x59\x75\x5a\xde\xa1\xf1\xaf\x41\x18\x5d\x4a\x2e\x02\xb2\x22\xe1\x44\xa5\xc2\x52\x52\x06\xb4\x44\x65\x74\x47\x70\x31\x1b\x7d\x70\xb4\x60\xe1\x9a\x5c\x70\x73\xec\x92\x2d\x9d\xd3\xf2\x53\x13\x7c\x03\x8d\x4d\x5c\x74\xc1\x1c\x35\x0c\x61\x64\x7d\x11\x10\x86\x19\xad\x4b\xb3\xae\x35\x32\xe2\x42\x86\x64\xb4\xd4\x48\xe0\xeb\x57\xf8\x06\xb1\x04\x9c\xd8\x34\xd6\xac\x85\x35\x2a\xa8\xa8\xd6\xc8\xe0\x87\xcf\x49\x73\x0e\x68\x67\xc1\x71\x00\x8f\x6e\x00\xc9\xa2\xfa\x3d\x2d\x83\x41\x78\x1c\x00\x4b\x8d\x73\xa5\x42\xce\x74\xad\x20\x2d\x30\xbd\xb2\xf6\xb8\x46\x28\xe8\x1e\xc1\xdf\xc2\xe7\x34\xa4\xae\x98\xdc\x8d\xc9\x17\x9c\x28\xb7\xae\xf7\xf2\x8d\xcb\xa3\xfd\xf3\x69\xe0\x5a\xd3\x4f\x4f\x48\x12\xa8\x05\xc3\x8c\x0b\x64\x4b\x99\xd9\x80\x6f\xa0\xac\xac\xf1\x7c\xe5\x6b\xc1\xce\x04\x1e\x64\xb6\xb1\xd7\x7c\xe5\x3a\x9e\x66\x27\x77\x84\xd6\x27\xaa\xac\x96\xf1\xcf\x48\x57\x25\x37\x2e\xda\xfb\x43\x8f\xf9\x8f\x8c\x99\x88\x27\x6e\xa9\x82\x98\x8b\xaa\x36\x24\xb4\x35\x4f\xbb\xf7\x60\x6c\x22\x73\x5b\x21\x2d\x90\xb2\x4b\x1d\x2f\x58\x6f\xc7\xc5\xcf\x28\x72\x53\xc4\x70\xb6\x9a\x51\x0b\x2e\x4c\x0c\x46\xd5\x38\xa7\x95\x7c\xc7\x4d\x0c\x67\xcf\xe7\x24\x41\x77\x18\x03\xa1\x83\xce\x43\xe6\x5c\x5a\xd6\x2a\xc5\x78\xd4\xa0\xa2\xe1\x47\x10\xde\x53\xd5\xa0\x2f\xfd\x73\x93\x8f\xeb\xbf\x37\xe7\xc4\x02\x4b\x06\xef\x0d\x49\x28\x63\xa4\x13\x1d\xfb\xbe\xed\x4a\xc1\x8c\x7a\x18\x56\xaf\x25\x05\x52\x04\x84\x1b\xdc\xbd\x66\x0c\x19\xd8\xb7\x0f\xb8\x93\x7b\x74\xba\x5a\xc8\xb8\x47\x31\x6b\x44\x6d\xd5\xbc\x18\x54\xcd\x17\xd3\x4c\xa6\x8c\x81\x6f\x27\xe0\xfb\x8d\x04\x81\xd7\xb6\xed\xcc\x92\xcd\xa9\x89\x6c\x8c\xb8\x4a\xd6\xc1\x22\x4b\x99\xd6\xdd\xb9\x91\xb2\xcc\x77\x36\x9e\x3b\xad\x30\x30\x73\x26\xd3\x5a\x93\x49\xd1\xd7\x46\x56\x70\x5d\xa0\x68\xea\x21\xd7\x36\x92\xb9\xc8\x81\x0b\x30\x05\xb6\x25\x68\x4b\xd5\x28\x33\xb6\x52\x1a\x6d\x14\xad\xd6\x9d\x02\x9b\x1c\x4e\x74\x92\x19\xda\x50\x65\xe2\x7b\x4c\x3e\x36\xd4\x15\xde\x9e\x4b\x86\xf0\x9f\x04\xfe\x0f\x8f\x1f\xc3\xec\xef\xd9\xff\x42\xdf\x98\x7e\xa3\xb5\xc6\xa9\x7b\x0e\xab\x09\x02\x59\x7d\x37\x00\x7f\x52\x6e\xde\x4a\xf5\x0b\xde\x98\x71\x93\x3c\x02\x86\x61\x49\x6f\x63\x38\x7b\xf6\xec\xd9\xb2\x17\x37\x1b\xc8\xf8\x0d\x6c\x25\xbb\x85\x8a\x32\xe6\x9c\x91\x81\x40\x64\xc8\x56\xe0\x6c\x0d\x3b\x9e\x17\x06\x50\xb0\xba\x82\x5a\x5b\x96\x9d\x54\x08\xa6\xa0\x02\xce\xa0\xe4\x02\x1f\xe0\xae\x2d\x17\x2c\x38\x7d\xf3\xeb\xfb\x8b\x7a\x6b\x14\xe2\x7b\xc9\x78\xc6\x91\x9d\xae\x96\xdb\xb9\x3f\xcd\x22\x23\x61\x94\x6a\x1d\x10\x0f\x70\x6d\x64\x45\x56\x4e\x95\xa0\xfb\x2d\x55\x24\x8c\x0a\xb4\x18\x83\x70\x92\xb3\x83\x83\x1c\x8e\xc8\x98\x75\x0b\x48\x8a\xe0\x34\x2d\xa8\xc8\x11\xae\xf0\xb6\x52\xa8\xf5\x77\xc5\xb2\x5c\xec\x1b\x20\x44\xa1\xe6\x7f\xe1\xb0\x58\x84\x43\xf5\x9b\x0d\x14\x34\xbd\x82\x4c\x2a\xeb\x2f\xeb\x82\xd6\x5b\x9a\x8b\x14\xbd\xa3\x52\x2a\x20\x57\xf2\x1a\xa8\x60\xe0\xef\xd6\xa0\x39\xf9\xb7\x2f\x32\x9c\xca\xf2\xae\x74\x1d\x9b\xcd\x14\x9a\x5a\x89\xfb\x6a\x86\x2d\x3e\x9a\x2c\x8c\x7d\xcd\xb0\xe8\xea\xd4\x48\x45\x73\xc6\x1b\x6a\xe8\xc2\xe2\xd0\x13\x1f\xd4\x35\x66\xdb\x46\x33\xa2\x8f\x76\x8e\xcb\xc5\x9d\xa3\xcd\x66\xb7\x41\xf8\x49\xa0\x59\x39\x92\xa4\x5d\x1d\x9a\xd1\xa3\x1d\xfa\x49\xb8\x74\x06\xf4\x9b\x46\x61\x76\x65\x7b\x54\xc1\x8d\x8e\x8c\x6c\xa6\xed\x91\x33\xa6\x00\xbc\x00\xd7\x7f\xd0\x92\x33\x37\x65\xd9\x36\x7f\x4c\xd7\x40\x5f\x45\x15\x0a\x13\x84\x11\x65\xec\xdc\xae\x35\x01\x29\xe9\x16\xcb\x35\x17\x99\x24\x61\xa4\x5c\x33\x1b\x51\x98\x8d\xae\xd9\xf8\xd4\xc5\xc9\xd2\x48\xfa\x2d\x8a\xdb\xe3\x97\x54\x37\xa0\x8e\x28\x9e\xfd\x1d\xff\x39\x2c\x54\x88\xc9\x66\xfa\xb6\x9d\x21\x8f\xaf\xa6\x0f\x19\x31\x06\xbb\xe4\x50\x81\x46\xd3\xae\x61\xcb\xd9\xb2\xd9\xc0\x9e\xeb\x9a\x96\x6e\x52\xb3\x55\xd6\xf8\x35\x09\xec\x16\xd6\xe4\x02\x32\x60\xb5\x9b\x02\xda\xb1\xdd\x65\xfb\xc9\x1c\x9f\x5d\xc0\x27\x56\xcc\xe8\x5a\x23\x55\x69\x01\x19\x5d\x57\xb6\xa7\x91\xa1\x03\x32\xba\x4e\xb9\x4a\x4b\x5c\xcb\xb5\x90\xa6\x61\xd3\x15\x17\x4b\xa9\xd9\xac\x8e\x6f\xa4\x38\xba\x7c\xde\x0f\x66\x59\xdb\x51\x70\x0d\xf6\x25\x30\x1a\x8d\x6b\xd1\xcb\x50\xfe\x09\x90\x56\xe7\x18\x89\x87\x37\x06\xe2\x6b\x5d\x6f\x80\x9f\x84\x9d\xa9\xed\x30\xdb\x37\xe7\xd7\x6d\x98\xc5\x7d\xc4\xf5\xd4\x7e\x16\x8c\xbd\x81\x7b\xda\xbb\x01\xad\x2f\xbc\x3d\xfd\xc3\xa0\x56\xc6\xa3\xca\xd9\xf3\xb8\x00\xc4\x73\x3f\x92\xb3\x78\xe0\xc5\x09\x13\x17\x79\x3c\x0c\xd9\x9e\xec\x0c\x1d\x77\x26\xef\x4c\x70\x70\x25\xea\xef\x00\x00\x00\xff\xff\x19\xcd\xf5\x98\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\xcf\x6f\xdb\x20\x14\xbe\xe7\xaf\x78\xd2\x26\xd9\x8e\xb2\xa4\x93\x76\xa2\xca\x61\xea\xa6\xae\xa7\x4d\xcb\x61\x67\x6a\x5e\x12\x24\x0c\x16\x3c\xa7\xcb\xaa\xfc\xef\x13\xe0\x1a\x93\x38\x6d\x39\xc1\xf7\x3e\x7f\x7c\xef\x07\x5e\xcd\x61\xa7\xcc\x23\x57\x0e\xee\x8c\xde\xca\x1d\xcc\x57\xb3\xd9\x6a\x0e\xf8\xb7\x35\x96\x50\xc0\xbd\x95\xc2\x83\x07\x6e\xe3\x7e\x0d\xe5\xb6\xd3\x35\x49\xa3\xcb\x0a\x9e\x67\x33\x00\x00\x1f\x75\xa8\xb0\x26\x63\x1d\xac\xe1\x39\xa0\x7e\x71\x85\x96\x1c\x83\xe2\x43\xdc\x15\x8b\x21\x24\x75\x2d\x05\x6a\x62\x50\x2c\x5f\xf6\xa3\xf0\xce\x4a\xb1\x91\xff\xd0\xfa\xb8\x3f\x7c\x72\xfe\xd4\x33\x4e\xb7\xe9\x66\x1f\x1c\x1d\xa5\x96\x04\x6b\xc8\x5c\x8e\x45\x61\x0d\x1f\xcb\xc1\xed\x32\xfa\xaa\x96\x0d\x77\x46\xdb\x63\x99\xc8\xc1\x24\x61\xb3\xe9\xb9\x2c\xe5\x38\x18\x5e\x64\xec\xda\xa8\xae\xd1\x7f\xa4\xa0\xfd\x98\x3c\xa4\x92\xb3\x5b\xb4\x35\x6a\xfa\x65\x9c\xf4\x46\x19\x90\xed\x30\xa7\x90\xe5\x3a\x46\xbf\x75\x96\x47\x56\x71\xb3\xfc\x32\xae\xa3\x5f\x7b\x29\x04\xea\x0d\x1d\x15\x32\xc8\x33\xf0\xcb\xb4\xbc\x96\x74\x64\x70\x93\x85\x4e\xb9\xc8\x41\x3a\xf9\xa8\xf0\x6d\x95\xcf\xb9\xca\x70\x3a\x55\xb7\x17\xcd\xa9\x15\x72\xfb\x5a\x3b\x86\xc2\x17\x16\x1b\x73\xc0\x62\x91\xb5\xe7\xa5\xd0\xd5\x84\xb6\x45\x61\xf9\xd3\xfb\xc4\x15\x3f\x9a\x8e\x8a\x49\x15\x7f\xed\x58\x05\x15\x36\xef\xb0\x19\x68\x97\x7a\xbc\x6d\x51\x8b\xd7\xf4\xe4\x16\xca\xf8\xde\x96\xf7\x48\x3f\xdb\x40\x2a\xe2\x77\x64\xda\xa2\xf2\x70\x59\x55\x67\x3d\x08\x36\x5a\x8b\x9e\x16\x35\x93\xa9\x1e\x46\x91\xfb\x0a\xde\x00\x95\xc3\x29\xad\x78\xe3\xb9\x54\x44\x27\x95\x2e\x72\xf5\xcf\xc3\x5d\x6b\x80\x45\xea\xac\x3e\xab\xde\x0e\xe9\x81\xb0\xf9\xae\xb0\x41\x4d\x6e\xaa\x21\x7b\x29\xf0\x9a\xe6\xd4\xcb\xf5\xfc\x72\x42\xc7\xed\xcd\xd5\xe1\x98\xd2\xf1\xfc\x73\x9d\x3e\x87\xf4\xe1\x83\x96\xc4\xc2\x3f\x26\x3d\x9e\x3b\x3f\xe3\x2c\x8e\x7a\x42\x7f\x48\x81\x2c\x24\x93\xb0\xcd\xde\x3c\xb1\x60\x2c\x61\xbf\xc3\x14\xb3\x7e\x9a\x13\xfe\x35\xf4\x81\xf5\xf3\x34\xe6\xfb\xf9\x63\xfd\xdc\x26\xdc\x97\xd5\xb1\xd8\x92\x21\x87\x53\xe5\x33\xfa\x1f\x00\x00\xff\xff\xc5\x35\xb8\x2c\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\xa7\x75\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\xd5\x48\x56\x15\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\x4d\x8f\xda\x30\x10\xbd\xf3\x2b\xa6\x68\x45\x12\x88\x92\xa5\x6a\x2b\x15\x1a\x71\xea\xa1\x52\xa5\x6e\x59\xed\x29\x4d\x25\x6f\x32\x10\x17\x63\x07\xdb\xe1\x43\x2b\xfe\x7b\xe5\x90\x84\x38\x8b\xaa\xf6\x50\x9f\xc0\x1e\xbf\x79\xf3\xe6\x79\x12\x8e\x01\x8f\x85\x90\x1a\x33\xf8\x5e\xa2\x3c\x3d\x6a\x49\xf9\x1a\xc6\xe1\x60\x4f\xa4\xb5\x15\x81\xbb\x2a\x79\xaa\xa9\xe0\xae\x07\x2f\x83\x01\x00\x80\x09\x2a\x88\x54\x08\x11\x58\xa7\x50\x2f\x13\xb0\x27\x52\x41\x04\x71\xe2\xb7\xdb\x66\xe5\x44\xe5\x73\x2b\x70\x07\x11\x64\x22\x2d\xb7\xc8\x75\xf0\xb4\xfc\x1a\xa8\x82\x51\xed\x3a\x0b\xc7\x8b\xa7\xc9\x35\x96\xae\xc0\xdd\xc1\x9b\x28\x82\x92\x67\xb8\xa2\x1c\xb3\x6e\x4e\xb3\x0c\xd4\xae\xb9\x3f\x72\xbc\xb9\x75\xba\x12\x12\x5c\x93\x91\x42\x04\xf7\x73\xa0\xf0\x09\x76\x01\x43\xbe\xd6\xf9\x1c\xe8\x64\xd2\x87\x6b\xf8\x1a\xd4\x98\x26\x0d\x70\xd4\x07\xae\x2b\x51\xb1\x09\x8e\xef\x93\x04\xa2\xea\x5e\xa0\x18\x4d\xd1\x9d\x7a\xc1\x2f\x41\xf9\x8d\x8b\xe7\xc1\xeb\x5f\x12\x75\x29\x79\x85\x77\x09\x3e\xcf\xaf\xaa\x97\x45\x46\xb4\x25\xfb\x06\x4f\x3e\xec\x09\x2b\xb1\xcb\x3e\x1c\x43\xae\x75\xa1\x66\x61\xb8\xa6\x4a\x07\x6b\xaa\xf3\xf2\x39\x48\xc5\x36\xc4\x63\x4a\xd8\x2e\x7c\xfb\xf1\xc3\xf4\xdd\xf4\xbd\xe9\x79\xb7\x19\xcf\x44\xe1\x93\x64\xa6\x71\x4c\xa4\xc4\xa4\x08\x0a\x29\xb4\x48\x05\xf3\xc1\x09\x43\xc7\x87\xf6\x20\x17\x4a\x77\xfe\x16\x44\xe7\x9c\x6c\x31\xa9\xcb\x75\x3c\xbb\xf5\xa5\x64\xb6\xb5\xda\xae\xb7\x10\x0a\x89\x4c\x73\xfb\x1a\xc7\xc3\x03\x91\x64\x0b\x11\x6c\xf0\x04\x13\x70\x22\x07\x26\x97\x9a\xed\xc8\xc2\x84\x19\xd3\x39\x0b\x13\xd1\x5c\xac\xf5\xab\x74\x09\xe1\xcb\x0a\x74\x8e\x30\xbc\xa4\x1a\x82\xba\xb0\xc1\x23\x55\x5a\xf9\xe6\x8c\xc3\x73\x49\x59\xd6\xc0\xad\xa4\xd8\x02\xd5\x96\x0f\xed\x52\xfa\xbe\x31\x42\x6e\xf0\xb4\xc4\x35\x1e\x21\x32\x3c\x60\x89\xeb\xcf\xc7\xc2\x75\xdc\xf8\xc7\x62\x94\x78\x86\x5e\x5d\x4c\xfc\x73\x94\x8c\x8d\x31\x2c\x88\x0b\xd1\x8a\x41\x4d\x0d\x08\x93\x48\xb2\x93\xdf\x98\xa0\x43\xe9\x36\xad\x60\x4b\x74\x9a\xbb\x0d\x13\xaf\x7a\x3b\xbc\x64\xec\x96\xcf\x5b\xed\x7a\x18\x12\x0b\x46\x52\x6c\x51\x7c\x18\xde\x4d\x87\x1d\x75\xfb\x96\x06\x64\x0a\xe1\xc5\x54\xf0\x4d\xe7\x28\x0f\x54\xa1\x0f\x24\xcb\x80\x6a\xd0\x02\x90\x67\x20\x56\xb0\x33\x39\x6a\xf1\xff\x96\x8c\x91\x6b\x64\x77\xd6\x4a\x7d\xe3\x35\x1d\x28\xcf\xc4\x21\xc8\xa9\xd2\x42\x9e\x9a\x6a\x1e\x35\xd1\xe8\xbe\x9c\x7d\x18\x0e\xfd\xd6\xf3\x93\x3a\xaf\xf7\xfa\xdd\x49\xdc\x8a\x7d\xff\xdd\xf5\x27\xde\xff\x7c\x3b\x66\xb2\x75\xdb\xf2\x60\xc6\xaf\xeb\xf5\xa6\x63\xbc\xc1\x53\xf2\xe7\x11\x99\x21\x43\x8d\x70\x09\xb5\xf5\xfb\x37\xad\x86\x0b\xe3\x82\xbb\xa0\xd2\xcc\xdd\x79\x1d\x2e\x67\x4b\xbf\x7a\xa0\x5d\x69\x54\xdc\x67\x97\x2f\xc8\xb5\xca\x47\xd4\xb3\xda\xda\xd7\xcd\x65\xa5\xfb\xac\xd6\xbf\x85\x3d\xbb\x26\xdd\xef\x00\x00\x00\xff\xff\xb2\xbb\xf8\x35\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\x46\x01\x49\xb1\xa2\xc8\x43\x17\x3a\xea\xe2\x21\x28\xba\x14\x69\xda\x25\x08\x02\xca\xba\x58\x82\x29\x52\x20\x4f\x4a\x8d\xc0\xff\xbd\xa0\x2c\xeb\x83\x8e\x8b\x74\xa8\x96\x38\xc7\xf7\x8e\x77\x7c\xf7\xee\xe6\x0a\xb6\x42\xa5\x5c\x18\x58\x2b\xa1\xb4\x09\xe1\x01\xcb\x4a\x70\x42\x03\x57\x37\xb3\xd9\xcd\x15\xe0\xef\x4a\x69\xc2\x0c\x7e\xd4\x65\xc9\xf5\xde\xc6\x1b\xae\xfb\x7f\x13\xf0\x5f\x6a\xb9\xa1\x42\x49\x3f\x80\xb7\xd9\x0c\x00\xc0\x02\xcc\x11\xb0\x1a\x22\x1a\x65\x86\x1a\x12\x98\x10\xa0\xfb\x2c\x82\x54\xf5\x4c\x7c\x6b\x20\x81\xc7\xa7\x55\x7f\xf4\x29\x42\xbe\xc9\xfd\x2e\x63\x38\xf0\x77\x21\x34\xe3\x1c\xf6\x3b\xe5\x88\xaa\xda\xe4\xfe\xf4\xcc\x7e\x92\x97\xc8\x60\x17\x9e\x1d\x34\x5c\x30\x68\x26\xe1\x43\x30\x14\x31\xfe\xdd\xdf\x61\x94\xa6\xa1\x7f\x1e\x42\xea\x96\x53\xbc\x80\xcf\xa3\x86\x0b\xf8\x02\xa9\xfd\x1b\x80\x46\xaa\xb5\x84\xe5\xea\x02\xf0\xd6\x01\x5e\xbf\x8b\xb4\x7d\xb4\x39\xed\x8f\x8f\x60\x6f\x5d\xac\x03\xed\xa2\xf1\xb8\xe5\x48\x63\x83\xda\xa0\x1f\x74\x3a\xf6\x4a\x5d\x54\x69\x78\x1b\x51\x6c\xd0\x8f\x43\x58\xc6\xc1\x48\xb3\x22\xb4\x64\xf7\x99\x6c\x4e\xc1\x53\x14\xcf\x3b\xb4\x43\x45\x7c\xdb\x16\x1b\x99\x4a\x14\xe4\x7b\x0c\xbc\xe0\x31\x7e\x5a\x5d\x20\xd9\x67\xbb\x40\x5a\x3a\x24\x0b\x32\xb4\x17\x08\x49\x37\xf5\xd1\x1d\x92\xdf\x5f\x1e\x0e\x29\x83\x73\xe6\x46\x98\x09\x6f\x2d\xb8\x31\x1f\x24\x77\x23\x69\xbb\x9f\x8e\xd5\xcc\x91\xa0\x37\x61\x74\xdf\x5a\xc6\xf7\x52\x8d\x7c\x97\xa9\x57\xb9\x56\x92\x50\x92\x17\xc2\x9b\xcd\xc8\xda\xbc\xa7\xd1\x3c\x8c\xcc\x56\xc8\x82\x2e\x59\xcd\xf4\xde\x7d\x3b\x8c\xf4\xf3\xbd\x48\xf2\x26\xe5\xfa\x3a\x47\x9e\xa1\xf6\x82\xa8\x52\x95\x6a\x50\x3b\x36\x22\x5d\x6c\xb7\xa8\x19\x78\xb9\x3d\xf5\xa6\x5e\xca\x50\xf0\x3d\x03\xd7\x79\x73\x93\xab\xd7\x39\x83\xcf\x71\xec\x7a\x6f\x9e\x17\x19\xce\x19\x2c\xe3\x78\x6a\xbf\x29\x70\xa3\x24\xf1\x42\xb6\x17\xa7\x2a\xdb\x3b\xf7\xe6\x54\x0a\x06\xa4\x6b\x9c\xc6\x2b\xc1\x37\x58\xa2\xa4\x96\x46\xa4\x4a\x87\x48\x05\x09\x64\xe0\x3d\xa8\xea\x28\x9f\xf1\xce\x2f\x6e\xf9\xc7\x0d\xe6\xb0\x3b\xb1\xd8\xdf\x64\xb3\x7a\x1d\x82\xb3\x5d\x32\x16\xac\xae\x32\x4e\x38\x96\x2c\xe3\xc4\xdf\x97\xcd\x9e\x9c\x67\xd0\x68\xf0\x1f\x35\x3f\x36\xe4\xbf\x53\x8e\x1d\xd5\x71\xae\xf6\x61\xbe\xf5\x13\xfe\xcb\xee\xa7\xe9\xf2\xb6\x0e\x3c\xa1\x60\x01\xd6\x7d\xb0\xe8\xd1\xc3\x9d\x76\x25\x75\xd5\x3c\x8a\x27\x48\x92\x04\x6a\x99\xe1\x4b\x21\x31\x73\xd7\xc2\x18\x37\xde\x57\x07\x40\x61\xf0\x22\x78\xb1\x18\x41\xcf\x5a\xdb\x22\xad\x55\x2d\xe9\xff\xb4\xd7\x79\x78\x28\x66\xfa\xb6\xdd\xf1\x90\xfb\xab\x2c\x88\xb5\x76\x1d\xe6\xea\x67\x3b\x0b\xac\x9b\x89\x21\x7e\x6f\x15\x66\x47\xa1\x87\xe8\xf7\xda\xe4\xac\x15\x6c\x88\xdd\x59\xdc\xa9\xd1\xbe\x80\x83\x1f\x04\xab\xd9\x9f\x00\x00\x00\xff\xff\x67\x4c\x3a\x03\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\xdf\x6f\xdb\x36\x10\x7e\xf7\x5f\x71\xc8\x0a\x48\x4e\x2d\x0b\x7d\x4d\x2c\x03\xdb\xd0\x0c\x05\xba\x3d\xac\xdd\xd3\x30\x14\x94\x78\xb2\xd9\x50\xa4\x40\x9e\x9c\x06\x85\xff\xf7\x81\xa4\x2c\x51\x52\x9c\xe8\xed\x3e\x7e\xdf\xfd\xa4\x8e\xf9\x2d\x1c\xa4\x2e\x99\xb4\xf0\x0d\x6e\x73\x70\x5f\x9e\x43\xa7\x38\x1a\x5b\x69\x83\xdb\xef\x76\xb5\xca\x6f\x01\x7f\xb4\xda\x10\x72\xf8\x8a\x4d\x2b\x19\xa1\x85\xdb\x7c\x75\x62\x26\x02\x0a\x48\xeb\x4e\x55\x24\xb4\x4a\xd7\xf0\x73\xb5\x72\xde\x1c\x85\x22\xca\xcf\xf3\xc6\xe3\xee\xab\xb4\xaa\xc5\xc1\x81\x03\xe4\xc3\xb7\xba\xd5\x27\x34\xf0\x24\xe8\x08\x74\x44\x90\xc2\x12\xe8\x1a\x1a\x6d\x09\x2a\xdd\x34\x5a\x81\x64\x25\x4a\x1b\x09\x4b\x83\xec\x91\xeb\x27\x75\x07\xc9\x2f\x83\x91\x6c\x5e\xa2\xfc\xae\x15\xa1\xa2\x09\x33\xab\x02\x98\x6c\x56\xd3\x74\x0c\x4a\xcd\x38\x34\x68\x2d\x3b\x20\x88\x1a\x4a\x56\x3d\xa2\xe2\x70\x42\x63\x85\x56\x50\x76\x4d\x0b\xc2\x02\x47\xc2\x8a\x90\x47\xfa\x20\xfe\x0b\x91\x23\x77\xe1\x82\x9d\x29\x0f\x2c\x42\xa1\x31\xda\xc4\x45\xd5\x8c\x98\xfc\xe8\x50\x27\xf6\x56\xe6\x49\x93\xba\x84\x22\x34\x2a\x22\x5e\x80\x17\xb8\x5d\xcb\x19\xe1\xc0\x0c\xe6\xc0\x9b\xa6\xd3\x68\xce\xa4\x1b\x47\xd7\x86\x61\xf8\xa6\x43\x2d\x24\xe1\x24\x4d\x4f\xfc\x2a\x48\xa2\xf3\xe9\xad\x8c\x9c\x39\x09\xed\xf1\xdf\x34\x7f\x1e\x49\xa5\xe6\xcf\x6f\x87\xb5\x42\xa2\xaa\x10\x6a\x6d\x9a\x88\xda\xc3\x0f\xda\x34\xce\x63\x6f\x66\x8e\x35\x89\x1b\xf1\xbe\x74\x55\x85\xd6\xce\xe9\x99\x0d\xf8\x35\xd9\xd0\xae\x89\x68\xd9\xdc\x48\xf2\xe0\x66\xb5\x90\xf8\x09\x5e\x93\x7c\xd6\x8c\x0b\x75\x58\x88\x64\xc0\x17\x7d\x0a\xd3\x28\x3b\x22\xad\xe2\x5b\xee\x81\xcf\xee\xd0\xb9\xf2\xac\x2c\x80\x59\x18\xdd\xc2\x13\x93\x68\x08\x0e\x46\x77\x6d\x74\xe0\xd1\x3f\x1c\xe8\xfc\x78\x2b\xf3\x9c\x49\x01\x23\x6b\xb8\x00\x11\xf5\x85\x6b\x30\x0a\x7e\x55\x4a\x13\x73\x0b\xc3\xce\x65\x6c\x3c\xba\x22\xf6\x05\x2e\x74\x61\x2d\x5c\x91\x7c\x94\xd8\xa0\xa2\x85\x08\x7b\xfc\x8a\xec\x4b\x18\xc6\x5c\xd5\xcf\xe8\xb5\xf4\xfe\x64\xf3\xd6\x85\x04\xb3\x86\xb5\xc9\x20\x3b\xdf\x8f\xbb\x52\x28\x41\x50\xc0\x64\x91\x5e\x78\xef\xb6\xc8\xaa\x63\x1a\xd6\xe6\x66\xe4\x28\xd6\xe0\x06\x2c\x4a\xac\x48\x9b\xf5\x64\x9d\x02\x90\x79\x9e\x21\x1e\xbd\xec\xe4\x7f\x9d\xfa\x3f\x28\xe0\xdb\xf6\x82\xa5\xef\xd2\xc1\xd9\xf6\x48\x8d\x4c\xd7\xeb\xfb\x89\x87\x33\x54\x8c\xaa\x23\xa4\x68\x16\xf1\x20\x6c\x76\xab\x25\x6e\xfd\x1f\x92\x26\x0f\x4c\x48\xe4\x40\x1a\x5a\x66\x2c\x0e\xc1\x21\x81\xf7\xe0\xe2\xc3\x7b\x48\xbc\x31\xc4\xbd\x7f\xc3\xa7\x0b\x3c\xcb\x69\xec\x67\x7f\x12\xf7\xd5\xa0\x7b\xd3\x2e\x8f\x55\xdc\xe1\xd0\x3d\xbf\xfc\x7f\x50\x5c\x8c\x7f\xba\xa0\x98\xb7\x6a\x8c\x2a\x6a\x48\x09\x8a\xa2\xf0\x0f\x66\x2d\x14\xf2\x79\x33\x66\x8d\xf8\x47\x3d\x2a\xfd\xa4\x96\x0d\x98\xd5\x62\x90\x3a\xa3\x20\xd9\x71\x71\x82\x4a\x32\x6b\x8b\x9b\xef\x5d\x53\x6a\x32\x5a\xdd\xec\x77\xc7\x0f\xfb\x4f\xfd\x8a\x0f\x6f\xc6\x1d\x74\xd7\x5c\xbb\xde\xee\xf2\xe3\x87\xfd\x2e\xe7\xe2\xb4\x4f\xc6\x48\x63\xc7\xe6\x77\xa4\x8f\x4f\xe9\xa5\x2d\x91\xe8\xea\xe8\xdf\x48\x7a\xbc\x04\x61\x16\x63\xa6\x37\x71\xaa\x37\xae\xb8\x5d\xbb\x77\x18\x1a\x13\xb2\x6f\xf7\xaf\x55\x70\x99\x73\x9f\xc0\x98\xd3\x27\x25\xe8\xce\xff\x52\xe3\x3f\xfa\xb7\x0f\x7e\x37\xbb\x10\x83\x9f\xf3\x3a\x5d\xdf\xaf\xfe\x0f\x00\x00\xff\xff\x81\x26\x37\x18\x18\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\x5d\x93\x1b\x37\x72\xef\xfa\x15\xed\x39\xe5\x38\xb4\x48\xee\xca\xc9\x5d\xa5\x68\x51\x57\x92\x75\xb6\x94\xb2\xce\x2a\xef\x3a\x89\x4b\x51\x52\xd8\x99\x26\x07\x5a\x0c\x30\x07\x60\x96\x62\xe4\xfd\xef\x29\x7c\xcc\x37\x66\x48\x5a\x52\x9e\x0e\x0f\xbb\xe4\x4c\x77\xa3\xbf\x01\x74\x83\x17\x5f\xc3\x8e\x89\x1b\xc2\x14\xe4\x22\x47\xae\xe1\xeb\x0b\x30\xe3\xe2\xc2\x3f\x58\xbd\x57\x0f\x1e\xb4\xc0\x9e\x31\x94\x5a\x2d\xe0\x59\xa9\x45\x22\xf2\x82\xa1\xc6\x05\x7c\x4f\x99\x46\xa9\x16\x70\x55\xe6\x39\x91\x87\x05\x5c\x63\x5e\x30\xa2\x51\x2d\xe0\x17\xae\x10\xe1\xeb\x0b\x4b\x07\x3f\x14\x42\x6a\x4c\xe1\x97\x57\xe6\xd1\x1d\x91\xe6\xd3\x06\xe2\x6d\xc9\x13\x4d\x05\x8f\xe7\xf0\xf1\xc1\x03\xcf\xc3\x3e\x43\x0e\xa5\x42\x09\x09\xa3\xc9\x2d\x08\x0e\x84\x1f\x80\x18\x26\x80\x91\x1b\x64\x90\x8b\x94\x30\x28\x44\x51\x16\xb0\xa7\x3a\x03\x02\x8c\x2a\x0d\x62\x0b\x85\x50\x8a\xde\x30\xac\xa8\x6d\x2d\x97\xb0\xa7\x8c\x81\xca\xc4\x7e\x01\x3a\xa3\x0a\xaa\x99\x81\x2a\x33\x57\x0a\x5a\x80\x42\x5d\x16\xa0\x33\xa2\xdd\x04\x96\x84\x61\xd6\xbe\x78\x6d\xe7\xdc\x40\x87\x67\xf0\xe3\x61\x1c\xfd\xc1\xb2\x66\xa1\xa2\xf9\x4a\xf0\x38\x32\xd3\xad\x6e\xd4\xca\x12\x8b\x16\x0d\x26\xde\x21\xd7\x6d\x74\x33\xac\xc6\x56\x6f\x48\xa9\x30\x9e\x7f\xdb\x79\x65\x78\xc8\xfd\xf4\x0f\x63\xc3\x7f\x00\xc0\x69\xc6\x00\x58\xf2\x2b\x89\xc6\x14\xe9\x35\x91\x3b\xd4\x63\xf0\xff\x73\x8b\x07\xd8\xb8\xcf\xab\x94\x68\x12\x47\xf6\xf3\xf2\x16\x0f\xd1\x28\xd2\x9d\xe5\x64\x88\x74\x67\x44\x1f\x22\x11\xad\xa5\x82\x8d\x77\xa3\xd5\x0f\xa8\x7f\x34\xe0\xcf\xcc\xe3\xb8\x66\x63\xd1\x10\x0f\xd0\x48\x44\xc9\x8d\x1d\x37\x95\xb7\x19\x32\xa7\x20\x5b\xbd\xad\xb6\x94\xa7\x71\xe4\x2c\xb1\xd4\x54\x33\x8c\xe6\xab\x4c\xe7\x2c\xee\x00\x9b\x51\x3b\xf1\xea\x67\xe4\x29\xca\x38\xb2\x58\xd7\x16\x69\xd1\x33\x9a\x1b\x56\xc0\xb5\xfb\xb7\x08\xbc\xf7\xcc\xaf\xab\x0f\x03\x90\xfb\x79\xe7\x51\x40\xfe\x8c\x72\x6d\x75\xd8\x0a\xc1\xd5\x0f\xc8\x51\x12\x8d\x2f\xcd\xcb\xdf\xa9\x8c\x1b\x91\x1e\x46\x74\x31\xa2\x89\xe7\x06\x63\x01\x1f\x2d\x4b\x6b\xc7\xd9\xb4\x00\x0f\x1b\xd5\x93\x1b\xab\x7a\x13\x1e\x36\xba\xa3\x05\xd4\x9c\x94\x5a\x0b\xbe\x74\x01\xdb\x09\x17\x86\x79\x3f\x5a\x2a\xbd\xf8\xf0\xb6\x6e\xcf\x30\x5f\x69\xe7\xee\xde\x2d\xdd\xdb\x25\x29\x0a\xe4\xa9\x71\xcf\x12\xfb\x0e\x0a\xa1\xe8\xb5\x0c\xc5\x51\x46\xd3\x20\xbc\xcf\x7c\xab\x67\x69\xea\x3e\xc6\x6e\xa2\x1e\xe8\x7d\xeb\x7b\xfb\x73\x30\x59\x64\x34\x4d\x91\x07\xd3\x45\x5f\xf6\xa3\xe9\x60\xc2\xe7\x93\x8c\xb2\x54\x22\x8f\xe7\x2b\x89\xb9\xb8\x1b\xe4\x9a\x71\x17\x39\x8a\xea\x32\xd8\x7f\x10\xaa\xbf\x17\xf2\x6f\xf8\x41\xff\x8c\x4c\x90\x34\x0e\xa8\xe1\xfe\xdb\x3a\xdd\x23\x49\x32\x9f\xdc\x77\x52\x94\x05\x64\xe4\x0e\x6d\x42\xe7\xb7\xb0\xf3\x1e\x9e\xc2\x56\x48\xa0\x7a\x01\x37\xa5\x86\x3d\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\x5e\x75\xd3\xfc\x0f\x06\xfa\x47\xca\x6f\x5f\x5a\x0a\x9b\x71\x37\x74\x1e\xe7\xac\x97\x8b\x52\x21\xf2\x9e\xe3\xf6\x0d\xe7\x8d\x55\x69\xd7\x0a\xbd\xb4\xec\x2d\xad\xb4\x4f\x81\x44\xf6\x2d\x55\x59\x3c\x5f\x11\x4e\x73\xa2\x31\x1e\x7a\xbe\x28\x48\x42\xf5\x61\x0d\x8f\x2f\x2f\xbb\x2e\xb7\x80\x6f\x2e\x2f\x47\xfd\xae\xc7\x30\x43\x72\x87\xff\xbf\x0c\x9f\xc8\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\x3d\x46\xdb\xea\x96\xfe\x5f\xfb\xa6\x5f\x19\xaf\x6d\xde\x79\x05\xbd\x35\x59\x67\xa9\xc5\x6e\xc7\x70\xe3\xa7\x7f\x17\xcd\x5b\x0a\xa6\x0b\x08\x65\xb3\xca\x32\x1e\x27\xa0\x40\xa7\x5a\x2a\xf8\x1a\xb6\x84\x29\x5c\x18\x89\x14\x13\x7b\x05\xa9\xd8\xf3\x4a\x58\xb0\x91\xe9\xb7\x2e\xed\x91\x22\x23\x87\x75\x70\xf5\x02\xbb\x2f\x5a\xc3\x9f\x2e\x2f\x43\x8b\x17\xd8\x58\xeb\x5b\xce\x59\x6f\xf0\xc8\xa6\x99\x75\x2d\x8f\x59\x11\xe3\xc8\xe7\x1e\xf8\xed\xb7\xfa\x85\x4b\xcf\x5a\x55\x79\x29\x40\x49\xd2\xdd\xce\xac\x99\x91\x0d\xe8\xe8\x68\x66\xad\x5c\xa6\x36\xa9\xdd\x6e\x58\xbb\xda\xcd\xe6\x68\x1c\x07\xc2\xde\xc1\x7c\x1b\x00\xa9\x5c\xa4\x0d\xd1\x9e\x99\x72\xaa\xc7\x36\x89\xcd\x36\x32\xee\xd3\xbe\xa2\x0c\x79\x82\xdf\x0b\x99\xc7\x21\x79\x9a\xd7\x2f\x88\x26\x63\x13\x18\x50\xbb\xc8\x29\xbb\x32\x44\x7f\xe0\xb8\x6f\x51\x8e\xe6\x2b\x85\x92\x12\x46\xff\x17\x9f\x49\x49\x0e\x6d\x36\x0c\x6e\x41\x0e\x26\x61\xc3\xa6\xe3\x27\x39\xd1\x49\x86\x66\x83\xf3\xf6\x5d\xdb\x4e\x4a\x13\xa9\xd5\x33\xbd\x86\x28\x6a\x3f\x47\x9e\x06\x9e\x26\x12\x4d\x1e\x7f\x7e\x18\xbc\x10\xb9\x09\x6b\xf3\xb8\xb1\xe9\xb7\xfd\x50\x73\x62\x05\x22\xa9\xe3\xd1\x6a\x4f\x75\x92\x81\xdb\x0a\x70\x92\xe3\x60\xdb\x90\x10\x85\x10\xf9\x39\xa3\x75\xf5\xbd\x62\x2e\x5a\xf7\x1d\xd1\xeb\xe4\x6d\x4d\xf2\x1d\x6c\xec\xcc\x2b\xcb\xd2\x60\x73\x70\x23\x91\xdc\x76\x9e\xde\x07\x93\x31\xdd\x42\x6c\x4c\x54\x69\x31\xf2\x41\x31\x7b\x41\x34\x5e\xd3\x1c\xdf\xd0\xe4\x16\xe5\x6c\xde\x15\xc1\xb3\xb3\xaa\xd0\xbc\xa1\x8f\x52\x31\x8f\x3b\x0b\xf6\xfd\x80\x13\x67\xb7\x33\xf9\x70\x48\x9e\x8b\x23\x14\x26\x78\xf0\x56\x1e\xfa\x2c\xac\xcc\x32\x95\xe8\xc2\xd2\x38\x25\x97\xf6\xcf\x36\x9d\x94\x33\xab\x4f\x37\xb3\xc0\x26\xbb\x15\x3b\x0e\xa7\x3d\x77\x3c\xbb\x23\xac\x8f\x65\x74\xe7\xb1\xfe\xf8\x47\x8f\xbf\x62\xc8\x77\x3a\x83\xa7\x70\x39\xdc\xb5\xda\x30\xbb\x23\xac\xef\x37\x36\x77\xa8\x9f\x71\x87\x1f\x4c\x74\x9b\x14\xdf\x07\x69\xe6\x6a\x66\x78\x1c\xda\x17\x83\x9d\x01\x36\x10\xfd\x77\xfc\x97\x75\x04\x8f\x2a\xc6\xde\x0b\xca\xe3\xe8\xb7\x68\x0e\x8f\x20\x9a\x3f\x8c\x86\x3b\x5b\x68\x31\xa1\xe5\xd0\xbd\xef\x01\x99\xc2\xa9\x39\xdd\x54\x6f\x2f\xdf\x0d\x50\x7b\xdf\x2b\x0f\xaa\xd2\xcb\xaa\x28\x55\x16\x58\xf9\x00\x4c\xd4\xad\x1b\x9b\x86\x16\x29\x3b\xeb\xda\xf2\x10\x7a\xed\x85\x5a\x57\x1f\xfa\xac\xf5\x37\xee\xc1\x88\x95\xa8\x4b\xc9\x2b\xbe\x27\x93\xf4\x77\x84\x25\xa5\x39\x3a\xbd\x28\xa5\x5d\xb5\xc3\x19\xdb\x2c\xe1\xb7\xb4\x30\x96\x35\xa1\xa1\x69\x8e\xce\xd7\x80\x2a\x3e\xd3\x20\x91\xa4\x07\x38\xa0\xf6\xf0\xc6\x03\xbe\x3a\x29\xdc\xcd\x5a\xfb\xd5\x49\x41\xed\xa5\xf2\x1e\xf7\xa0\x52\xa7\x84\x4f\xcc\x30\x86\xc4\xef\x4a\x0e\x2d\x7c\x2d\x34\x61\x2f\xc8\xc1\x84\x64\xec\xf0\x57\x29\xdd\x6e\xe3\x8a\x99\x05\xcc\x52\x72\x50\xb3\x79\x67\x5a\x8b\xf6\x52\x94\x72\x0a\x2f\x33\xef\x8d\x02\xfe\x09\xbe\xf9\x97\x01\xf6\x6b\xca\x4b\x6d\x53\xc1\x08\x7a\xee\x00\x66\x06\xff\xcf\x97\x15\xbe\x55\x94\x73\x83\x65\xea\x4d\xbf\x34\x1c\x56\x27\xec\x5a\xa2\xf9\x24\x8a\x65\xae\x83\x63\xc5\x99\x46\xf2\x2c\x75\xd0\xbc\x1c\xf3\xa0\x65\x5f\xa0\x4a\x60\xe3\x6b\x7e\xb1\xd9\x7d\xd6\x12\xd6\x33\xf5\x60\xdb\x5f\x57\x12\x0b\x46\x12\x8c\x23\xca\x81\xc0\x16\xf7\xa0\x30\x11\x3c\x55\xe6\x50\xcf\xc5\x3e\x3a\x8f\x4a\x87\x04\x90\x9d\x18\x90\x69\x8b\x6d\x69\x2c\x53\x54\x89\xa4\x85\x91\xbf\x92\xbb\x4d\xbc\x2b\xb7\x33\x65\x40\x6a\xf7\xa2\x9e\xa6\x03\xd7\x7c\x39\x43\xde\xa3\x14\xce\x93\x15\x79\x1a\x92\xb4\x21\x3c\xbd\x65\xfc\xb7\xab\x9f\xfe\xe6\x2a\x38\xe1\x34\x64\xc0\xcd\xa6\x2f\x4a\x4a\xc9\xc0\xac\x17\xad\xc9\xab\x1a\x85\xdb\xb1\x57\x1c\x91\x82\x9a\x55\xa4\xce\x8d\xd1\x7f\x71\xf3\x6f\xf9\x9f\xf0\xe6\xa7\xab\x6b\x58\x2e\x0d\xb8\x21\x55\x43\x18\x26\x56\x4a\x4b\xca\x77\x74\x7b\x88\x7b\x3b\xda\x78\xbe\x80\x92\xa7\xb8\xa5\x1c\xd3\x05\x7c\x13\x52\x83\xa1\xf0\x9c\x89\x9b\x4a\xfc\x74\x5a\xea\x5f\x8a\x74\x24\x01\xf7\xca\xaf\xff\xc8\xc2\x27\xa0\xbf\xa6\xdc\xc0\x9e\x48\x25\x77\xd0\x5d\x42\x24\xf1\x86\xa8\x2a\xd4\xdd\x5a\x5d\x9d\xc7\x1c\x5c\xd4\xc1\x2d\xdd\xb1\xea\x08\xa6\x81\xea\xe2\x29\x8d\x05\x6c\xa0\x20\x52\xe1\x2b\xae\xe3\x23\x04\x0c\x78\x34\x6f\xb2\xc6\xc5\x05\x48\x5c\x26\xd5\x6a\xee\xc8\x6d\x85\x04\x26\xf6\x7e\xa7\xd3\x40\xd2\xad\x2d\x4c\x91\x3b\x84\x3f\x81\x4b\xc6\x0e\x81\xf0\x14\x92\x52\x4a\xe4\x1a\xaa\xa9\x80\x2a\x78\x5c\x41\xe9\x8c\x70\xd7\xec\xa0\x7c\xd7\x10\x14\xdc\x56\xa8\x28\x4f\xa4\xad\x7c\x98\x73\x7a\xc9\x52\xd8\xd1\x3b\x84\x52\xd5\xb3\x2c\x80\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\x1a\xc1\x66\xb9\x1d\x10\xbc\x7f\xd0\x8a\xd1\xca\xdf\x36\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\x29\x3c\x36\xc7\x81\x16\xd7\x4f\xec\x34\xdd\xcd\xba\xf7\x4d\xfb\x6f\xd9\x02\x0e\x9d\x8f\xbc\xc9\x48\x9a\xda\x19\xbc\xb5\x6a\xb1\xfb\xbb\xf2\xdf\x29\xd9\x65\x25\x59\x47\xa4\x96\x18\x4f\xe1\xd2\x08\x76\xbe\x90\x27\x49\xa7\xca\x1b\x2d\x49\xa2\x43\x22\x3a\x56\x7c\x2a\x7b\xd2\x4d\x4a\xdd\x19\x9d\xec\x29\x56\x41\xb3\xb7\x31\x23\x51\x95\x4c\x83\x5d\xb9\x4d\x86\x57\x9a\xe4\x85\x09\x63\x57\x25\xe6\x40\x98\xf9\x92\x1a\x0d\xd0\xbc\xcc\xbb\x04\x75\x86\x1c\xde\x97\xca\x2c\x06\x46\x51\x54\x83\x16\x36\x38\x87\xe0\x75\xba\xed\xf0\x38\x14\xfb\xbe\xb5\xc2\x9d\x94\x95\x7b\xbb\x94\xa9\xe3\x46\xbf\x86\x64\x3b\xbb\x29\x61\x26\x77\xe5\x36\x81\xd9\x8a\x07\xe5\x3b\xe0\x66\x1f\xe2\x48\xa9\x6e\xfd\xac\x7d\x0a\x9f\x28\x38\x35\x9d\x88\xfe\x9e\xa1\x91\xd9\x35\x15\x3e\x6b\x4f\xf4\xbc\x56\x56\xa8\x99\xd5\x52\xe0\x8f\x82\xa4\x94\xef\xa2\x05\x7c\x3c\xde\x8a\x43\x86\xf9\x19\x7d\x56\x03\x6e\xfb\x9d\xe6\x34\xf1\xf1\xbe\xd7\x19\x73\x75\x0f\x5b\x4f\x6a\x75\x52\xcd\x26\x5e\x15\x8c\xea\x38\x5a\xf4\x6b\x1e\x2c\x74\xe4\x6f\x26\x79\xcb\x2a\xcc\x4d\x34\x7f\x7b\xf9\xee\x1d\x6c\xa0\xf3\xe8\xf1\xbb\xf1\x2e\x95\x63\x89\xbc\x27\x1f\x06\x07\xf1\x52\xb2\x35\xcc\x88\x6b\xe1\xbe\x57\x82\xff\xe5\xef\x1b\xfb\xcd\x9c\xce\x37\x33\x78\x04\x8d\x10\xb3\xfa\xc5\x6c\x50\xd9\x45\x29\x85\x5c\x37\x12\x7d\xc8\xe4\x02\x34\x7e\xd0\x57\x9a\xe8\x52\x2d\x1c\xc0\x75\x26\xc5\x9e\x87\x8b\x1b\x56\xa9\xd2\xec\x65\x3f\x64\x72\x25\x51\x15\x82\x2b\xbc\xc6\x0f\xda\xec\xb7\x5a\xe8\xe6\x6b\x43\x39\x54\xec\x38\xd7\x89\xe0\x98\x23\x7d\x4f\xb4\x75\xeb\x8f\x5e\x4c\x94\xb2\xe7\x50\x6e\x0c\x9a\x8a\x83\x5a\xba\x2a\x93\x04\x95\x6a\x69\xca\xa8\x76\x5c\x23\xa7\x84\x61\x17\x83\x8d\x39\xa5\x1b\xde\x35\xcd\xac\x2b\xdb\xe8\xe8\x55\x5f\xed\xb3\x30\x3f\xd0\x6b\x91\xb8\xc6\x51\x1b\xff\xfd\xc2\xb5\x6f\xc6\xf1\x5b\x34\x2c\xe4\xca\xb1\xdb\xa2\x11\xec\x77\x4f\xd2\x03\xbf\x8c\x30\x1f\x29\x15\x81\x77\xb0\xd9\x6c\x9a\xf3\xc7\x71\x22\x66\x04\x88\x8c\x68\xb2\x3d\xfa\x55\xb0\x93\xd8\x7b\x5b\xcb\xf7\x79\x38\xed\xd0\x3b\x89\x84\x19\xb7\x78\x38\x52\x85\x0b\x0d\x5f\x99\xab\x67\x3c\x15\xcf\xdf\xa9\x38\xfd\xce\xc8\xa9\x84\x5d\x4d\x17\xd3\x75\x27\x69\xb6\x5d\xa1\x21\x7a\x02\xc9\x4f\xb2\x78\x3f\xf7\x1e\x7b\x13\x7e\xfa\xd9\xb3\x98\x49\x60\xce\x69\xbc\xe1\xfa\xf7\x3b\xdc\x08\x32\xd3\x54\xf2\xcf\xae\xdc\xd7\x24\x42\xd5\xf7\x71\x2f\xa5\x89\xe0\xcf\x89\xc2\x35\xcc\xb6\x64\x36\xee\x06\x9a\x26\xb7\xaf\x12\xc1\x2d\xdc\x32\xc9\x30\xb9\x9d\x80\xde\xd3\x54\x67\x06\x94\xea\x09\x28\xc7\xe2\x33\xc6\xcc\xf2\xb3\x86\xd9\x13\x0a\x09\x23\x4a\x6d\xa2\x2d\x81\x6a\x96\xa5\xfa\x7b\x49\x24\x2e\x45\xf4\xf4\xc9\x05\x7d\x3a\x41\x2e\xc5\x63\x04\x4f\x26\xc5\x05\xc7\x2b\xef\xea\x15\x2d\x55\xd8\x73\xa6\x25\xe7\xae\x8b\xb9\x76\x88\xbd\x3b\xe7\x3e\xa6\xb8\x25\x25\xd3\xd1\xd3\x99\x2d\x03\xb9\xf6\xff\xa0\x75\x02\x8f\x20\x5a\xc3\x93\x0b\x43\xf0\x69\x34\xce\x44\x5e\x32\x4d\x0b\x86\x57\x58\x10\x49\xb4\x59\x11\x67\x70\x54\x9d\x8e\x61\xe3\x88\xc4\xb0\x6d\x2f\x4d\x99\xe3\xc6\x04\xa2\x85\xe9\x8a\x5b\xdf\xf0\x8b\x79\x99\x57\xaf\xa6\x13\xa6\xaf\xc2\x9c\xa4\xa8\x3d\x91\xdc\x6c\x19\x8d\xa2\x26\x33\xc0\x68\xff\xc9\x29\x31\x82\x47\xd0\x62\xd0\x3c\xac\xfa\x50\x95\x36\x2a\x3d\x8f\x67\x9a\x70\x8e\x39\x27\x87\x3c\x8c\x67\xab\xaa\xfa\xb5\x2c\xda\xe7\x8e\xa6\x1e\x36\x12\x83\x5b\x6f\xa8\xe8\xd7\x5f\x7f\xfd\x75\xf9\xfa\xf5\xf2\xc5\x0b\x78\xf9\x72\x9d\xe7\x23\x8e\x61\xe2\x55\x8d\x5d\x45\x00\x1b\xa8\xb9\x0b\x66\x1b\x41\x4c\x24\xb7\x4b\x31\x15\x34\x44\xb7\xc0\x09\x43\x9e\x12\x39\x01\x5f\x16\x0d\x74\x86\x77\x52\xf0\x65\x59\x4c\xd1\x17\x7b\x3e\xc0\x30\x0f\x27\x70\x0a\x89\x77\x54\x94\x6a\x80\xc7\x70\x3b\x95\x4f\xb8\x8b\xd4\x2e\x8e\xa4\xbb\x6c\x0a\x49\x8b\x94\x1c\x6a\x2c\xa2\x34\x4a\xaa\xa6\x72\x5b\xc2\x90\xc8\x1a\xa1\xe4\xe9\x94\x7a\x13\x26\x54\xc7\x1c\x0a\x67\x61\x77\x0b\xd3\xf0\xb5\xc0\x75\x5d\x71\x0f\x83\x29\x9a\xe2\xf3\xc3\x95\xbd\x6a\xa2\x65\x89\x23\xbe\xc3\x19\xe5\x1e\xe2\x64\xdf\x0e\xdc\xde\x08\x5d\x8e\x18\x8d\x0b\x17\x87\x4b\x17\xba\x37\x24\xdd\xe1\xcc\x5e\xa2\x9a\xd9\x92\xdd\x6c\xe2\xfe\x54\x35\xdc\x99\xda\x50\x69\xae\xec\xad\x0a\x22\x5d\x07\xa2\xfe\x60\x97\xf0\x99\x03\xec\x77\x9a\x6b\x0d\x6c\x21\x76\x10\xa1\xee\xf4\x78\x7e\x73\x65\x11\x9d\xa1\xc4\x99\x02\xc2\x0f\x3a\x33\xc7\xff\x2a\xc7\xd4\x4b\x0f\x10\x36\xb6\xed\x09\x4e\xdb\x5a\xb2\xc6\x58\x9e\x68\x1a\x7b\xce\xec\xfb\xdf\x37\xff\xf1\xd9\x4f\xf6\x93\x8b\x0b\x5b\x05\xf3\x05\x1c\xef\xb7\xa0\x05\x70\xb1\x87\x47\x75\xb9\x36\xe8\x25\xa7\xd7\xc4\xeb\xc6\x13\x49\xd3\xf8\x71\xdd\x4a\x9c\x85\xfd\xaf\xcb\x93\xc9\x8c\x86\xa1\x47\x8f\x21\x13\xe5\xf0\x1e\xf1\x19\xd5\xa4\x01\x1b\x55\x43\x74\x84\x8b\x7d\x86\x1c\xef\xb0\xd5\x91\x48\x32\xc2\x77\x76\x99\xb2\x05\x31\xa2\xaa\x82\x98\x55\xdb\x56\x54\xad\x83\x11\x7a\x08\x09\xe1\x33\xed\x0a\xe6\x75\x61\xaf\xa2\x3e\x22\xda\xe0\x42\x93\xe0\x71\x94\x16\x2b\xc7\x4b\xb4\x80\x56\x8b\xa4\x1d\x97\x61\xdf\x3b\xbd\x93\xd3\xef\xd0\x84\xa8\x7d\x86\x76\xcd\x40\x4b\x5e\x2f\x1c\x31\x55\xc6\xf0\x37\x08\x44\x03\x43\xa2\x74\xd3\x3e\x20\x5b\xdd\xb2\x4b\x38\xbb\xfa\x97\x95\xb5\x7d\xc9\x3d\x5c\x1c\x38\xcf\x9f\x07\x2d\xe3\xf6\x18\xdb\x6c\x8c\x58\xb2\xbe\x12\x4e\x56\x83\xf6\xf6\x8d\xe6\xd1\x62\xbc\xc1\x77\xd6\x44\xb3\xaa\x0c\x99\x08\xc6\x48\xa1\x70\x01\xb5\x13\xb5\xf2\x39\x8c\x26\x74\x08\xf7\x57\xc7\x2c\x79\x5a\xb5\xf6\x53\x54\x37\xfb\x52\xcc\x9f\xc1\x86\x2a\x6f\x72\xaa\xe3\xe9\x92\x6e\x33\xba\x37\x0e\x07\x0d\xe1\x31\x4d\x9a\xa0\x1d\xdc\x1d\xf2\x17\xa2\x36\x9b\x4d\xe8\xd2\x55\x7f\x56\x94\xf2\x3b\xc1\x35\x72\x13\xa7\x93\x27\xe1\xbf\x4a\x29\x64\xab\x9e\x17\x5d\xf9\x45\xaa\x0a\x42\xc1\xdd\x79\x20\x1a\x3f\xca\x0f\xf5\x65\x8b\x1a\x75\x17\xbf\x66\xa6\xba\x57\xff\x9d\x39\x78\x54\xbf\x08\x18\x0b\x51\x37\x8e\x67\xa5\x56\x53\x2c\xa4\x8a\x52\x32\x7b\x19\x22\x25\x2c\xd4\xe2\x1f\xa3\x39\x52\x24\x6e\x86\x3e\x14\xb8\x86\xe8\xcd\x4f\x57\xd7\x13\xe7\x43\x5b\x54\x2e\xe5\x44\x51\xc8\xf0\xb4\xee\x5f\x1e\xf0\xe6\x9f\x28\xf9\x7c\x7a\x95\xb9\x19\x17\x17\xe0\x4f\xc5\x26\x03\xef\x33\xa2\xed\x3a\x68\x29\x58\x9a\x7e\x2d\x83\x1d\x86\x93\x6f\x35\x3e\x63\xe1\xba\x19\x26\x1c\xfa\xe4\x4e\x29\x0b\x76\x1b\xd6\x04\x24\x5a\x74\x27\x90\x96\x07\x23\x6b\x8a\x89\x70\x3f\xb3\x20\xca\xda\xe0\x24\xaa\x75\x9f\xfa\x06\xbd\x92\xb6\x52\xe4\xae\x92\x97\x13\x4e\x76\x28\x21\xa6\x56\x6b\x7b\x94\x08\xe4\x86\xd9\x4d\x4d\x22\x38\xc7\x44\x87\x2a\x4d\xdd\x61\xb8\x3b\xa5\x68\x69\xf4\xfd\x1e\x36\xce\x7b\xec\x15\x80\xa1\xa6\x8e\x55\xef\xc0\xab\xf8\xfd\xca\x89\xf2\xd5\xf9\xe5\x57\xf0\x46\xf7\x24\x4e\x99\xf1\x58\x95\xd8\xec\xa9\x13\xe2\xae\x3a\x1b\x9a\xa7\x31\x72\x71\xe1\xb7\x5c\x56\x17\xf0\x5e\x09\xbe\x80\xd4\x6c\x6f\xed\x59\xe0\xf8\x9c\x93\x10\xa3\x69\xc6\x8d\x4f\xcb\xbb\xb6\x8f\x32\xad\xb9\x2f\x93\x62\x47\x0e\xb5\x70\x66\x87\xa6\x19\xc6\x99\x6c\x4f\x45\xd9\xe0\xb6\xd7\x13\x3c\xa5\xe8\xb8\x19\xc3\x42\x92\x34\x3d\x63\xcd\x70\x74\x66\xbd\xf5\x7b\xe6\x75\x35\x69\x96\x2b\xcf\x68\xf8\x67\x90\x03\x05\x39\xc4\x57\x2f\xd6\x36\x8d\xaf\x9c\xd8\xfe\x61\x7a\xac\x6c\x1e\x3e\x89\xb4\x00\xa6\x4f\x95\xd5\x68\x92\x6e\xf4\x8a\xdf\x11\x46\xed\x5d\x00\x97\xeb\x86\x79\xe9\xd9\x9b\x57\xae\x24\xd7\x5b\x71\xac\x65\x8f\x29\xf5\x8b\xbb\xf8\x97\xdb\x47\x4c\x05\xf7\x44\x08\x18\xb5\x5c\xbb\x95\xde\x64\x93\x68\xa2\x99\x31\xf2\xca\xf5\xd0\x0b\x69\xff\xbf\x70\xcb\xec\x39\x1b\xd1\x73\xf7\xd5\x5d\x31\x3b\x8c\xdd\x07\x2f\x2c\x7c\xe1\xdf\x65\x7e\xc1\xdf\x56\xfa\xbd\x61\xc3\xe3\x2b\x4e\xf5\xda\xfe\x42\xa9\xb1\xe8\x55\xff\x97\x52\xeb\xe1\x8f\xa7\x6a\xaa\xf7\x73\x33\xdf\xff\x05\x00\x00\xff\xff\x2a\x72\xe7\xf1\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\x38\x01\x24\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\x23\x05\x84\x29\x01\x4b\x21\xef\x30\xb7\xea\xf8\x40\x83\xb3\xd7\x03\x3e\xaf\x90\xc1\xa3\xf1\xbb\x3d\xf4\x01\x29\x40\x31\xc3\x7c\x3e\xc4\x13\x1b\xba\xf1\xc8\xcd\x73\xc4\x5c\xdd\x94\x6b\x49\xf2\xce\x4d\x49\x54\xa5\xe0\x0a\xff\xe5\x00\x34\x3c\x9f\x39\x7a\x83\xab\x17\x1e\x59\xfb\x06\x68\x81\xb7\x27\xe9\xfc\x31\x2e\xda\x77\xb9\x5a\xda\xd3\x09\x71\xe1\x89\x24\xf2\x1c\xe5\x07\x83\xbe\xe1\x81\xb4\x7f\x74\x66\x90\x09\xae\xf1\x5e\x87\x1a\xd7\x60\x64\xb9\x06\xa8\xf3\x9e\x21\x19\xce\xfe\x83\xe6\x18\x4e\x86\x61\xed\xb0\x3f\x49\x37\xba\x60\x71\xf3\xdc\xa5\x57\x56\xb5\x11\x55\x8e\x88\x51\x1b\xb1\x8b\x3b\x98\xea\xd4\xbd\xe1\x77\x5c\xec\xf8\x18\x7c\xde\x94\x39\xd1\x18\x7f\x0d\xa1\x38\x17\x59\x65\x1f\x78\x4d\x35\x33\xb7\x7d\x12\xff\xf1\xfb\x6f\xf0\x23\xfc\xf1\xfb\x6f\xc9\x49\x4b\x57\x59\xde\xf7\x1e\x57\xf3\x31\xb7\xd9\x10\x9e\x33\x1c\x18\x19\xa5\x0c\xcd\x6a\x73\x90\x34\x23\xa5\xae\x24\x7e\xb8\xcf\xb0\x6c\xa8\xba\xa1\xbd\xa3\x3c\x17\xbb\x34\x13\x5c\x09\x36\xf0\x25\x3f\xed\xcc\x61\xb8\x53\xa5\x49\x76\x97\x8c\x3b\x4c\x73\xfb\x71\x44\x8d\x95\x38\x61\xf6\x33\x9a\xf5\xc4\x72\x52\xe0\xc2\x3c\xd8\xa9\xf9\xab\xfb\xd4\x15\xa8\x14\x59\xfb\x65\xff\x31\xeb\xc1\xc6\xce\xae\x8e\x3e\x7a\x0a\xf5\x4f\xb4\x40\x51\xe9\xe9\xb7\xc0\xe1\xf8\xcf\x84\xea\x8f\x42\x7e\xc6\x7b\x3d\x84\xf4\xc3\x0c\x5e\xbf\x7a\x35\x62\xfe\x6a\x18\xb0\x5d\xa0\x0e\x8c\x20\xad\xd8\xcf\x88\x39\xe6\xc6\x06\xdf\xaa\x27\x13\x19\x31\x0b\xa9\x1c\xd3\xef\xbb\x57\xa3\x0a\x6a\x49\xd7\x6b\x94\xee\x48\x53\x6a\x3a\x3f\xbb\x54\x57\x48\xf2\x7d\x27\x94\x52\x72\x4b\xee\x7b\x79\x4e\x25\xd9\x02\x22\x62\x93\xd1\xf4\x56\x09\xfe\xf7\x5f\x2f\x22\x78\xd9\x3c\xf3\x9f\x50\xfb\x3f\xe3\x24\xbd\x15\x94\xc7\xd1\x2c\x4a\xba\x97\xa6\xaa\x2c\x43\xa5\x16\x5d\x9c\x1b\x03\xef\x3a\xc4\xae\x1d\x47\x1f\xfe\xc1\x3b\x6e\x08\x9f\x56\x56\xea\xa1\x6a\xf4\x45\x70\x87\x76\xc4\x23\x02\x0f\x80\x4c\xa1\x95\x6b\x45\x59\x7f\x9f\x92\xf3\x00\x06\x84\xa3\xe3\x0a\xce\xe0\xe3\xd1\x10\x0e\xbb\xf1\x02\xa2\x77\x24\xbb\x43\x9e\xbb\xef\x5e\x32\x18\x8e\x26\x5a\x5a\xb5\xa7\x89\x19\x51\xfa\x17\xad\x16\x6d\x1e\xf6\x09\xf5\x0f\x44\x69\x0f\x59\xc9\x28\xe7\x61\xe2\x7c\x8f\x88\xa2\x46\x84\x33\xef\xf8\xb1\xe7\x73\xef\x8e\xbf\x38\x0f\x8b\x13\x93\x42\x64\x65\x05\x1b\x24\xdb\x3d\x28\x01\x54\xc3\x8e\x32\x06\x4b\x26\xb2\x3b\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\x6f\x4d\x22\xa2\x29\xdf\x43\x8e\x8c\xec\x61\x89\x7a\x87\xc8\x81\xe4\xf9\x7b\x46\x8c\xb3\x01\x59\x8a\x2d\x02\xe1\xf9\x40\x2b\x25\x6c\x4a\x01\x7a\x83\xb5\x0e\x53\x3b\x6d\x88\x91\x61\xf5\xc9\xd0\x24\xb3\x12\x57\x36\x09\xd2\x1b\xa1\xd0\x4b\x1e\xd7\xf3\x31\xc0\x10\x0e\x2d\xf7\x0f\xac\xc2\x91\x87\x69\x6c\xd4\x61\xed\xee\xf3\x1d\xc9\xd7\xa8\x5c\x58\xb8\xda\x44\x1d\xe1\x77\xf5\x69\xbd\x9d\x65\xcc\xec\xd4\x11\x3e\x57\xed\x86\x7c\x47\x18\x26\x5e\xcb\xa9\xd1\x78\xfd\x17\xc1\xd7\xb1\xab\xb8\x9d\x7a\xa6\x84\x55\x9a\x14\x65\x72\x44\xc4\x37\xf8\x7c\x38\x6c\xf1\xd1\x16\x3f\xea\x23\xd1\x84\xc5\x93\x40\xd5\x8e\xc9\xcc\x26\x8a\x8e\x6c\x39\xc1\x6b\x32\xa7\xa3\xbc\x87\xc9\xd5\x03\x64\xe6\x14\xd0\x4f\x37\xc6\xc6\x23\x61\xb2\x1e\x41\x5e\xd3\x4b\x53\xc6\xc6\xff\x71\x11\xe3\xa7\xb2\x0f\xfd\x18\x64\x75\x2b\x80\x2e\xa8\x7a\x94\x7e\x30\x3e\x1f\x71\x7c\x57\xa6\xac\x8c\x33\x38\x91\xb0\x23\xa6\x5e\x91\xe6\x55\xae\x1f\x72\xcc\x61\x87\x0e\x50\x1c\x8d\x87\xfc\x31\x69\x4a\x40\x2e\x78\xa4\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\xde\x5f\xf1\x89\xff\x39\xef\xc4\x57\x3e\x5e\x9d\xe8\x4d\x4e\xb7\x90\x99\xa2\xfd\xe2\xe4\xb6\x2a\x96\x42\x4b\xc1\x4f\xbe\x8f\xe0\x65\x43\xb1\x39\xab\x09\x34\xde\xeb\xd3\x0c\x0d\xb2\x77\x48\x2e\x7d\x9b\xd2\xa7\xd6\x6f\x68\xcd\xb0\x22\xb0\x22\xa7\x78\x9f\x31\x52\xd8\x1e\xdc\x69\x46\x65\x66\x5c\xd8\x48\xca\x4d\x22\x21\x4f\xe6\x9d\xdd\xe6\x9b\xb3\xce\x77\xa0\x5f\x67\xfb\x37\x65\x40\xe6\x2c\xe7\xd3\xdf\x50\x58\xf9\xfd\x9b\x79\x4e\xb7\xfe\x5f\xe7\xa0\x61\x3b\xfa\x60\xa0\xe0\xfc\xc9\xff\x02\x00\x00\xff\xff\x69\x52\xa2\x49\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\x4f\x6b\xe3\x3e\x10\xbd\xe7\x53\xcc\x8f\x16\x2c\x07\xc7\xf1\xef\xd2\x83\x43\xf6\x52\x76\x4b\xa1\xb0\x4b\x49\xd9\x63\x51\xed\x71\xa2\xad\x22\x05\x69\xdc\x04\x4a\xbe\xfb\x22\xc7\x91\x65\xc7\xd9\xea\x10\x62\xbd\x37\x6f\xfe\x6a\xe6\x53\x58\x4b\xfd\xc6\xa5\x85\xad\xde\xa2\x22\x98\xce\x01\x00\xe6\xf3\xf6\x3b\xfd\x63\x27\x93\x80\x75\xaf\x55\x25\xd6\x09\xdc\xeb\x5a\x11\x9a\x04\x56\xb8\xdd\x49\x4e\x68\x61\x3a\x6f\x98\x78\xd8\x69\x43\x58\xc2\x6f\x4e\xc5\xa6\xd4\x6b\x07\x7c\x70\xd3\x7d\x2f\x81\x55\xb5\x2a\x48\x68\xc5\x62\xf8\x9c\x4c\x9c\x47\xc7\xb0\x28\xb1\x20\x6d\x2c\x2c\xe1\xb3\xb9\x75\xa7\x70\xae\x4a\xbd\x57\x39\x44\x37\x06\xa5\xe6\xe5\xac\x38\xb9\x8f\x1a\xd2\x71\xd1\x49\x48\x6e\x69\xe5\xec\xb3\x85\xbf\xdb\xf2\xc3\x13\x5f\x07\x24\xa1\xee\xcf\x9a\xb0\x84\x8a\x4b\x8b\x1d\xbb\xe2\xc4\x65\x88\xdf\x65\x03\xf0\xb9\x89\x61\x25\xb6\x68\xfe\x65\x8e\x66\x40\xf1\x1c\x72\xf7\x2b\x51\xbc\x3b\x2c\xac\xc4\x39\x65\x51\x01\x3b\x67\xb2\x5c\x42\x16\x83\x41\xaa\x8d\x6a\x35\xda\x0e\x95\x5a\x45\x04\x86\x0b\x8b\xc0\x15\xa0\x31\xda\x38\x53\x5e\x93\x36\x58\x19\xb4\x1b\x10\x16\x4a\x61\xf9\x9b\xc4\xb2\xa7\xfe\xdf\xa9\x91\xe9\x03\xd2\xcf\x5d\xe3\x3f\x0a\xcc\xa2\xd8\x01\x2c\x1e\xf1\xeb\xe2\x57\x7a\x0f\xcb\x76\x40\x58\x9c\xd6\x54\xb8\x5f\x25\x0e\x2c\x5e\xf4\xbc\x38\xe2\xec\xdc\x93\x6f\x6d\x23\xc2\x44\xdd\xb9\x65\xd1\x4d\x13\xbb\x8d\xe2\x74\x43\x5b\xc9\xfc\x4c\xa5\xcf\xa8\x4a\x34\x2c\x6a\xaa\xfa\xdd\x91\xa2\x64\x60\xee\x8e\xf3\xf0\x4a\x36\x6f\x5d\x25\x17\x04\x8b\x85\x56\xa5\x7d\x95\x58\x51\x3e\x68\x71\x8f\x7c\x8c\xe3\xd4\x6e\xf4\x3e\xcc\xc4\x9d\xb6\xa3\xe9\x8b\x7a\x57\x7a\xaf\x86\x70\x53\xd2\x60\xac\x86\x39\xba\x73\x75\xb0\x2e\x48\xfd\x01\xb3\x48\xee\xaf\xae\x89\x8d\x0e\x4b\xaf\x10\xba\xe0\x8e\x90\x9e\xde\xc9\x30\xcc\x26\xc3\x04\xee\x32\x98\xc2\xff\x59\x96\x8d\xc0\x63\xf3\x6b\x91\x1e\xdd\xf7\x07\x97\x5f\x87\x70\xcb\xfc\x33\x4e\xfd\xd3\x8d\x53\xc2\x03\xb1\xd9\xac\x5f\x84\xf1\xf0\xae\x44\xd6\x7f\xb5\x64\x6a\xec\x73\x8e\xfe\xeb\x08\x28\x2d\x0e\xe2\xbb\xfa\xe8\x3d\xa1\x02\x36\x2c\x7f\x0c\x85\x44\x6e\x7c\xfd\x87\xf0\x15\x85\xb0\x7e\x63\x12\x3d\xbc\xd3\x38\x5e\xac\x33\xa1\x04\x85\x4b\x42\xb4\x6d\x48\x80\xb4\x44\xc3\x55\x81\x61\x1f\x4e\x0f\xcc\x55\xe7\x8c\x76\xe2\x61\x13\xfd\x02\x4a\xe0\xac\xd8\x9f\x88\x30\x86\x7a\x57\x72\xc2\x66\xa9\xfa\x38\xc8\x86\x6e\xfd\xd2\x25\x3b\xb2\x0c\x42\xad\x35\x52\x5f\x28\x94\x39\xed\x9a\x56\x6d\xd4\xf6\x87\x2b\xde\x17\xe6\x41\x9f\xfb\x1a\x2d\xde\x19\x3c\x2a\x41\x79\x53\xe2\x6e\x61\xfc\xd2\x6a\x9d\xfb\x94\xbb\xfb\x07\xa4\x27\x6e\xe9\xa5\x01\xf2\x53\x1e\x1d\xfa\x68\x9b\xc8\x72\x1f\xa3\x77\x7c\x64\x71\xbc\x98\xfc\x0d\x00\x00\xff\xff\x02\x58\xad\xbf\x67\x07\x00\x00")
func staticWatchdogJsBytes() ([]byte, error) {
return bindataRead(