diff --git a/assets/static/alerts.js b/assets/static/alerts.js index 02a2f68dd..a635f4513 100644 --- a/assets/static/alerts.js +++ b/assets/static/alerts.js @@ -21,18 +21,7 @@ var Alerts = (function() { // called after group was rendered for the first time Added() { - var groupID = '#' + this.id; - $.each($(groupID).find('[data-toggle=tooltip]'), function(i, elem) { - $(elem).tooltip({ - animation: false, // slows down tooltip removal - delay: { - show: 500, - hide: 0 - }, - title: $(elem).attr('title') || $(elem).data('ts-title'), - trigger: 'hover' - }); - }); + UI.SetupAlertGroupUI($('#' + this.id)); } Update() { diff --git a/assets/static/base.css b/assets/static/base.css index e2114c0c5..c9b823ecd 100644 --- a/assets/static/base.css +++ b/assets/static/base.css @@ -378,4 +378,5 @@ table.table.examples > tbody > tr td:first-child { } span.alert-group-link > a { color: #fff; + opacity: 0; } diff --git a/assets/static/ui.js b/assets/static/ui.js new file mode 100644 index 000000000..08fa86849 --- /dev/null +++ b/assets/static/ui.js @@ -0,0 +1,89 @@ +var UI = (function(params) { + + + // 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() { + $('#labelModal').on('show.bs.modal', function(event) { + Unsee.Pause(); + var modal = $(this); + var label = $(event.relatedTarget); + var label_key = label.data('label-key'); + var label_val = label.data('label-val'); + var attrs = Alerts.GetLabelAttrs(label_key, label_val); + var counter = Summary.Get(label_key, label_val); + modal.find('.modal-title').html( + haml.compileHaml('modal-title')({ + attrs: attrs, + counter: counter + }) + ); + var hints = Autocomplete.GenerateHints(label_key, label_val); + modal.find('.modal-body').html(haml.compileHaml('modal-body')({ + hints: hints + })); + modal.on('click', '.modal-button-filter', function(elem) { + var filter = $(elem.target).data('filter-append-value'); + $('#labelModal').modal('hide'); + Filters.AddFilter(filter); + }); + }); + $('#labelModal').on('hidden.bs.modal', function(event) { + var modal = $(this); + modal.find('.modal-title').children().remove(); + modal.find('.modal-body').children().remove(); + Unsee.WaitForNextReload(); + }); + } + + + // 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) { + $(elem).on('mouseenter', function() { + $(this).find('.alert-group-link > a').finish().animate({ + opacity: 100 + }, 200); + }); + $(elem).on('mouseleave', function() { + $(this).find('.alert-group-link > a').finish().animate({ + opacity: 0 + }, 200); + }); + } + + + // find all elements inside alert group panel that will use tooltips + // and setup those + setupGroupTooltips = function(groupElem) { + $.each(groupElem.find('[data-toggle=tooltip]'), function(i, elem) { + $(elem).tooltip({ + animation: false, // slows down tooltip removal + delay: { + show: 500, + hide: 0 + }, + title: $(elem).attr('title') || $(elem).data('ts-title'), + trigger: 'hover' + }); + }); + } + + + setupAlertGroupUI = function(elem) { + setupGroupLinkHover(elem); + setupGroupTooltips(elem); + } + + + init = function() { + setupModal(); + } + + + return { + Init: init, + SetupAlertGroupUI: setupAlertGroupUI + } + +})(); diff --git a/assets/static/unsee.js b/assets/static/unsee.js index 0f5614dc0..bdf0f6522 100644 --- a/assets/static/unsee.js +++ b/assets/static/unsee.js @@ -238,35 +238,7 @@ $(document).ready(function() { trigger: 'hover' }); - $('#labelModal').on('show.bs.modal', function(event) { - Unsee.Pause(); - var modal = $(this); - var label = $(event.relatedTarget); - var label_key = label.data('label-key'); - var label_val = label.data('label-val'); - var attrs = Alerts.GetLabelAttrs(label_key, label_val); - var counter = Summary.Get(label_key, label_val); - modal.find('.modal-title').html( - haml.compileHaml('modal-title')({ - attrs: attrs, - counter: counter - }) - ); - var hints = Autocomplete.GenerateHints(label_key, label_val); - modal.find('.modal-body').html(haml.compileHaml('modal-body')({hints: hints})); - modal.on('click', '.modal-button-filter', function(elem){ - var filter = $(elem.target).data('filter-append-value'); - $('#labelModal').modal('hide'); - Filters.AddFilter(filter); - }); - }); - $('#labelModal').on('hidden.bs.modal', function(event) { - var modal = $(this); - modal.find('.modal-title').children().remove(); - modal.find('.modal-body').children().remove(); - Unsee.WaitForNextReload(); - }); - + UI.Init(); Unsee.Init(); // delay initial alert load to allow browser finish rendering diff --git a/assets/templates/js.html b/assets/templates/js.html index 4d7e83b1e..62112c0ec 100644 --- a/assets/templates/js.html +++ b/assets/templates/js.html @@ -12,6 +12,7 @@ + {{ if .SentryDSN }} diff --git a/bindata_assetfs.go b/bindata_assetfs.go index 37fac099a..f9235cb6e 100644 --- a/bindata_assetfs.go +++ b/bindata_assetfs.go @@ -60,6 +60,7 @@ // assets/static/progress.js // assets/static/querystring.js // assets/static/summary.js +// assets/static/ui.js // assets/static/unsee.js // assets/static/watchdog.js // DO NOT EDIT! @@ -210,7 +211,7 @@ func templatesIndexHtml() (*asset, error) { return a, nil } -var _templatesJsHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x94\x41\x8b\xdb\x30\x10\x85\xef\xfe\x15\x83\x29\xd8\x86\xad\xbc\xf4\xd8\x5d\xa7\x97\x9e\x97\xb6\x0b\xed\xa5\x50\x54\x79\xec\xca\xc8\x92\x3a\x1a\x65\x63\x8c\xfe\x7b\x71\x52\xd2\x90\x43\x2f\x59\xe9\x28\xde\xfb\xde\x93\x90\xe6\x31\x28\xd2\x9e\x81\x17\x8f\x5d\xc9\x78\xe0\x76\x92\x7b\x79\xda\x2d\x21\x90\xea\xca\x75\x05\xf1\x0d\x7f\x7e\x22\x1c\xf4\x01\x52\x0a\x2c\x59\xab\x76\xfa\x1d\x91\x16\xc1\x8b\xd7\x76\x7c\x7b\x2f\xde\x89\x7b\x31\x85\x72\xf7\xd8\x9e\xdc\xbb\xe2\x06\xb8\xa1\x78\x05\xbb\x85\x26\x0d\x12\x07\x31\x85\x0f\x3f\xba\x4d\xf2\xe4\x5e\x3e\x43\x4a\xaf\xd4\x55\x46\x76\xca\xcd\xde\x20\x63\xae\x0c\xe5\xec\xa0\xc7\x7c\x74\xe3\x28\xdb\xfd\x28\x17\x2d\x23\xe5\xc2\x0f\xda\x30\xe6\x6b\x3f\x92\xee\x73\xb1\x3d\xb9\x91\x30\x64\xeb\x1e\xe2\x3c\x4b\x5a\x72\xe1\x5f\x24\xab\x5f\xbd\xcb\xf6\x2c\x8f\x03\x26\x30\x69\x9b\x2d\x22\xda\x80\xff\xff\xb4\xc5\xba\x82\x1e\x40\x3c\xa3\x65\x5a\x3e\x3e\x3f\x41\x4a\x57\x89\xd2\x7b\xa3\x95\x64\xed\xec\x65\xf0\xae\x00\x00\x78\x53\xf7\x4e\xc5\x19\x2d\x37\x82\x50\xf6\x4b\x3d\x44\xab\x36\x2d\xd4\x0d\xac\x47\xcd\xb6\xf6\x92\xa0\x0f\x16\x3a\xa8\xb6\x26\x97\x71\x95\x20\xf4\x46\x2a\xac\xab\xef\x6d\x75\x07\x55\x5b\x35\x0f\x67\xe3\x17\xb9\x47\x2b\x4e\x03\xa2\xee\x83\xbd\xbb\x80\x02\x10\x1a\x94\x01\xdf\xc3\x06\xfd\x8a\x14\xb6\xe0\x94\xce\x8a\xd4\x08\x6d\x03\x4b\x63\xea\xbf\xcc\xd4\x3c\x14\xff\x8e\xbf\xae\x80\xb6\xdf\x1c\x7f\x02\x00\x00\xff\xff\x98\x54\x76\x9a\x2b\x06\x00\x00") +var _templatesJsHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x94\xc1\x8a\xdb\x30\x10\x86\xef\x7e\x8a\xc1\x14\x6c\xc3\x56\x5e\x7a\xec\xae\xd3\x4b\xcf\x4b\xdb\x85\xf6\x52\x28\xaa\x3c\x76\x65\x64\x49\x1d\x8d\xb2\x31\x46\xef\x5e\x9c\x94\x34\xe4\xd0\x4b\x56\x3e\x9a\x7f\xbe\xef\x97\x10\xf3\x18\x14\x69\xcf\xc0\x8b\xc7\xae\x64\x3c\x70\x3b\xc9\xbd\x3c\xfd\x2d\x21\x90\xea\xca\x75\x05\xf1\x0d\x7f\x7e\x22\x1c\xf4\x01\x52\x0a\x2c\x59\xab\x76\xfa\x1d\x91\x16\xc1\x8b\xd7\x76\x7c\x7b\x2f\xde\x89\x7b\x31\x85\x72\xf7\xd8\x9e\xa6\x77\xc5\x0d\x70\x43\xf1\x0a\x76\x0b\x4d\x1a\x24\x0e\x62\x0a\x1f\x7e\x74\x5b\xe4\xc9\xbd\x7c\x86\x94\x5e\xa9\xab\x8c\xec\x94\x9b\xbd\x41\xc6\x5c\x0e\xe5\xec\xa0\xc7\x7c\x74\xe3\x28\xdb\xfd\x28\x17\x2d\x23\xe5\xc2\x0f\xda\x30\xe6\x6b\x3f\x92\xee\x73\xb1\x3d\xb9\x91\x30\x64\xeb\x1e\xe2\x3c\x4b\x5a\x72\xe1\x5f\x24\xab\x5f\xbd\xcb\xf6\x2c\x8f\x0b\x26\x30\x69\x9b\x4d\x11\x75\x36\xb2\x0d\xf8\xff\x75\x50\xac\x2b\xe8\x01\xc4\x33\x5a\xa6\xe5\xe3\xf3\x13\xa4\x74\x65\x94\xde\x1b\xad\x24\x6b\x67\x2f\xc5\xbb\x02\x00\xe0\x4d\xdd\x3b\x15\x67\xb4\xdc\x08\x42\xd9\x2f\xf5\x10\xad\xda\xb2\x50\x37\xb0\x1e\x33\xdb\xb7\x97\x04\x7d\xb0\xd0\x41\xb5\x35\xb9\xd4\x55\x82\xd0\x1b\xa9\xb0\xae\xbe\xb7\xd5\x1d\x54\x6d\xd5\x3c\x9c\x07\xbf\xc8\x3d\x5a\x71\x5a\x3d\x75\x1f\xec\xdd\x05\x14\x80\xd0\xa0\x0c\xf8\x1e\x36\xe8\x57\xa4\xb0\x89\x53\x3a\x27\x52\x23\xb4\x0d\x2c\x8d\xa9\xff\x32\x53\xf3\x50\xfc\x3b\xfe\xba\x02\xda\x7e\x9b\xf8\x13\x00\x00\xff\xff\xf9\xa4\x98\x8a\x85\x06\x00\x00") func templatesJsHtmlBytes() ([]byte, error) { return bindataRead( @@ -270,7 +271,7 @@ func templatesSummaryHaml() (*asset, error) { return a, nil } -var _staticAlertsJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x58\xeb\x8f\xdb\xb8\x11\xff\x9e\xbf\x62\x7a\x0d\x20\x19\xf1\xca\x0e\x82\x4b\x0b\xa5\x3e\x20\xdd\x43\xd3\xa0\xb9\x06\xc8\x26\x9f\xb6\x8b\x05\x57\x1c\x5b\xbc\xa5\x48\x81\x1c\xad\xe3\xe6\xf6\x7f\x2f\x48\xea\x41\x3d\x9c\x07\xea\x0f\x86\x24\xce\x0c\xe7\xc5\xdf\xcc\xf0\x81\x19\x78\x2d\xd1\x90\x85\x1d\xa4\xfb\x46\x15\x24\xb4\x4a\x57\xf0\xe5\xc9\x93\x27\x00\x00\x8e\xc0\x0a\x89\xaa\x40\x47\xf2\xe5\x71\xed\x3f\xbb\x9f\x64\x77\x28\x2f\x59\x51\x22\xec\x40\xe1\x11\xde\x7d\xf8\xf4\x1b\xab\xd3\xe7\xdb\xed\x76\xf5\xaa\xe5\x2f\x24\xb3\x36\x6c\xf1\xc6\xe8\xa6\x86\x2f\x3d\x7f\xa1\x95\x25\xd3\x14\xa4\x4d\x7a\x70\x6b\xbf\x32\x62\xab\x88\xc0\xfd\x9e\x66\xf8\x99\x50\xf1\x94\x4a\x61\xd7\x30\xd0\xbd\xea\xc9\x1e\x9f\xf4\x8f\x1f\x50\x71\x34\xe9\x54\x88\x41\x6a\x8c\x82\x92\x55\x32\x2b\x74\x55\x0b\x89\xff\x64\x95\x4c\x13\x2f\xce\x26\xab\x74\x4c\xef\x7e\x7e\x29\x07\xbf\xed\x6c\xb1\xf3\x48\xde\x3f\x2d\xd0\x10\x23\x51\xdc\x16\x5a\x6a\x73\xeb\x7d\x95\xc3\xa5\x7b\xb1\xd9\x1b\xa4\x2b\xbf\xfa\xce\x7d\xb6\xe9\x6a\xce\xcd\x9c\xc7\x6e\xa5\xa8\x04\xe5\xf0\xf3\x68\xf9\x71\xd9\xf6\xcd\x06\x0a\x26\x25\x72\x60\x7b\x42\x13\x0c\x80\x23\xb3\x60\xbc\x57\x90\xc3\x5e\x1b\xa0\x12\x61\x2f\x8c\x25\x20\x51\x61\xcf\xfd\x9a\x73\xe4\x33\xc7\xb9\xe8\x7b\x39\x6f\x7f\x85\x1d\x24\x7f\x4e\xe0\x99\xf7\x48\x26\xf8\xab\x69\x98\x58\x51\xa6\x4f\xd3\x96\x7a\x95\xed\x85\xe2\x69\x72\xcd\x19\xb1\x0b\xd2\x87\x83\xc4\x1d\x69\x2d\x49\xd4\x37\xc9\x6a\x0d\x7d\xaa\x89\x35\xa0\xc4\x6a\xba\xb3\x17\x9a\xfa\x95\xac\xe5\x5b\x08\x92\xf7\x94\x12\x15\x73\xa2\x72\xd8\x33\x69\x71\xed\x3c\x61\xa5\x3e\x5a\xe0\xfa\xa8\xa0\xe5\x06\x83\x95\x7e\x60\x72\x51\x06\x47\xc9\x4e\xf9\x82\x0a\x7d\x30\x4b\x7d\xcc\xe1\xe7\xed\x76\x1e\xa9\xee\x57\x0a\x8e\x39\x6c\x17\xd7\x1f\x97\xd9\x48\x90\xc4\xbc\xb7\x93\x11\x99\x34\xf1\x1f\x93\x15\xfc\xf1\x47\xbf\xe0\x9c\x98\x26\x64\x2f\xda\xb5\x33\xd2\x8c\x38\x1c\xd0\xe4\x90\x94\xfa\x01\x4d\x32\x23\x8a\x13\x67\xfa\x1e\x25\xd2\xa7\x9a\x33\xc2\x59\x2e\x6c\x36\xde\x44\xa8\x75\xed\xc4\x5b\x10\xca\xe7\x42\x48\x90\x71\x36\xa4\xa3\x54\x81\x67\x90\x40\xc8\x04\x7f\x0e\x2e\xe8\x54\xe3\xee\xa7\xbd\x90\x84\xe6\xa7\x9b\x64\x95\xb5\x32\xd3\xc4\xed\x90\x38\xf0\x98\xec\xec\x83\x87\xc0\xa4\xf4\xd9\x82\x8a\x2c\xd4\x46\xb8\x7c\xd6\x0e\x48\x08\x15\x41\xe3\x15\x77\x5f\xea\xc6\x1c\x5a\xea\x07\xb7\x22\x85\x25\x54\x4e\x69\xa6\x38\x94\x5a\xdf\xdb\xe5\xf4\x1d\xe9\xdd\x25\x71\x56\x33\x85\xf2\xe2\x4e\xf3\xd3\x1a\xda\x97\x12\x19\x17\xea\xf0\xa3\xa9\x1c\xec\x48\x17\x02\xf1\x35\x07\xae\xb2\x92\x2a\x99\x3e\xf5\x20\x98\x75\x20\xd7\x7e\x5d\x4d\x84\xcd\x78\x43\xf6\x94\xcc\x96\xc9\x3a\x7c\x75\xcf\x0b\x4e\xae\x1b\x69\xd1\x03\xc4\x1d\xe3\x07\xef\x48\x97\xf7\x40\x25\xa3\x16\x4e\x3a\x57\x3b\x58\x29\x4a\xa6\x0e\xc8\xd7\x60\xb0\x46\x46\x20\x08\xe8\x28\x0a\xfc\x66\x2a\xfc\xd2\x3a\xb1\x7f\xe8\xbc\xe9\x3e\xf8\xad\x73\xa1\x2e\x1e\x04\x1e\x6b\x6d\x28\xf1\x61\x10\xb6\x4c\x57\xd9\x9e\x71\x7c\xdf\x50\xfa\x62\xbb\x0d\x2f\x6f\xd5\xf0\xbc\xb4\x30\x4b\xf0\xc7\xb6\x2e\x71\xb4\x64\xf4\x29\xd4\xa4\xdd\x10\xc3\x0e\xbf\xa2\x18\x76\x26\x74\x40\xf8\xe3\xd9\xfc\x6d\x49\x33\x84\xec\x41\x6f\x2e\x64\x9c\xab\x13\xc0\xfd\x3f\x73\xf5\x7c\x9e\xc6\x60\xf1\xc6\x08\x9e\x7d\x08\x24\x53\x3d\x5a\xb2\xce\xcf\x56\x1b\xfa\x8d\xd5\x7f\x3f\xfd\x0b\x4f\xb1\x9f\x2b\x56\x7f\xd4\x57\xda\x50\xac\x81\x2b\x37\xf7\x78\x72\x8d\xc6\xfb\xbb\xdf\xb1\xa0\xcc\xbd\x45\xb4\x83\x0a\x6e\x21\x73\xc2\x63\x1d\x7d\xb3\xa2\x0d\x21\x87\x1d\x5c\xdf\xcc\x7c\xe6\x98\xc6\x3e\xb8\xc7\xd3\xd4\x05\x41\x40\x56\x37\xb6\x5c\xa8\x38\xf7\x78\xca\xdd\xdf\x1c\x82\x1f\x98\x6c\x30\x87\x5e\xd9\xeb\x7b\x3c\xdd\xcc\xc9\x08\x3f\x93\x97\xe0\xa2\x9f\x83\x73\xdd\x98\xe5\x3c\x44\x47\xcf\x6d\x47\x13\x74\x1d\x7b\xdc\x27\xe5\x6b\x22\x63\x63\x7f\x3b\x95\x83\x8a\x53\x87\x7b\x7a\xd8\x8d\x55\xf2\x94\x11\x42\x38\x42\xd6\xca\x1c\xfa\xbe\xec\x80\x94\xfa\xd7\x48\x35\xb1\x87\x34\x90\xfe\x69\x07\x8d\xe2\xb8\x17\x0a\xf9\xaa\x53\xd9\x2f\x45\x92\x3b\xa9\x63\x57\x07\x2f\x79\xd1\x63\x17\xfa\x7e\x32\x87\x24\x68\x1d\x0e\xa0\x43\x77\xaf\xf5\xd0\x5e\x5d\x3a\xb2\xd8\xe8\xb1\x14\x4b\x27\x57\x78\x07\xfa\x98\x34\x82\x8c\xee\x29\x32\xd9\x76\x26\xaf\x83\xea\xf3\xa0\xb4\x16\xc6\x31\x29\x9b\x8a\x29\xf1\x5f\xfc\x28\x2a\xb4\xc4\xaa\x7a\x14\x9b\x69\x44\x94\x3e\xc2\x0e\x2a\xed\xca\x5c\x9c\xde\xae\xc3\xf3\x98\xeb\x5b\x37\x2f\x27\x68\x66\x1d\x54\xdf\x21\x18\x94\x8c\xc4\x03\x2e\x60\x45\xd6\x62\x95\xfd\x1e\x14\x70\x4a\xf8\x89\xa0\xd5\x61\xda\x87\x38\x19\x61\x29\x7b\x7b\xf5\xfe\xf6\xaf\x2f\xb7\xcf\x27\x45\x28\x4e\x2c\xb2\xd9\xde\xe8\xea\xdf\xfa\x38\xad\x7b\x9d\xdc\x16\xba\x3a\x15\x2f\x6c\xcd\x94\x83\x40\xfc\x3c\x4f\xaf\x98\x2f\x34\x4c\x01\x40\xbb\xe6\x68\xed\xf6\x23\x7d\x45\x46\xa8\xc3\xac\x38\x06\xcb\x6e\xd9\xc1\xcf\x2c\xfa\x98\x71\xb1\xdf\xa7\x64\xd7\x90\x54\x42\x35\x84\x36\x99\x70\xb8\x74\x6e\x39\xfe\x06\x2f\xbe\x56\xdb\x19\xe7\x21\xed\x12\x83\x05\x2a\xba\xf0\x3d\x7c\xd2\x9b\x27\x54\x21\xb8\xfb\x2e\x14\x17\x05\x23\x6d\x92\x0e\x68\x5b\xbe\x52\x70\x8e\x6a\xaa\xc1\x23\xa0\xab\xcb\xdf\x6a\x2a\x7e\x7c\xef\x41\xe1\x33\x1b\x8f\xa0\x27\x4e\xc3\xbd\x64\xb6\x84\xb0\x55\x18\x55\x6c\x5c\xe4\xb2\x58\x89\xaf\xd5\xf2\x8f\xbe\xec\x0d\x55\xfb\x07\xde\xc7\x07\x2c\xb4\x7e\xfd\x24\xdb\x27\x38\xab\xc5\x07\xb4\xb5\x56\x76\x86\x7b\x5e\xb9\x4b\xdd\x28\x82\x1d\x6c\xc7\x45\x24\xcc\x85\x7e\xde\x1d\x1b\xde\xb6\x98\x07\xa9\xef\x98\x1c\x06\x63\x2e\x0a\x02\x66\x41\x50\x62\x41\x21\xf2\x76\xd8\x0a\x93\x97\x50\x87\x5e\x46\x34\x4b\x47\xba\x5d\x27\xdd\xf7\xe4\x66\x82\xba\xb6\xa9\x2a\x66\x4e\x6e\xe6\x6d\xf5\xe9\x1d\x1d\x0e\xf7\x48\x4c\xe1\xec\x41\x63\x93\x9b\xe8\x94\xfb\x23\x74\xeb\x11\xae\x5b\x5f\xcd\xa6\x6c\x27\xaa\x5b\x9d\xf1\x3e\x30\xb9\x86\x52\xd0\x94\xcf\x5b\x34\x28\x78\xdd\xef\x34\x54\x92\x5e\xc0\x0d\xec\xbc\x88\xaf\xcc\x20\xd1\xf3\x55\x90\x9a\xb5\xc3\x48\xb4\x49\x9c\x8a\x4b\x2e\x68\x67\xfa\x9b\x31\xcc\x9d\xbd\x60\xe8\x53\xa1\x6b\x05\x15\x1e\xa3\xfb\x8a\x74\xe9\xc6\x01\xba\xfb\x01\x7b\x3d\xb0\x66\x82\x3b\x13\x87\x0f\x63\xfa\x28\xdd\x9e\xc5\x54\x59\x38\x3e\x99\x44\x75\xa0\xf2\xd5\xf2\x91\xbb\x0c\x81\xc9\xae\x90\xd2\x41\xd0\xb4\x23\xbb\x2a\x03\xc4\x8e\xf2\x87\x0b\x43\xbe\xf3\x72\xb3\xf1\x38\x99\x4b\xa6\xb8\x74\x63\x92\x41\xc6\x4f\x80\x9f\x85\x25\xd7\x85\x07\xd3\xa6\x4e\xf6\x5b\xbc\x25\xac\x6c\x3a\x2d\x21\x2d\xa3\xb7\xe7\xec\x15\x02\xec\x3a\x9f\x8d\xe8\x9d\xdb\xe6\x88\x1b\x38\xc6\x0d\xc4\x3c\xf5\x36\x9b\x56\xb4\x25\x21\x25\xd4\x06\x2d\x2a\x5a\x43\x51\x62\x71\xef\xe4\xb4\x23\xca\x8c\xb1\xdf\xc2\x8f\x42\x6e\x9f\xb1\x4e\xae\xa4\x58\xa4\x30\x28\x9d\xb9\x16\xe8\x37\x77\xb3\x50\xc0\x05\x3f\x0b\xb9\x13\xdf\x6e\x6c\x17\x19\xc3\xc6\xdd\x94\xfd\x6a\x91\xe6\xbc\x3a\x9d\x1b\xfd\xcb\x32\x73\x17\x72\x32\xa3\x1e\x6e\xa2\x7c\x49\x54\xdb\x7c\xb3\x39\x08\x2a\x9b\xbb\xac\xd0\xd5\x86\x8e\x77\x76\x73\xa7\x35\x59\x32\xac\xde\x08\x6b\x1b\xb4\x9b\xe7\x2f\x5f\xfc\xe5\xe5\xa2\x14\x8b\xe4\x3a\x1a\xdd\x50\xba\xd8\xcc\x2c\x5b\xde\x5e\x35\x9d\xb9\x28\x81\xf6\xfa\x70\xb6\xf2\x7d\x35\xb1\x8f\x8a\xb0\x70\xd0\x0a\xd7\xdd\xa4\x07\x82\x66\xc4\xf1\x10\x98\x4e\xb3\x72\x41\x87\xb1\x63\xcf\x6b\x37\x5c\x58\xb8\xc6\xa7\xab\x26\x5d\x91\x38\x62\x62\x10\xb8\x56\x08\x47\x41\xe5\x54\x31\x8e\x12\x5d\x89\xf9\xe6\x59\x99\x16\xe5\x36\xf5\x1c\x7e\x4d\x4e\xb0\x3b\x83\xdd\xe4\xbe\x38\x18\x05\xfa\xf8\x54\xf3\x16\x32\xa7\xe1\x6c\xc5\x84\xf1\x28\xc4\xb3\xbf\x8f\x58\x46\xf2\xcd\x06\x58\x5d\xa3\xe2\x91\x66\x20\x14\x14\x65\xa3\xa2\x6b\x18\x77\x24\x3b\xe1\x01\x0b\xe1\x17\xd8\x4e\xb7\xf7\x20\xf4\xda\x8b\x4b\x9f\xf6\xf4\xb6\x96\xa2\xc0\x74\xeb\x93\x67\x95\xfd\xae\x85\x4a\x93\xff\xa8\x64\x35\x6d\xff\x96\x03\x38\xbe\x44\x65\xf2\xc8\x4e\x16\x0c\xee\x0d\xda\x72\xd6\x6a\xf7\xa4\xf3\x9e\x3e\x5d\x28\x4d\xdf\xef\xd9\xd1\xe1\x38\x13\x65\xe7\x24\x6f\xc3\x94\xf9\x75\x43\xba\xd0\x55\xed\x52\x27\xfb\x80\x6e\x48\x99\x98\xde\xce\xec\xdc\xb0\x59\x1b\xee\xa4\x5e\x6a\xb5\x17\x07\x37\x0a\xbd\xaf\xbd\x9e\x89\xef\xf1\x92\x95\x9f\x8e\x56\x4b\xa7\xfa\x93\xb2\x88\xd9\x3f\x1c\xd9\xec\x42\xeb\xdc\xb5\x4b\x3b\x22\x0d\xc2\x02\x0c\xe6\xa3\x06\x6e\x98\xd5\xae\xa2\xdb\x83\x7c\x74\x97\x30\xd0\xbc\x41\x7a\xd7\x8f\xbc\x79\x34\xfe\x76\x1b\x3f\xfa\xd4\xfc\x5f\x00\x00\x00\xff\xff\x69\xbf\x11\x14\xea\x18\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\x7a\x0d\x20\x2d\xb2\xd6\x3a\x08\x9a\x16\x9b\xee\x01\xa9\x0f\x4d\x8d\xe6\x1a\x20\x4e\x3e\xb9\x86\x41\x8b\xb3\x2b\x9e\x29\x52\x20\x47\xde\x6c\x03\xff\xef\x05\x1f\x92\xa8\x87\x93\x5c\xd1\xfd\xb0\x90\xc4\x79\xfe\x38\x9c\x07\x1f\x98\x81\xb7\x12\x0d\x59\xd8\x41\xbe\x6f\x55\x49\x42\xab\x7c\x05\x5f\x9f\x3d\x7b\x06\x00\xe0\x08\xac\x90\xa8\x4a\x74\x24\x5f\x1f\xd7\xfe\xb3\xfb\x49\x76\x87\xf2\x82\x95\x15\xc2\x0e\x14\x1e\xe1\xfd\xc7\xcf\xbf\xb2\x26\x7f\x79\x7e\x7e\xbe\x7a\x13\xf9\x4b\xc9\xac\x0d\x2a\xde\x19\xdd\x36\xf0\xb5\xe7\x2f\xb5\xb2\x64\xda\x92\xb4\xc9\x0f\x6e\xed\x17\x46\x6c\x95\x10\xb8\xdf\xf3\x02\xbf\x10\x2a\x9e\x53\x25\xec\x1a\x06\xba\x37\x3d\xd9\xe3\xb3\xfe\xf1\x23\x2a\x8e\x26\x9f\x0a\x31\x48\xad\x51\x50\xb1\x5a\x16\xa5\xae\x1b\x21\xf1\x1f\xac\x96\x79\xe6\xc5\xd9\x6c\x95\x8f\xe9\xdd\xcf\x2f\x6d\xc1\xab\x9d\x2d\x76\x88\x6c\xfb\xa7\x05\x1a\x62\x24\xca\xdb\x52\x4b\x6d\x6e\x3d\x56\x5b\xb8\x70\x2f\xb6\x78\x87\x74\xe5\x57\xdf\xbb\xcf\x36\x5f\xcd\xb9\x99\x43\xec\x56\x8a\x5a\xd0\x16\xfe\x34\x5a\x7e\x5c\xf6\x7d\xb3\x81\x92\x49\x89\x1c\xd8\x9e\xd0\x04\x07\xe0\xc8\x2c\x18\x8f\x0a\x72\xd8\x6b\x03\x54\x21\xec\x85\xb1\x04\x24\x6a\xec\xb9\xdf\x72\x8e\x7c\x06\xdc\xe7\xcb\xe2\x0a\xa9\x6d\x86\xfd\xfb\x7c\x99\x3f\xcf\xb3\x3f\x66\xf0\xc2\x43\x53\x08\xbe\x5a\x36\xe7\x73\xc3\x19\xe1\x4c\xe2\x66\x03\x95\xe0\x08\x8d\x6e\xf4\x03\x1a\x0b\x42\x79\x41\xc1\xdc\xf1\xd6\x8f\xf5\xc0\x0b\xc8\xe0\x9a\x33\x62\x67\x1e\xcd\x33\x3a\x35\xb8\xfb\x69\x2f\x24\xa1\xf9\xe9\x26\x5b\x15\x51\x66\x9e\x39\x0d\x99\x0b\xc1\x89\x66\x83\xb5\x7e\x40\x60\x52\x02\x4a\xac\x51\x91\x85\xc6\x08\x87\x8a\x76\xe1\x48\xa8\x08\x5a\x6f\xb8\xfb\xd2\xb4\xe6\x10\xa9\x1f\xdc\x8a\x14\x96\x50\x39\xa3\x99\xe2\x50\x69\x7d\x6f\xa7\xb1\xca\xca\x6a\x86\x4f\xb1\x17\x8a\xe7\x59\xd1\x30\x85\xf2\xec\x4e\xf3\xd3\x1a\xe2\x4b\x85\x8c\x0b\x75\xc8\x56\x6b\xe8\xcf\x9e\x58\x7b\xe3\xa6\xc0\x05\x44\xfc\x4a\x11\xfc\xc8\x13\xe0\xbb\xb8\xf8\x16\x80\xab\xa2\xa2\x5a\xe6\xcf\xfd\x51\x2a\xba\xa3\x12\xbf\xae\x26\xc2\x66\xbc\x0e\xf8\x3c\xab\x98\xad\xb2\x75\xf8\xea\x9e\x17\x40\x6e\x5a\x69\xd1\x87\xd9\x1d\xe3\x07\x0f\xa4\xad\xf4\x11\xa8\x62\x14\x83\xb2\x83\xda\x05\x67\x59\x31\x75\x40\xbe\x06\x83\x0d\x32\x02\x41\x40\x47\x51\xe2\x77\x43\xe1\xe7\x08\x62\xff\xd0\xa1\xe9\x3e\x78\xd5\x5b\xa1\xce\x1e\x04\x1e\x1b\x6d\x28\xf3\xdb\x20\x6c\x95\xaf\x8a\x3d\xe3\xf8\xa1\xa5\xfc\xd5\xf9\x79\x78\xb9\x54\xc3\xf3\xd2\xc2\x2c\xc0\x1f\x63\x76\xe3\x68\xc9\xe8\x53\xc8\x6c\xbb\x61\x0f\xbd\x9b\x97\xbf\xa4\x7b\xd8\xb9\x10\x97\xfe\x87\x68\xfe\xbe\x24\xd2\x87\x83\xc4\x1d\x69\x2d\x49\x34\x4e\x48\x7c\x5c\x10\x32\x8e\xd5\xce\xe0\xff\x4f\xac\x3e\x1d\xa7\x69\xee\x7a\x67\x04\x2f\x3e\x06\x92\xa9\x1d\x91\xac\xc3\xd9\x6a\x43\xbf\xb2\xe6\x6f\xa7\x7f\xe2\x29\xc5\xb9\x66\xcd\x27\x7d\xa5\x0d\xa5\x16\xb8\x92\x75\x8f\x27\x57\xae\x3e\xdc\xfd\x86\x25\x15\xee\x2d\xa1\x1d\x4c\x70\x0b\x85\x13\x9e\xda\xe8\x4b\x9e\x36\x84\x1c\x76\x70\x7d\x33\xc3\xcc\x31\x8d\x31\xb8\xc7\xd3\x14\x82\x20\xa0\x68\x5a\x5b\x2d\x14\x97\x7b\x3c\x6d\xdd\xdf\x3c\xef\x3f\x30\xd9\xe2\x16\x7a\x63\xaf\xef\xf1\x74\x33\x27\x23\xfc\x42\x5e\x82\xdb\xfd\x2d\x38\xe8\xc6\x2c\x4f\x57\x8c\xe4\x39\xd6\xc5\x60\xeb\x18\x71\x1f\x94\x6f\x89\x8c\x4d\xf1\x76\x26\x07\x13\xa7\x80\x7b\x7a\xd8\x8d\x4d\xf2\x94\x49\x86\x70\x84\x2c\xca\x1c\xba\x87\xe2\x80\x94\xfb\xd7\xc4\x34\xb1\x87\x3c\x90\xfe\x61\x07\xad\xe2\xb8\x17\x0a\xf9\xaa\x33\xd9\x2f\x25\x92\x3b\xa9\x63\xa8\x03\x4a\x5e\xf4\x18\x42\xdf\x95\x6c\x21\x0b\x56\x87\x03\xe8\xb2\xbb\xb7\x7a\x28\xd2\x17\x8e\x2c\x75\x7a\x2c\xc5\xd2\x49\x62\x5a\xd4\x53\xd2\x24\x65\x74\x4f\x89\xcb\xb6\x73\x79\x1d\x4c\x9f\x6f\x4a\xf4\x30\xdd\x93\xaa\xad\x99\x12\xff\xc1\x4f\xa2\x46\x4b\xac\x6e\x46\x7b\x33\xdd\x11\xa5\x8f\xb0\x83\x5a\xbb\x32\x97\x86\xb7\xeb\x13\x7c\xce\xf5\x0d\x80\x97\x13\x2c\xb3\x2e\x55\xdf\x21\x18\x94\x8c\xc4\x03\x2e\xe4\x8a\x22\xe6\x2a\xfb\x23\x59\xc0\x19\xe1\xfb\xca\x68\x43\x97\x15\x42\x25\x09\x32\xc2\x52\x71\x79\xf5\xe1\xf6\x2f\xaf\xcf\x5f\x4e\x8a\x50\x1a\x58\x64\x8b\xbd\xd1\xf5\xbf\xf4\x71\x5a\xf7\x3a\xb9\x31\x75\x75\x26\x9e\xd9\x86\x29\x97\x02\xf1\xcb\x3c\xbc\x52\x3e\x87\x74\x9e\x85\x04\x6a\xcf\x48\x90\x44\x57\xe2\x6c\x41\xfa\x8a\x8c\x50\x87\x59\x71\x0c\x9e\xdd\xb2\x83\xef\x7c\xf5\xb1\xe0\x62\xbf\xcf\xc9\xae\x21\xab\x85\x6a\x09\x6d\x36\xe1\x70\xe1\x1c\x39\xfe\x0a\xaf\xbe\x55\xdb\x19\xe7\x21\xec\x32\x83\x25\x2a\x3a\xf3\x9d\x60\xd6\xbb\x27\x54\x29\xb8\xfb\x2e\x14\x17\x25\x23\x6d\xb2\x2e\xd1\x46\xbe\x4a\x70\x8e\x6a\x6a\xc1\x23\xa0\xab\xcb\xdf\x6b\x2a\x7e\xbf\xee\xc1\xe0\x27\x14\x8f\x52\x4f\x1a\x86\x7b\xc9\x6c\x05\x41\x55\x68\x78\x6d\x5a\xe4\x8a\xd4\x88\x6f\xd5\xf2\x4f\xbe\xec\x0d\x55\xfb\x77\xbc\x8f\x0f\x58\x68\xfd\xfa\x79\xa8\x0f\x70\xd6\x88\x8f\x68\x1b\xad\xec\x2c\xef\x79\xe3\x2e\x74\xab\x08\x76\x70\x3e\x2e\x22\x61\xba\xf0\x53\xd3\xd8\xf1\xd8\x62\x1e\xa4\xbe\x63\x72\x18\xaf\xb8\x28\x09\x98\x05\x41\x99\x05\x85\xc8\x63\xcb\x1e\xfa\x77\xa1\x0e\xbd\x8c\x64\x22\x4b\x6c\xbb\xce\xba\xef\xd9\xcd\x24\xeb\xda\xb6\xae\x99\x39\xb9\xc9\x29\xda\xd3\x03\x1d\x0e\xf7\x48\x4c\xe9\xfc\x41\x63\xb3\x9b\xe4\x94\xfb\x23\x74\xeb\x33\x5c\xb7\xbe\x9a\xcd\x6a\x4e\x54\xb7\x3a\xe3\x7d\x60\x72\x0d\x95\xa0\x29\x9f\xf7\x68\x30\xf0\xba\xd7\x34\x54\x92\x5e\xc0\x0d\xec\xbc\x88\x79\xeb\xbb\xf4\x7c\x15\xa4\x16\x71\x18\x49\x94\xa4\xa1\xb8\x04\x41\x9c\x0c\x6f\xc6\x69\xee\xc9\x31\xb5\x0f\x85\xae\x15\x74\xf3\xf0\x30\x35\xe5\x4b\x73\x2b\x74\x53\xa6\xbd\x1e\x58\x0b\xc1\x9d\x8b\xc3\x87\x31\x7d\x12\x6e\x2f\x52\xaa\x22\x1c\x9f\x42\xa2\x3a\x50\xf5\x66\xf9\xc8\x5d\x84\x8d\x71\x23\x5d\x3e\x08\x9a\x76\x64\x57\x55\x48\xb1\xa3\xf8\xe1\xc2\x90\xef\xbc\x98\xb4\x38\x0e\xe6\x8a\x29\x2e\xdd\x98\x64\x90\xf1\x13\xe0\x17\x61\xc9\x75\xe1\xc1\xb5\x29\xc8\x5e\xc5\x25\x61\xed\xa6\xde\x71\x09\x89\x8c\xde\x9f\x25\x7c\x0f\x11\xda\x88\xd9\x88\xde\xc1\x36\xcf\xb8\x81\x63\xdc\x40\xcc\x43\x6f\xb3\x89\xa2\x2d\x09\x29\xa1\x31\x68\x51\xd1\x1a\xca\x0a\xcb\x7b\x27\x27\x8e\x28\x33\xc6\x5e\x85\x1f\x85\x9c\x9e\xb1\x4d\xae\xa4\x58\xa4\x30\x28\x2d\x28\x1e\x29\x77\xb3\x50\xc8\x0b\x7e\x16\x72\x27\x3e\x2a\xb6\x8b\x8c\x41\x71\x37\x65\xbf\x59\xa4\x79\xda\x9c\x0e\x46\xff\xb2\xcc\xdc\x6d\x39\x99\x51\x0f\x37\x31\xbe\x22\x6a\xec\x76\xb3\x39\x08\xaa\xda\xbb\xa2\xd4\xf5\x86\x8e\x77\x76\x73\xa7\x35\x59\x32\xac\xd9\x08\x6b\x5b\xb4\x9b\x97\xaf\x5f\xfd\xf9\xf5\xa2\x14\x8b\xe4\x3a\x1a\xdd\x52\xbe\xd8\xcc\x2c\x7b\x1e\x2f\x2c\x16\xa9\x1e\xd7\x10\x2f\xa1\x66\x2b\x3f\x56\x13\xfb\x5d\x11\x16\x0e\x5a\xe1\xba\x9b\xf4\x40\xd0\x8c\x38\x1d\x02\xf3\x69\x54\x2e\xd8\x30\x06\xf6\x69\xeb\x86\x0b\x0b\xd7\xf8\x74\xd5\xa4\x2b\x12\x47\xcc\x0c\x02\xd7\x0a\xe1\x28\xa8\x9a\x1a\xc6\x51\xa2\x2b\x31\xdf\x3d\x2b\xd3\xa2\x1c\x43\xcf\xe5\xaf\xc9\x09\x76\x67\xb0\x9b\xdc\x17\x07\xa3\x40\x9f\x9e\x6a\x1e\x53\xe6\x74\x3b\xa3\x98\x30\x1e\x85\xfd\xec\xef\x23\x96\x33\xf9\x66\x03\xac\x69\x50\xf1\xc4\x32\x10\x0a\xca\xaa\x55\xc9\x35\x8c\x3b\x92\x9d\xf0\x90\x0b\xe1\x67\x38\x9f\xaa\xf7\x49\xe8\xad\x17\x97\x3f\xef\xe9\x6d\x23\x45\x89\xf9\xb9\x0f\x9e\x55\xf1\x9b\x16\x2a\xcf\xfe\xad\xb2\xd5\xb4\xfd\x5b\xde\xc0\xf1\x55\x1c\x93\x47\x76\xb2\x60\x70\x6f\xd0\x56\xb3\x56\xbb\x27\x9d\xf7\xf4\xf9\x42\x69\xfa\x71\x64\x47\x87\xe3\x89\x5d\x76\x20\x79\x1f\xa6\xcc\x6f\x5b\xd2\xa5\xae\x1b\x17\x3a\xc5\x47\x74\x43\xca\xc4\xf5\x38\xb3\x73\xc3\x66\x6d\xb8\x93\x7a\xa1\xd5\x5e\x1c\xdc\x28\xf4\xa1\xf1\x76\x66\xbe\xc7\xcb\x56\x7e\x3a\x5a\x2d\x9d\xea\xcf\xca\x22\x16\x7f\x77\x64\xb3\x0b\xad\xa7\xae\x5d\xe2\x88\x34\x08\x0b\x69\x70\x3b\x6a\xe0\x86\x59\xed\x2a\xb9\x3d\xd8\x8e\xee\x12\x06\x9a\x77\x48\xef\xfb\x91\x77\x9b\x8c\xbf\x9d\xe2\x47\x1f\x9a\xff\x0d\x00\x00\xff\xff\x5c\xe3\x53\x5a\x30\x17\x00\x00") func staticAlertsJsBytes() ([]byte, error) { return bindataRead( @@ -310,7 +311,7 @@ func staticAutocompleteJs() (*asset, error) { return a, nil } -var _staticBaseCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x39\x4b\x6f\x23\xb9\xd1\x77\xfd\x8a\xc2\x1a\x8b\xdd\x35\xd4\xb2\x9e\x1e\x5b\x83\x4f\xf8\xce\x39\x24\x87\x1c\x83\x1c\xa8\x66\x49\xcd\x98\x4d\x76\x48\xb6\x25\xef\xc0\xff\x3d\x28\x16\xfb\x25\xb5\xc6\x9e\x41\x32\x87\x41\x9b\x2c\xd6\xfb\xad\x7b\xf8\x36\x01\x00\x38\x58\x13\x32\xaf\xfe\xc4\x2d\x2c\x9e\xaa\xf3\xd7\xc9\xfb\x64\xb2\xb7\xf2\x6d\x26\x85\x7b\x89\x30\x7b\x91\xbf\x1c\x9d\xad\x8d\xcc\x72\xab\xad\xdb\xc2\xdd\x32\x5f\xe1\x66\xfe\x75\x02\x50\x09\x29\x95\x39\x66\xc1\x56\x5b\xd8\x34\x08\x1e\xee\xa1\x36\x1e\x11\x94\x87\xca\x61\x08\x6f\x50\x7b\xd4\xe8\x3d\x9c\x54\x28\x20\x28\xf3\x06\x27\x25\x43\x31\x05\x87\xff\xae\x95\x43\x10\x01\x34\x0a\x1f\x60\xb1\x78\x9a\x57\x67\xb8\x7f\x98\xfc\x7f\x89\x52\x09\xf8\xbd\x14\xe7\x2c\x42\x6f\xd3\xe5\x1f\x89\x79\x62\x14\xbe\x95\xca\x0c\xaf\xbf\xbe\x27\x26\x0e\x5a\x04\xfd\x06\x12\x0f\xa2\xd6\x01\x0a\x54\xc7\x22\x10\x53\x8f\xf3\x33\x28\xe3\x03\x0a\x09\xf6\x00\x9b\x79\x75\x9e\x12\xf9\x57\x65\x8e\xb0\x20\xf2\xbe\x12\x39\xc2\x1e\xb5\x3d\x4d\xc1\xbe\xa2\x73\x4a\x22\xa8\x70\xff\x30\x99\x19\xf1\xba\x17\x2e\xdb\x3b\x61\x64\xe2\x64\xa0\x87\xc5\x86\xf4\xd0\x3f\xde\xdb\x10\x6c\xd9\xbf\xe9\x31\xfd\x3c\x67\xb5\x35\x78\x8d\x78\x85\x1d\x68\x05\x3b\x10\x53\x18\xa3\xc6\x82\x6c\x23\xdf\x8d\xc2\x3d\x06\x42\xaa\xca\xba\x64\xd5\x02\xc1\x27\x91\x0f\xd6\x01\xe3\x81\x4e\x80\x84\x8c\x38\x49\x08\x19\xdf\x05\x7b\x8b\xc5\x66\xc8\x20\xec\x60\x96\x5b\x13\x84\x32\xd8\x47\x32\xb4\x01\xb1\x75\xd7\x3e\x38\x58\x57\x36\x92\xf4\xbf\x49\xd6\xa1\x06\x1d\x8b\x36\x1f\x2a\x50\xe3\x81\x0f\xdf\x27\x7d\x3d\xed\xb4\xda\x89\x9f\x31\x01\xeb\x4c\x48\x09\xde\x96\x18\xad\x4d\xa6\x57\x06\x4a\x34\x35\x48\x67\x2b\x69\x4f\x26\x6a\xab\xf9\x23\xf3\x27\x15\xf2\xa2\x91\x58\xb8\xa3\x32\x89\xb1\x45\xa7\x38\x3e\x4e\x52\x2c\x1a\x4d\x10\xb5\x13\x42\x21\x5e\x11\x04\x54\xb6\x22\x97\x02\x6b\xa0\x40\x21\xd1\x4d\x41\x19\xa9\x72\x11\x10\x42\x21\x02\x47\x49\x5e\x3b\x6f\xfb\x06\xcb\x18\x38\x31\xc0\xd7\x5b\x28\x50\x57\x8d\x40\x27\xa4\x40\x83\xbd\x3a\x12\x8d\x57\x42\xdc\x38\x3f\xfb\x84\x56\xa5\x8a\x11\x10\xac\x05\x6d\x4f\x11\x7b\xc3\x4e\x23\x58\x17\x6d\xf3\xf9\xaf\x3d\xd4\x91\xfb\x13\xc5\x41\xb0\x56\x07\x55\xf9\xe8\x58\x51\x83\x42\xa3\x0b\x60\x44\x89\x3e\xe2\x4c\x10\x99\x32\xe6\x23\xcc\x79\xed\x83\x2d\x61\x2f\xe4\x11\x23\xc2\x86\x1f\xc2\xb3\x77\x28\x5e\xa2\xf6\xf9\x9e\x31\x49\xe5\x2b\x2d\xde\xb6\xa0\x8c\x56\x06\xb3\xbd\xb6\xf9\xcb\xb5\xe7\xce\x2f\x9c\x60\x0b\xab\xea\x0c\x5f\x9a\xd3\x7e\xee\x5b\x0d\x0e\x4f\x29\xc0\xf6\x56\x4b\x3e\x6e\x52\xdf\x21\xfe\xe3\xb3\x48\xba\x89\xc5\x05\x9f\xbd\xa2\x0b\x2a\x17\x3a\x13\x5a\x1d\xcd\x16\x4a\x25\xa5\x46\xbe\x3b\x15\x2a\x60\x16\x33\xcb\x16\x8c\x3d\x39\x51\xf1\x45\xc0\x73\x68\x1e\xe4\x68\x02\x3a\x3e\xff\x6e\xea\xa5\xf4\xe7\x24\xba\xcc\x09\xa9\x6a\xdf\x73\x36\xca\x7c\xb5\xd6\x3e\x77\x88\x86\x92\xa0\x2f\x40\xaa\xd7\xa8\x4f\xfe\xeb\x42\x8b\xc6\x9a\xc4\x62\x65\xbd\x0a\xca\x9a\x2d\x1c\xd4\x19\x93\xec\x7f\x66\xca\x48\x3c\x6f\xe1\x39\xfe\x4b\xc2\x37\x11\x19\x05\xa0\x98\x4b\xdf\x03\x0b\xf7\xb3\x55\x77\x42\xd6\x3d\x68\x7b\xda\x42\xa1\xa4\x44\x73\x4b\x5a\x77\xdc\x8b\xdf\x97\xeb\xd5\x14\x16\x9b\xc7\x29\x2c\x9e\xa6\x30\x9f\x3d\xff\xd1\xa6\xbc\x94\xa3\xc3\x89\xe4\xd4\x62\x8f\x9a\x9d\x2f\x7e\x66\x5a\xf9\x70\x91\x1b\x98\xe9\xd5\x65\x6e\x48\xd1\xba\x1a\x0f\xe2\x55\x52\xab\x60\xbc\x09\xbb\x68\x9d\xf1\x2a\x10\x7d\x25\x4c\x82\x0a\x9e\xec\x6d\xae\x8b\xad\x32\x05\x3a\x15\xda\x72\xe9\x51\x52\xf6\xe1\x30\x22\x2d\x54\x10\x9c\x2a\xc1\xd7\x65\x29\xdc\x5b\x8c\x0b\xe6\x96\x05\x85\xdc\xd6\xe4\x28\x7d\x81\xe9\x41\xc6\x6f\x3f\x0e\x13\x16\xb1\xc9\x8a\xcb\x46\xf4\x51\x1f\x7d\x1f\x50\x08\xe2\x38\xaa\xd6\xf5\x0d\xb5\xb6\xe7\xc9\x5f\x83\xad\xf8\xaa\xf5\xdc\xa1\x3f\x33\x4f\xd7\x20\x43\x2e\xa2\xfc\x63\xb9\x38\xbb\x32\xef\xf7\xad\x3e\xc6\x1e\xbd\xf8\x3e\x77\x97\x10\xef\x93\xc9\x3f\xa4\x08\x22\x4b\x2c\xbe\x55\xf8\x7f\xbf\x1c\x94\x0e\xe8\x7e\xf9\x67\x64\xb3\x71\x93\xca\x2a\x8e\x70\xb6\x7c\x29\x5e\x10\x18\x10\x94\xa9\xea\x00\x81\x4e\x84\xd6\x10\x0a\x4c\x3e\xae\x02\xe4\x82\xab\x11\x83\x76\xe5\xbb\x69\x22\xda\x22\xdd\x01\xec\x60\x16\x31\xb2\x4f\x64\x42\x4a\x6b\xd2\x89\x2f\x87\xcf\x07\xb9\x43\x9d\x1b\x1d\x71\x21\x4a\x6d\x54\x4c\xc7\xd6\x06\x1f\x9c\xa8\xc8\x0b\x3c\xf3\xfb\x6d\x3c\xec\x07\xf5\xf8\x4a\xf9\x8d\xe3\x3d\x36\x17\x83\x64\xba\xdc\xfc\xb7\x8c\xd2\x75\x81\xa4\x68\x2a\x58\x79\x8a\x35\x62\x9d\x9f\xc3\x5e\x8b\xfc\x65\x4a\xbe\x9f\x17\xa0\xad\x7d\xf1\x50\x1f\xf5\x1b\x4b\x1f\x1b\x61\x2e\xc0\x44\xd2\x21\xa5\x78\x08\xb6\xad\xac\x31\x59\xc5\x00\x1d\x22\xbf\x7f\x98\xc4\x8f\x3b\xb6\xc8\x36\xde\xb6\x9d\x2b\x11\x8e\x71\x07\xde\x6a\x25\xe1\x4e\xe6\xb8\xc6\xfc\xa2\x9d\xe3\x52\x46\x8d\x82\x43\xa1\x13\x62\x6f\xc9\x21\xa4\x45\x6f\x7e\x0b\x60\x10\x65\x2c\xe7\x65\x9d\x17\xc9\x5f\x4e\x05\x1a\x50\xe1\x37\x0f\x58\x56\xe1\xb6\xe9\x76\x30\x0b\x27\x15\x02\x69\xf8\xad\x42\x41\x0d\x06\xec\x98\xcc\x2c\x84\xac\x33\xf0\x55\x59\xa5\xf6\x8e\x05\xcb\x28\xf1\xdd\xc8\x85\x77\xf4\x91\xa5\xd4\xbc\x83\xdc\xca\x26\x6b\xde\x48\x34\xdc\x96\xfd\xab\xf6\xa1\xf5\x41\xd2\x6c\xca\x76\xa9\x49\x50\x06\x48\x86\x4e\xcf\xb3\x20\x8e\x83\x06\x61\x24\x83\xf7\x8e\xa3\x4b\x66\xcb\x14\x30\xb7\xf2\xd9\xb2\x0b\x09\x6a\x0a\x3d\x25\x69\x4f\x7e\xfa\x92\xc6\x18\x95\x5b\xe3\xfb\x73\xc4\xbe\x0e\xc1\x1a\x3f\x8d\x21\xc4\xe6\x8e\xce\x41\xc8\xbd\x8d\xf1\x4c\xcf\x5b\xd3\xf9\x20\xde\x18\x02\x25\x88\x03\x09\x98\x6b\x95\xbf\x90\xd4\xf7\x0f\xac\x3c\x76\x9b\xe9\xe4\xce\x63\x08\xca\x1c\x7d\x7b\xe0\xf0\xe0\xd0\x17\x03\xbf\xea\xb5\x29\x6c\xa2\x88\xa2\xa0\x82\xdb\x47\xd1\x1c\x34\x28\x8a\x5e\xff\xd7\xa0\x58\x3c\xed\xf3\xe7\xd6\x1f\x1d\x96\xf6\x15\x5b\x9f\xa7\x2e\xba\x33\x90\xb3\x25\xb4\x13\x41\x76\xd0\xb5\x92\xd1\x6a\xca\xe4\x4a\xa2\xa1\x82\xa6\x64\x94\xe8\x72\x6e\x18\x6a\xfc\xaa\x69\x4f\xf6\xeb\xb5\xec\xfb\x3a\x00\x3a\x67\x9d\x07\x5f\xd8\x5a\xcb\xd4\x53\x4b\x19\xfb\x16\xa1\x93\x8d\x23\xb5\x04\xf8\x33\x0d\xfb\xac\x12\x86\xf2\xb8\x0a\xba\xf1\xa9\xeb\xae\xe5\x12\x6e\x07\x5c\xa1\xe2\x83\x5e\xb1\x7f\xe6\x9c\x38\x4c\x71\x58\x46\xef\xe3\xf7\x14\x78\xa4\xca\x1d\xcc\x46\xdc\xb8\xe7\x8f\x17\x6d\xc4\x73\x93\x6d\xfb\x9e\xdd\x53\x57\xac\x2e\x5e\x69\x34\x39\x19\xcf\xe7\x4e\x55\xa4\x27\xf0\xa5\xd0\x3a\xf5\xd8\xe9\x3e\xcb\x6d\x59\x62\x5b\x54\x7b\x54\x12\xf0\x35\xa5\xc7\x0b\x2d\x36\x59\x7d\x98\x9d\x63\x5a\xbe\x74\xab\xab\x12\x71\x73\x62\x6b\xc4\x99\xb5\xee\xc4\x4a\x1b\xea\xa8\x47\x7a\x00\xfb\x6d\x38\x00\x3c\x5d\x22\xdb\x31\xb2\xdd\x85\x21\x46\x66\xca\xab\xfe\xa6\x21\xb9\xfe\x00\x27\xaf\x29\x86\x7c\xb4\x9a\x1b\xf5\xaa\x87\xfb\x2e\x76\xd2\x64\x48\xe1\xe4\x41\xb0\x2d\x20\x57\x2e\xd7\x48\xb2\xc7\x64\x51\x5a\x1f\xc0\x21\xcd\x0e\xdc\x42\x72\x5b\xd8\xe0\xc8\x5a\x1c\x99\xaf\xf3\x1c\x7d\x5b\x86\xae\x07\x8c\x2e\xec\xc7\x9e\x4b\x61\x8e\x6d\xf0\x8e\xbc\xc6\x2f\xeb\x7c\x75\xeb\xf5\x58\xcb\x31\x1c\x10\x2e\xaa\x7e\x53\xca\x37\x8d\x97\x7f\xdc\xd0\x5e\xb4\xa2\xc3\xe8\x6e\x0d\x45\xf9\x28\xfa\xb6\x9b\x42\xcf\x55\x86\x5d\x0c\xc0\x7b\xb3\x82\x4a\xa3\x94\x30\x12\x7e\xef\x55\xc2\x2f\xf3\xb8\x8c\xe2\xe3\xde\x70\xbb\x7a\x7e\x6e\x96\x54\x37\x49\x25\x58\x12\x0d\xde\x27\x1f\x51\x5a\xac\xc7\x49\x2d\xe7\x9f\x27\xb5\x5a\xcd\x56\xab\xd5\xa7\xc8\x2d\x17\x37\xc8\x7d\xf9\x3c\xb9\xe5\xe6\x73\xa4\x9e\xc6\x49\xad\xd6\x3f\x40\xea\x73\x4a\x5c\x6d\xc6\x49\xad\x17\x9f\x27\xb5\x78\x9c\x3d\x3e\x3e\x7e\x8a\xdc\x7a\x79\x83\xdc\xd3\x0f\x90\x5b\xcf\x96\x4f\x9f\x53\xe4\xfa\x79\x9c\xdc\x66\xf3\x3f\x21\xb7\x79\x9c\xcf\x3f\x8d\x76\x39\x6b\x90\xf6\xf2\x42\x7f\x52\x3d\x59\x27\x33\xea\x01\xb7\x10\x37\x3e\x19\x1d\x7c\x1d\x81\xcf\x3c\x56\xc2\xf5\xb2\xc9\x60\x02\xd8\xc2\xa2\x6b\xa8\x31\x3f\xcc\x0f\x0b\x46\x22\x8c\xb1\x41\x50\xe5\xcb\x4e\xa8\x6f\x94\x8e\xe5\xd5\xba\xa8\x9b\x0d\xaf\x52\x5d\x70\xc2\xf8\x4a\x38\x34\x71\x88\xbf\xa2\xb0\x83\xd9\x41\x7c\x67\x55\x17\xdb\x29\x9e\xf0\x78\x47\x56\x57\xdc\xd8\xff\xe6\x63\x7f\x5b\x60\xda\x1d\x51\x63\xd9\xed\x6e\xef\x1a\xf0\x6f\xd7\x0d\xed\x33\xa7\xb7\x87\x7b\xc8\x0b\xca\xd3\x2d\x6a\x9e\x50\x82\xe5\x45\xd3\x49\x38\x13\x67\x3b\x1a\x12\xfe\xf2\xf7\xbf\xfd\x95\x0a\x8b\xb6\x42\x52\x13\x6a\x24\xb3\xb0\x47\x02\xa9\x84\xa3\x79\xa6\x4f\x77\x07\xb3\xf4\xf9\x71\x2d\x39\xac\x9e\xf3\xc5\x32\xf1\x44\xa8\x1b\x16\x52\x19\x89\x1c\x38\x34\x12\x1d\x51\x4b\x95\xeb\x20\x14\xef\x71\xc6\x68\xc6\x96\xee\x33\xf5\x87\x48\x86\x13\x8a\x17\xe8\x26\x1b\x1a\xed\x78\x50\xeb\x26\xda\x10\x32\x36\xcf\x34\x7e\xfb\xfa\x78\x44\x1f\x57\x60\xa9\x49\xbe\x38\xbd\xd1\x6d\xb7\x4b\x41\x96\x0f\x73\xeb\x04\x2f\xd2\xba\xe5\x9a\xad\x03\x55\xad\xae\x3d\xba\xbd\xde\x4b\x2b\x63\x16\xc0\x54\xce\x1e\x1d\x69\x7a\x44\x80\xbb\xee\x76\xd6\x6d\x05\x3a\xd4\x03\x33\xf4\x81\x2b\x3c\xb6\x21\x74\xce\x7c\x21\x24\x35\x21\x73\x98\xf3\x0f\x20\xe9\xd5\x34\x9e\x6c\xba\x83\x4b\x34\x8d\x61\x68\x18\x1a\x86\x24\xcd\xec\x97\x9e\x70\xab\x2b\xec\x70\x77\x72\xf3\x76\x39\x0e\x97\x95\x38\x22\x04\xb1\xd7\xbc\x5d\x8e\x5f\x33\xfe\xbf\x37\x7c\x5e\x84\xf3\x3a\x0d\x70\x57\xd0\x3b\x08\xb1\x25\xdb\x41\x20\xdf\x0a\x72\xfa\x31\x4c\x71\x25\xdb\x20\xd7\x48\x29\x6f\x91\x4a\x33\xf5\x10\xcd\x8d\xe9\xb7\xff\x1e\xcf\xa2\xac\x48\xe0\x2b\x76\x47\x7a\xc9\x66\x49\xf9\x31\x82\x20\xb7\x07\xe5\x7c\xc8\xf2\x42\x69\x79\xd1\x92\xfd\xda\x5a\x80\x75\xe9\xdb\xed\x2a\x2b\x15\x44\x1e\xa7\x87\x34\xe8\x52\xa2\x6a\x66\x4a\xfe\xe1\x24\x2e\x1a\x82\xc9\xda\xdf\x4c\xd2\x83\x9f\x1a\xc1\x4a\x2b\x05\x77\xcf\xbb\x9e\x5c\xbb\xc0\x27\x6e\x17\x64\x02\x71\xf6\x94\xf1\x2e\x82\x23\x33\x56\x93\x58\x47\x9a\x72\x22\xb4\x8e\x59\xfa\x67\x50\x4e\x7f\xf0\x19\x8b\xec\x21\xb2\x72\xeb\xf7\x80\x6e\x74\xec\x46\xbf\xb8\x37\x8e\x49\x30\xd5\xba\xb8\x2c\x88\xdb\x97\xc1\x82\x33\xcd\x30\xe3\xe0\x3b\xe0\xaa\x73\xb1\x09\xf8\x4f\x00\x00\x00\xff\xff\xeb\xfb\x52\x9f\xf0\x1d\x00\x00") +var _staticBaseCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x39\x4b\x6f\x23\xb9\xd1\x77\xfd\x8a\xc2\x1a\x8b\xdd\x35\xd4\xb2\x9e\x1e\x5b\x83\x4f\xf8\xce\x39\x24\x87\x1c\x83\x1c\xa8\x66\x49\xcd\x98\x4d\x76\x48\xb6\x25\xef\xc0\xff\x3d\x28\x16\xfb\x25\xb5\xc6\x9e\x41\x32\x87\x41\x9b\x2c\xd6\xfb\xad\x7b\xf8\x36\x01\x00\x38\x58\x13\x32\xaf\xfe\xc4\x2d\x2c\x9e\xaa\xf3\xd7\xc9\xfb\x64\xb2\xb7\xf2\x6d\x26\x85\x7b\x89\x30\x7b\x91\xbf\x1c\x9d\xad\x8d\xcc\x72\xab\xad\xdb\xc2\xdd\x32\x5f\xe1\x66\xfe\x75\x02\x50\x09\x29\x95\x39\x66\xc1\x56\x5b\xd8\x34\x08\x1e\xee\xa1\x36\x1e\x11\x94\x87\xca\x61\x08\x6f\x50\x7b\xd4\xe8\x3d\x9c\x54\x28\x20\x28\xf3\x06\x27\x25\x43\x31\x05\x87\xff\xae\x95\x43\x10\x01\x34\x0a\x1f\x60\xb1\x78\x9a\x57\x67\xb8\x7f\x98\xfc\x7f\x89\x52\x09\xf8\xbd\x14\xe7\x2c\x42\x6f\xd3\xe5\x1f\x89\x79\x62\x14\xbe\x95\xca\x0c\xaf\xbf\xbe\x27\x26\x0e\x5a\x04\xfd\x06\x12\x0f\xa2\xd6\x01\x0a\x54\xc7\x22\x10\x53\x8f\xf3\x33\x28\xe3\x03\x0a\x09\xf6\x00\x9b\x79\x75\x9e\x12\xf9\x57\x65\x8e\xb0\x20\xf2\xbe\x12\x39\xc2\x1e\xb5\x3d\x4d\xc1\xbe\xa2\x73\x4a\x22\xa8\x70\xff\x30\x99\x19\xf1\xba\x17\x2e\xdb\x3b\x61\x64\xe2\x64\xa0\x87\xc5\x86\xf4\xd0\x3f\xde\xdb\x10\x6c\xd9\xbf\xe9\x31\xfd\x3c\x67\xb5\x35\x78\x8d\x78\x85\x1d\x68\x05\x3b\x10\x53\x18\xa3\xc6\x82\x6c\x23\xdf\x8d\xc2\x3d\x06\x42\xaa\xca\xba\x64\xd5\x02\xc1\x27\x91\x0f\xd6\x01\xe3\x81\x4e\x80\x84\x8c\x38\x49\x08\x19\xdf\x05\x7b\x8b\xc5\x66\xc8\x20\xec\x60\x96\x5b\x13\x84\x32\xd8\x47\x32\xb4\x01\xb1\x75\xd7\x3e\x38\x58\x57\x36\x92\xf4\xbf\x49\xd6\xa1\x06\x1d\x8b\x36\x1f\x2a\x50\xe3\x81\x0f\xdf\x27\x7d\x3d\xed\xb4\xda\x89\x9f\x31\x01\xeb\x4c\x48\x09\xde\x96\x18\xad\x4d\xa6\x57\x06\x4a\x34\x35\x48\x67\x2b\x69\x4f\x26\x6a\xab\xf9\x23\xf3\x27\x15\xf2\xa2\x91\x58\xb8\xa3\x32\x89\xb1\x45\xa7\x38\x3e\x4e\x52\x2c\x1a\x4d\x10\xb5\x13\x42\x21\x5e\x11\x04\x54\xb6\x22\x97\x02\x6b\xa0\x40\x21\xd1\x4d\x41\x19\xa9\x72\x11\x10\x42\x21\x02\x47\x49\x5e\x3b\x6f\xfb\x06\xcb\x18\x38\x31\xc0\xd7\x5b\x28\x50\x57\x8d\x40\x27\xa4\x40\x83\xbd\x3a\x12\x8d\x57\x42\xdc\x38\x3f\xfb\x84\x56\xa5\x8a\x11\x10\xac\x05\x6d\x4f\x11\x7b\xc3\x4e\x23\x58\x17\x6d\xf3\xf9\xaf\x3d\xd4\x91\xfb\x13\xc5\x41\xb0\x56\x07\x55\xf9\xe8\x58\x51\x83\x42\xa3\x0b\x60\x44\x89\x3e\xe2\x4c\x10\x99\x32\xe6\x23\xcc\x79\xed\x83\x2d\x61\x2f\xe4\x11\x23\xc2\x86\x1f\xc2\xb3\x77\x28\x5e\xa2\xf6\xf9\x9e\x31\x49\xe5\x2b\x2d\xde\xb6\xa0\x8c\x56\x06\xb3\xbd\xb6\xf9\xcb\xb5\xe7\xce\x2f\x9c\x60\x0b\xab\xea\x0c\x5f\x9a\xd3\x7e\xee\x5b\x0d\x0e\x4f\x29\xc0\xf6\x56\x4b\x3e\x6e\x52\xdf\x21\xfe\xe3\xb3\x48\xba\x89\xc5\x05\x9f\xbd\xa2\x0b\x2a\x17\x3a\x13\x5a\x1d\xcd\x16\x4a\x25\xa5\x46\xbe\x3b\x15\x2a\x60\x16\x33\xcb\x16\x8c\x3d\x39\x51\xf1\x45\xc0\x73\x68\x1e\xe4\x68\x02\x3a\x3e\xff\x6e\xea\xa5\xf4\xe7\x24\xba\xcc\x09\xa9\x6a\xdf\x73\x36\xca\x7c\xb5\xd6\x3e\x77\x88\x86\x92\xa0\x2f\x40\xaa\xd7\xa8\x4f\xfe\xeb\x42\x8b\xc6\x9a\xc4\x62\x65\xbd\x0a\xca\x9a\x2d\x1c\xd4\x19\x93\xec\x7f\x66\xca\x48\x3c\x6f\xe1\x39\xfe\x4b\xc2\x37\x11\x19\x05\xa0\x98\x4b\xdf\x03\x0b\xf7\xb3\x55\x77\x42\xd6\x3d\x68\x7b\xda\x42\xa1\xa4\x44\x73\x4b\x5a\x77\xdc\x8b\xdf\x97\xeb\xd5\x14\x16\x9b\xc7\x29\x2c\x9e\xa6\x30\x9f\x3d\xff\xd1\xa6\xbc\x94\xa3\xc3\x89\xe4\xd4\x62\x8f\x9a\x9d\x2f\x7e\x66\x5a\xf9\x70\x91\x1b\x98\xe9\xd5\x65\x6e\x48\xd1\xba\x1a\x0f\xe2\x55\x52\xab\x60\xbc\x09\xbb\x68\x9d\xf1\x2a\x10\x7d\x25\x4c\x82\x0a\x9e\xec\x6d\xae\x8b\xad\x32\x05\x3a\x15\xda\x72\xe9\x51\x52\xf6\xe1\x30\x22\x2d\x54\x10\x9c\x2a\xc1\xd7\x65\x29\xdc\x5b\x8c\x0b\xe6\x96\x05\x85\xdc\xd6\xe4\x28\x7d\x81\xe9\x41\xc6\x6f\x3f\x0e\x13\x16\xb1\xc9\x8a\xcb\x46\xf4\x51\x1f\x7d\x1f\x50\x08\xe2\x38\xaa\xd6\xf5\x0d\xb5\xb6\xe7\xc9\x5f\x83\xad\xf8\xaa\xf5\xdc\xa1\x3f\x33\x4f\xd7\x20\x43\x2e\xa2\xfc\x63\xb9\x38\xbb\x32\xef\xf7\xad\x3e\xc6\x1e\xbd\xf8\x3e\x77\x97\x10\xef\x93\xc9\x3f\xa4\x08\x22\x4b\x2c\xbe\x55\xf8\x7f\xbf\x1c\x94\x0e\xe8\x7e\xf9\x67\x64\xb3\x71\x93\xca\x2a\x8e\x70\xb6\x7c\x29\x5e\x10\x18\x10\x94\xa9\xea\x00\x81\x4e\x84\xd6\x10\x0a\x4c\x3e\xae\x02\xe4\x82\xab\x11\x83\x76\xe5\xbb\x69\x22\xda\x22\xdd\x01\xec\x60\x16\x31\xb2\x4f\x64\x42\x4a\x6b\xd2\x89\x2f\x87\xcf\x07\xb9\x43\x9d\x1b\x1d\x71\x21\x4a\x6d\x54\x4c\xc7\xd6\x06\x1f\x9c\xa8\xc8\x0b\x3c\xf3\xfb\x6d\x3c\xec\x07\xf5\xf8\x4a\xf9\x8d\xe3\x3d\x36\x17\x83\x64\xba\xdc\xfc\xb7\x8c\xd2\x75\x81\xa4\x68\x2a\x58\x79\x8a\x35\x62\x9d\x9f\xc3\x5e\x8b\xfc\x65\x4a\xbe\x9f\x17\xa0\xad\x7d\xf1\x50\x1f\xf5\x1b\x4b\x1f\x1b\x61\x2e\xc0\x44\xd2\x21\xa5\x78\x08\xb6\xad\xac\x31\x59\xc5\x00\x1d\x22\xbf\x7f\x98\xc4\x8f\x3b\xb6\xc8\x36\xde\xb6\x9d\x2b\x11\x8e\x71\x07\xde\x6a\x25\xe1\x4e\xe6\xb8\xc6\xfc\xa2\x9d\xe3\x52\x46\x8d\x82\x43\xa1\x13\x62\x6f\xc9\x21\xa4\x45\x6f\x7e\x0b\x60\x10\x65\x2c\xe7\x65\x9d\x17\xc9\x5f\x4e\x05\x1a\x50\xe1\x37\x0f\x58\x56\xe1\xb6\xe9\x76\x30\x0b\x27\x15\x02\x69\xf8\xad\x42\x41\x0d\x06\xec\x98\xcc\x2c\x84\xac\x33\xf0\x55\x59\xa5\xf6\x8e\x05\xcb\x28\xf1\xdd\xc8\x85\x77\xf4\x91\xa5\xd4\xbc\x83\xdc\xca\x26\x6b\xde\x48\x34\xdc\x96\xfd\xab\xf6\xa1\xf5\x41\xd2\x6c\xca\x76\xa9\x49\x50\x06\x48\x86\x4e\xcf\xb3\x20\x8e\x83\x06\x61\x24\x83\xf7\x8e\xa3\x4b\x66\xcb\x14\x30\xb7\xf2\xd9\xb2\x0b\x09\x6a\x0a\x3d\x25\x69\x4f\x7e\xfa\x92\xc6\x18\x95\x5b\xe3\xfb\x73\xc4\xbe\x0e\xc1\x1a\x3f\x8d\x21\xc4\xe6\x8e\xce\x41\xc8\xbd\x8d\xf1\x4c\xcf\x5b\xd3\xf9\x20\xde\x18\x02\x25\x88\x03\x09\x98\x6b\x95\xbf\x90\xd4\xf7\x0f\xac\x3c\x76\x9b\xe9\xe4\xce\x63\x08\xca\x1c\x7d\x7b\xe0\xf0\xe0\xd0\x17\x03\xbf\xea\xb5\x29\x6c\xa2\x88\xa2\xa0\x82\xdb\x47\xd1\x1c\x34\x28\x8a\x5e\xff\xd7\xa0\x58\x3c\xed\xf3\xe7\xd6\x1f\x1d\x96\xf6\x15\x5b\x9f\xa7\x2e\xba\x33\x90\xb3\x25\xb4\x13\x41\x76\xd0\xb5\x92\xd1\x6a\xca\xe4\x4a\xa2\xa1\x82\xa6\x64\x94\xe8\x72\x6e\x18\x6a\xfc\xaa\x69\x4f\xf6\xeb\xb5\xec\xfb\x3a\x00\x3a\x67\x9d\x07\x5f\xd8\x5a\xcb\xd4\x53\x4b\x19\xfb\x16\xa1\x93\x8d\x23\xb5\x04\xf8\x33\x0d\xfb\xac\x12\x86\xf2\xb8\x0a\xba\xf1\xa9\xeb\xae\xe5\x12\x6e\x07\x5c\xa1\xe2\x83\x5e\xb1\x7f\xe6\x9c\x38\x4c\x71\x58\x46\xef\xe3\xf7\x14\x78\xa4\xca\x1d\xcc\x46\xdc\xb8\xe7\x8f\x17\x6d\xc4\x73\x93\x6d\xfb\x9e\xdd\x53\x57\xac\x2e\x5e\x69\x34\x39\x19\xcf\xe7\x4e\x55\xa4\x27\xf0\xa5\xd0\x3a\xf5\xd8\xe9\x3e\xcb\x6d\x59\x62\x5b\x54\x7b\x54\x12\xf0\x35\xa5\xc7\x0b\x2d\x36\x59\x7d\x98\x9d\x63\x5a\xbe\x74\xab\xab\x12\x71\x73\x62\x6b\xc4\x99\xb5\xee\xc4\x4a\x1b\xea\xa8\x47\x7a\x00\xfb\x6d\x38\x00\x3c\x5d\x22\xdb\x31\xb2\xdd\x85\x21\x46\x66\xca\xab\xfe\xa6\x21\xb9\xfe\x00\x27\xaf\x29\x86\x7c\xb4\x9a\x1b\xf5\xaa\x87\xfb\x2e\x76\xd2\x64\x48\xe1\xe4\x41\xb0\x2d\x20\x57\x2e\xd7\x48\xb2\xc7\x64\x51\x5a\x1f\xc0\x21\xcd\x0e\xdc\x42\x72\x5b\xd8\xe0\xc8\x5a\x1c\x99\xaf\xf3\x1c\x7d\x5b\x86\xae\x07\x8c\x2e\xec\xc7\x9e\x4b\x61\x8e\x6d\xf0\x8e\xbc\xc6\x2f\xeb\x7c\x75\xeb\xf5\x58\xcb\x31\x1c\x10\x2e\xaa\x7e\x53\xca\x37\x8d\x97\x7f\xdc\xd0\x5e\xb4\xa2\xc3\xe8\x6e\x0d\x45\xf9\x28\xfa\xb6\x9b\x42\xcf\x55\x86\x5d\x0c\xc0\x7b\xb3\x82\x4a\xa3\x94\x30\x12\x7e\xef\x55\xc2\x2f\xf3\xb8\x8c\xe2\xe3\xde\x70\xbb\x7a\x7e\x6e\x96\x54\x37\x49\x25\x58\x12\x0d\xde\x27\x1f\x51\x5a\xac\xc7\x49\x2d\xe7\x9f\x27\xb5\x5a\xcd\x56\xab\xd5\xa7\xc8\x2d\x17\x37\xc8\x7d\xf9\x3c\xb9\xe5\xe6\x73\xa4\x9e\xc6\x49\xad\xd6\x3f\x40\xea\x73\x4a\x5c\x6d\xc6\x49\xad\x17\x9f\x27\xb5\x78\x9c\x3d\x3e\x3e\x7e\x8a\xdc\x7a\x79\x83\xdc\xd3\x0f\x90\x5b\xcf\x96\x4f\x9f\x53\xe4\xfa\x79\x9c\xdc\x66\xf3\x3f\x21\xb7\x79\x9c\xcf\x3f\x8d\x76\x39\x6b\x90\xf6\xf2\x42\x7f\x52\x3d\x59\x27\x33\xea\x01\xb7\x10\x37\x3e\x19\x1d\x7c\x1d\x81\xcf\x3c\x56\xc2\xf5\xb2\xc9\x60\x02\xd8\xc2\xa2\x6b\xa8\x31\x3f\xcc\x0f\x0b\x46\x22\x8c\xb1\x41\x50\xe5\xcb\x4e\xa8\x6f\x94\x8e\xe5\xd5\xba\xa8\x9b\x0d\xaf\x52\x5d\x70\xc2\xf8\x4a\x38\x34\x71\x88\xbf\xa2\xb0\x83\xd9\x41\x7c\x67\x55\x17\xdb\x29\x9e\xf0\x78\x47\x56\x57\xdc\xd8\xff\xe6\x63\x7f\x5b\x60\xda\x1d\x51\x63\xd9\xed\x6e\xef\x1a\xf0\x6f\xd7\x0d\xed\x33\xa7\xb7\x87\x7b\xc8\x0b\xca\xd3\x2d\x6a\x9e\x50\x82\xe5\x45\xd3\x49\x38\x13\x67\x3b\x1a\x12\xfe\xf2\xf7\xbf\xfd\x95\x0a\x8b\xb6\x42\x52\x13\x6a\x24\xb3\xb0\x47\x02\xa9\x84\xa3\x79\xa6\x4f\x77\x07\xb3\xf4\xf9\x71\x2d\x39\xac\x9e\xf3\xc5\x32\xf1\x44\xa8\x1b\x16\x52\x19\x89\x1c\x38\x34\x12\x1d\x51\x4b\x95\xeb\x20\x14\xef\x71\xc6\x68\xc6\x96\xee\x33\xf5\x87\x48\x86\x13\x8a\x17\xe8\x26\x1b\x1a\xed\x78\x50\xeb\x26\xda\x10\x32\x36\xcf\x34\x7e\xfb\xfa\x78\x44\x1f\x57\x60\xa9\x49\xbe\x38\xbd\xd1\x6d\xb7\x4b\x41\x96\x0f\x73\xeb\x04\x2f\xd2\xba\xe5\x9a\xad\x03\x55\xad\xae\x3d\xba\xbd\xde\x4b\x2b\x63\x16\xc0\x54\xce\x1e\x1d\x69\x7a\x44\x80\xbb\xee\x76\xd6\x6d\x05\x3a\xd4\x03\x33\xf4\x81\x2b\x3c\xb6\x21\x74\xce\x7c\x21\x24\x35\x21\x73\x98\xf3\x0f\x20\xe9\xd5\x34\x9e\x6c\xba\x83\x4b\x34\x8d\x61\x68\x18\x1a\x86\x24\xcd\xec\x97\x9e\x70\xab\x2b\xec\x70\x77\x72\xf3\x76\x39\x0e\x97\x95\x38\x22\x04\xb1\xd7\xbc\x5d\x8e\x5f\x33\xfe\xbf\x37\x7c\x5e\x84\xf3\x3a\x0d\x70\x57\xd0\x3b\x08\xb1\x25\xdb\x41\x20\xdf\x0a\x72\xfa\x31\x4c\x71\x25\xdb\x20\xd7\x48\x29\x6f\x91\x4a\x33\xf5\x10\xcd\x8d\xe9\xb7\xff\x1e\xcf\xa2\xac\x48\xe0\x2b\x76\x47\x7a\xc9\x66\x49\xf9\x31\x82\x20\xb7\x07\xe5\x7c\xc8\xf2\x42\x69\x79\xd1\x92\xfd\xda\x5a\x80\x75\xe9\xdb\xed\x2a\x2b\x15\x44\x1e\xa7\x87\x34\xe8\x52\xa2\x6a\x66\x4a\xfe\xe1\x24\x2e\x1a\x82\xc9\xda\xdf\x4c\xd2\x83\x9f\x1a\xc1\x4a\x2b\x05\x77\xcf\xbb\x9e\x5c\xbb\xc0\x27\x6e\x17\x64\x02\x71\xf6\x94\xf1\x2e\x82\x23\x33\x56\x93\x58\x47\x9a\x72\x22\xb4\x8e\x59\xfa\x67\x50\x4e\x7f\xf0\x19\x8b\xec\x21\xb2\x72\xeb\xf7\x80\x6e\x74\xec\x46\xbf\xb8\x37\x8e\x49\x30\xd5\xba\xb8\x2c\x88\xdb\x97\xc1\x82\x33\xcd\x30\xe3\xe0\x3b\xe0\xaa\x33\xd8\x04\x00\xd8\x4a\xe4\x2a\xbc\xa5\xf9\xe8\x3f\x01\x00\x00\xff\xff\xc7\x3f\xb5\x0b\xfe\x1d\x00\x00") func staticBaseCssBytes() ([]byte, error) { return bindataRead( @@ -1330,7 +1331,27 @@ func staticSummaryJs() (*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\x9e\xa7\x98\x24\x05\x24\xf5\x76\xe5\x04\x45\xee\xc3\x1a\xc6\xc1\x09\x1a\x27\x87\x5e\x1a\xd8\xcd\xb5\x40\x11\x04\x5c\x71\x76\xc5\x98\x22\x15\x92\xda\xcd\x22\xd8\xc7\x28\xfa\x7e\x7d\x92\x03\xff\xe8\xbf\xe4\x75\x8a\xe0\xf8\xc5\x6b\x72\x66\x38\x1c\xce\xfc\x66\x86\xda\x11\x05\xef\x84\x46\x84\x0b\x88\x37\x95\xc8\x0c\x93\x22\x2e\x89\x22\x85\x4e\xe0\xcb\x83\x07\x0f\x00\x00\x2c\x95\x61\x05\x2a\xb8\x80\x0d\xe1\x1a\xcf\x9b\xe9\x1d\x2a\xcd\xa4\x18\x2f\x28\xdc\x28\xd4\xf9\x6b\x61\x50\xed\x08\x87\x0b\x78\xfa\xec\xbc\x15\xa7\x91\x63\x66\xa4\xd2\x70\x01\x5f\xdc\xac\x1d\x81\xe9\x79\x65\x8c\x14\x2b\x88\x1e\x87\x89\x68\xd1\x90\xa0\x52\x52\x69\xbb\xe6\x7f\x45\x6e\xe5\x18\x34\x65\x82\x19\xab\x4b\x7d\x92\xa4\x23\xfc\xad\x92\x5b\x85\x5a\xa7\xaf\x05\x33\x71\x12\x94\xb1\xe3\x85\x14\x1b\xb6\xf5\xf3\x2d\xbd\x5f\x29\x0f\x37\x41\x55\xbb\x67\x26\xcb\xc3\x52\xa3\x31\x4c\x6c\xf5\x72\xcf\x4c\xbe\xdc\x30\x6e\x50\x75\x34\xb4\xe3\x86\xec\xb0\xcb\xa7\xc9\x0e\x97\x14\x37\xa4\xe2\x66\x9a\xe3\x1a\x35\x9a\x2e\x8b\xb2\x13\xcd\x5e\x51\x43\x7c\x4c\xce\x87\x8a\xff\x24\x09\x1d\x1c\xa8\xb2\x76\x6f\x4e\xda\xa8\x55\x15\x05\x51\x87\xd1\xfc\x95\x62\x74\x34\x79\x59\x19\x99\xc9\xa2\xe4\x68\x70\xb4\xf8\xd2\x9d\x41\x8f\xe6\x7f\x25\x26\xcb\xa9\x0c\xc6\xfc\xe1\xc9\x02\xfe\xf9\xe4\xfb\xa7\xcf\x92\x73\x38\x3b\x03\x8d\x06\xf6\x81\x00\x8c\x84\xa7\xcf\xa0\x60\xa2\x32\xa8\x5b\xd5\xbf\x8b\x1b\xd7\x48\x7b\xee\x90\xa4\x19\x67\xd9\x6d\x3c\x79\xb7\xee\xee\x37\x10\x3f\xbc\x83\xbd\x54\xb2\x8c\x23\xca\x34\x59\x73\xa4\x51\x32\xe4\xb7\xc3\xc5\x42\x7a\x8d\x3c\x58\xb4\xbb\x76\xec\xfd\xa7\xd0\x54\x4a\x74\xbd\xbe\x7b\x39\xb5\x3f\x6e\xd1\x5c\x7b\x2d\xae\x89\xc1\x39\xcf\x0c\xb2\x06\x21\xd3\x97\xa4\x67\x25\x69\xcc\xa4\xa0\xba\x2b\xd0\x05\xa0\x27\x2b\x89\xd2\xf8\x5a\x98\x86\xac\x55\xd6\x1a\x8c\xe9\x37\xe4\x4d\x6c\x69\x47\xf6\x38\x3b\xb3\x14\x25\xd1\x1a\xa9\x97\xc6\x34\x30\x91\x49\xa5\x30\x33\x50\x69\x0c\x51\x0c\x3b\xc2\x2b\xec\x5b\xc7\x6f\x1e\xfc\xf3\x0a\xcd\xcf\xa5\xd3\x35\xaa\x03\x3a\xb1\x93\x43\x0b\x9f\x50\xa8\x55\xca\xe4\xc4\x44\x1a\x08\xd7\x12\xd6\x52\xdd\x22\x75\xea\x84\x00\x83\xa7\xcf\x46\x7c\x41\x21\x8b\x41\xd3\x77\x7a\x1c\x82\x50\x07\xb9\x2c\xf3\xf9\x18\x47\x5c\xc8\xc6\x83\x1b\x17\x88\x54\xbf\x2b\xb7\x8a\xd0\xde\x2d\x29\xd4\xa5\x14\x1a\xff\xeb\x01\xb3\x7b\x36\x7b\xec\x06\x47\x03\x90\x0e\xcf\xde\xe2\xec\x40\xd0\xf9\x7d\xbc\x72\xe8\x69\xb5\xb4\x87\x33\xe2\xea\xc3\x28\x14\x14\xd5\x8f\x16\x68\xbb\x67\x31\x58\x94\x9c\x18\x5c\x40\x26\x85\xc1\xcf\xa6\xab\x6d\x8d\x3d\x8e\x2b\x4e\xfa\x18\xf3\x82\x23\x51\x23\xe4\x79\xc5\x28\x76\x27\xbb\x41\xec\x51\x3e\x49\x73\x53\xf0\x38\x27\x05\x4f\x2d\x26\x31\x8e\xaf\x48\xc1\x1b\x4d\x92\xb8\xd6\xe4\x84\x18\x9d\xcb\x7d\xdc\x43\x50\xaf\xed\x3b\x71\x2b\xe4\x5e\x4c\x81\xe5\xbb\x92\x12\x83\xf1\x97\x2e\xf0\x52\x99\x55\x05\x0a\x93\x1a\x66\xb8\xbd\xe7\x47\xf1\x5f\x7f\xfe\x01\x3f\xc3\x5f\x7f\xfe\x91\x3c\x6a\xe9\x2a\xc7\xfb\x22\xa0\x28\x1d\x3a\x4b\x4e\x04\xe5\x38\xb2\x2f\x2a\xd5\xb5\xe8\x35\xd9\xa1\x48\x33\x52\x9a\x4a\xe1\x8f\x9f\x33\x2c\x1b\xaa\x7e\x30\xef\x99\xa0\x72\x9f\x66\x52\x68\xc9\x47\x2e\x14\xa6\xbd\x29\x2c\x77\xaa\x0d\xc9\x6e\x93\x69\x3f\x69\x2e\x3e\x8e\x98\xb5\x90\x20\x7c\xe9\x38\xa3\xc5\x40\xae\x20\x05\xae\x6c\x5e\x4e\xed\xaf\x7e\x56\x2b\x50\x6b\xb2\x0d\xcb\xe1\x9f\xc5\x00\x29\xf6\x6e\x75\x32\xbf\x69\x34\xbf\xb0\x02\x65\x65\xe6\x61\xdf\x43\xf6\xaf\x84\x99\x97\x52\xbd\xc1\xcf\x66\x8c\xde\xc7\x05\x3c\x7b\xf2\x64\x60\xfb\x6a\x1c\xa3\x7d\x4c\xee\x58\x40\x39\x91\x4b\x1b\xdb\x48\xad\x01\xbe\x56\x49\x2e\x33\x62\x17\x52\x35\xa5\xdc\x0f\x4f\x46\xda\x19\xc5\xb6\x5b\x54\xfe\x2c\x73\x3a\x7a\xef\x7a\xad\xaf\x91\xd0\x43\x2f\x80\x52\xf2\x91\x7c\x1e\xd4\x32\x95\xe2\x2b\x88\x08\x47\x65\x74\xfa\x51\x4b\xf1\xaf\x4f\x17\x11\xfc\xa3\x49\xe5\x57\x68\xc2\xcf\x38\x49\x3f\x4a\x26\xe2\x68\x11\x25\xfd\xdb\xd2\x55\x96\xa1\xd6\xab\x3e\xae\x4d\x01\x75\x1d\x58\x37\x9e\x63\x08\xf5\x10\x5c\xb6\x0b\x97\x4e\xd6\xef\x51\x00\xa7\xe8\xfd\x64\x02\xe8\x5c\xdd\x94\xcc\x23\x20\xd7\xe8\x44\x7b\x69\xde\x67\xdf\xcf\x89\xba\x23\xfe\xbb\xa3\xe7\x0d\xde\xec\x33\xd1\xd0\x1d\x8e\x62\x05\xd1\x73\x92\xdd\xa2\xa0\x10\x38\x66\xe9\x9b\x68\xe9\xa9\x3e\x4f\xcf\x89\x36\x1f\x8c\x5e\xb5\x55\xd7\x15\x9a\x9f\x88\x36\x01\xb2\x92\x49\xce\xe3\xcc\x19\xef\x11\x48\x8d\x08\x6f\xe5\xe9\x93\x9f\x9d\x05\xc7\xfc\xe0\x7d\x2d\x4e\x6c\xe1\x90\x95\x15\xe4\x48\x76\x07\xd0\x12\x98\x81\x3d\xe3\x1c\xd6\x5c\x66\xb7\xb0\x56\x72\xaf\x51\xc1\x46\xc9\x02\x48\x59\xf2\x03\x13\x5b\xc8\xb4\x86\x2c\x27\x62\x8b\x7a\x6e\x1b\x26\x3e\xda\xf2\xc3\x30\x71\x00\x8a\x9c\x1c\x60\x8d\x66\x8f\x28\x80\x50\xfa\x82\x13\xeb\x76\x40\xd6\x72\x87\x40\x04\x1d\x69\xa5\xa5\x2b\x24\xc0\xe4\x58\xeb\x30\xb7\x53\x4e\xac\x0c\xa7\x4f\x86\xb6\x74\x55\xb8\x71\xa5\x8f\xc9\xa5\xc6\x20\x79\x5a\xcf\xfb\xc0\x43\x77\x18\x75\xb8\x63\x15\x4e\x24\xa6\xa9\x51\x07\xb8\xbf\xcf\xe7\x84\x6e\x51\x87\xe8\xf0\xad\x88\x8e\xde\x9f\x10\xf1\x42\x72\x9b\x45\xc3\x8e\x9e\x37\x73\x73\x27\x59\x2f\x3d\xe0\x74\x58\x4f\x30\xcc\xe4\xcc\xb9\xd1\xf8\xfe\x5b\x29\xb6\x71\x21\x6d\x5a\x0e\x1a\xda\x9e\x55\x1b\x52\x94\x16\x4b\xee\x96\xf2\x15\xce\xdf\x1d\xae\xe7\x68\x7b\x1e\xfd\x92\x18\xc2\xe3\x59\xe0\x6a\xc7\x6c\x89\x13\x45\x27\xb6\x9c\xe1\xb5\x25\xd4\x49\xde\xe3\xec\xea\x11\x32\x7b\x0a\x18\xd6\x1e\x53\xe3\x9e\x98\x59\x8f\x4e\x91\x33\xa8\x59\xa6\xc6\xdf\xb8\x88\xe9\x53\xb9\xa4\x3f\x85\x5d\xfd\x06\xa0\x8f\xae\x01\xb1\x9b\x40\xfd\xf8\xe9\xb7\x57\xd7\x0b\xb0\x95\xe5\x8d\x21\xa6\xd2\x77\xa5\xba\x3b\xec\xe1\xdb\x96\x8d\xf5\x0e\xbf\x07\xec\x89\xed\x5f\x94\xcd\xdc\x75\xb2\x47\x0a\x7b\xf4\x50\xe3\x69\x42\x3e\x98\x92\xa6\x25\x50\x29\x22\x63\x91\x0e\x04\xee\x41\x8a\x31\xdd\x57\x7a\xe7\xff\x39\xc9\x45\x97\xff\xbe\xfc\x0d\x14\x7e\xaa\x50\x1b\xd8\x10\x66\xbb\xf2\x6f\x9f\xec\x4e\x38\x00\xdc\xdf\xe7\x3a\xcd\x62\x32\x28\x25\x3b\x75\xd8\xc9\xe7\xa7\x1a\xd9\xe6\x3a\x9e\xbb\x9f\x2d\x16\x60\x54\x85\x13\x1d\x4c\xb7\x89\xea\x2b\xd6\x40\xe9\x9c\x6a\x4d\xad\x36\x68\x8e\xea\xc4\xf1\x6e\x1e\x91\xbf\xd9\xa9\x7c\xd7\xdb\xf2\xba\xa4\x9b\xdd\xc2\x46\x2a\xd8\xb0\xcf\xb6\x22\x28\x09\xa5\xf6\xaf\x66\x36\x09\x33\x51\x56\x06\x32\x22\x60\xab\xe4\xde\x25\x78\x5f\x2e\x40\x8e\x6c\x9b\x9b\x8e\x16\xd1\x5a\xd2\x43\x94\xa4\x99\xd6\x71\x14\xa4\x2c\x8d\x2c\xa3\x85\x5d\x4c\x05\xd9\xad\x89\x8a\x92\xd4\x33\xc6\xc9\xc0\x8a\x25\xa9\xf4\x6c\x9f\xd0\x18\xe0\xad\xa5\x9a\xb2\xde\x68\xc1\x86\xa5\x7f\x4e\x7d\x38\xd3\xed\x67\xb6\x4d\xae\x1f\x20\x3c\xed\xc0\x17\x27\x9e\x63\x5b\x17\x6d\xdb\x77\x5d\x15\xb3\x9a\x5b\x35\xc6\x0f\x34\xa4\x32\x72\xf0\x48\x33\xd4\xee\x1e\x6e\x31\x59\x20\xce\x1a\x04\xee\xf1\x72\x31\xfd\xea\xf2\x2d\xcc\xd9\xee\x51\x1b\xb5\x53\xb2\x75\x1f\x04\x17\x01\x28\xae\x7a\x4f\x71\x71\x02\xdf\xc3\xd3\x71\x07\xb7\xe1\x44\xe7\x73\xb6\xdf\x11\x05\xeb\x2d\x5c\x58\xff\x7b\xec\x28\x6b\xf7\x5c\x93\xec\x76\xab\x64\x25\xe8\xd2\x15\x58\x51\x2f\x9e\x06\xc4\x94\xe9\x92\x93\x43\xb4\x80\xc8\x95\xd2\x51\x92\x12\xc1\x0a\x57\x15\xf6\x2c\xd0\x4a\x75\x95\xdc\x0a\xa2\xc7\x9b\xcd\x26\x1a\x34\xa1\x8b\x69\x65\xfd\xd6\x26\x67\x7a\x4e\xfc\xe4\x16\xeb\xed\x20\xd3\x5a\x2b\x8d\x15\x17\x52\x60\xf7\x90\xc3\x27\xd4\xe0\x18\xed\x86\xaf\x05\x33\x2b\xf7\xd2\xdf\x26\x0b\xe7\x52\x2b\x1f\xa9\xed\xec\x08\xd1\x57\x21\x24\x5a\x92\x7a\xbe\xd7\x6f\xb7\xcb\xfd\xab\x5e\x0d\xde\x73\x5b\xba\x9b\x01\x9d\x9e\xa1\x7b\x69\x6f\x6f\xe5\x7d\xa3\x3e\xe5\x31\x71\x6f\xf7\x0f\xbe\x8b\xeb\x57\xa5\x24\x75\x75\x41\xbf\x5f\x70\xe4\xae\xe9\x61\x06\x08\xe7\x80\x1c\x2d\xb1\x86\x4a\x5b\x54\x5c\x4b\x69\xb4\x51\xa4\xbc\xd9\x33\x93\x79\xe9\x16\xdd\x8c\xdc\x6e\x39\x46\x49\x3a\x20\x68\x3e\x18\x9c\x9d\x01\x0a\x0b\xc3\x60\xa4\xe4\x86\x95\x7a\x01\x8f\xeb\xef\x0e\xb6\x75\x23\x40\x95\x2c\xa9\xdc\x8b\xd0\xbb\xd5\x75\x4b\xa5\x51\x03\x65\x9b\x0d\x2a\x14\x06\x28\x31\x64\xe9\xb7\xab\x77\xff\xbd\x33\x77\xf1\x28\xc8\x7f\xf4\xbe\xb3\x41\x94\xa4\x61\xba\xe3\x53\xe1\x36\x56\x10\xe5\x72\x87\x2a\x7c\xe3\xa9\x15\xb6\x61\xc0\xc9\x1a\xf9\x7f\x24\x25\x3c\x4a\x52\x8b\x5b\x3a\x97\xfb\x74\xad\xd3\xc2\xcd\x75\x3c\x19\x77\xd6\xa2\x1d\xff\xf1\x41\x3c\x02\x21\x1b\x92\x8e\xd9\x45\xa5\xf3\xf6\xfe\xa2\xdb\xd2\x2d\x3a\x91\xa9\x42\x4e\x0c\xd2\x5f\x88\xda\xa2\x99\xa2\xfd\x70\x8b\xb6\x1a\x70\xbf\x53\x6b\x88\x38\x72\xbf\x97\xb7\x78\x88\x26\x19\xfc\x73\xf3\x98\x61\x67\x8f\xd9\x67\x20\xc6\xb8\x8f\x67\xa1\xbd\x72\xb5\xd0\x1a\xf9\xa5\x9d\x8e\x9b\xed\x17\xad\xe0\x01\x7f\xe6\x73\x3e\x5c\x34\xed\xa4\xc5\xfa\x13\x8c\xce\x3e\xe9\x86\x09\x1a\x47\xde\xd2\x4b\xf7\x00\x1a\x85\xe6\xa5\x13\xf0\xa3\xa7\xda\xa8\x47\x3f\x00\x10\x77\x9a\x95\xff\xd3\x2f\x01\x83\x9e\xab\xfa\x47\x67\xb1\x53\xdb\x0d\x0e\x97\x33\x1b\x17\x17\xfd\x4f\x58\x57\x28\x50\x11\x83\xaf\xec\xe2\xdf\x38\x69\x28\x22\xa6\x1f\xa2\xa3\x2e\x4d\xfc\xc5\x29\xb0\xf2\x7a\x1c\x93\x91\x5c\xeb\xb0\xee\x6b\x96\x05\xc0\x5a\xbc\xab\x8c\x9a\x8f\x83\x1d\x07\xe6\x58\x24\x5d\x73\xd9\x13\x7a\x32\xef\x8d\x1c\x8b\xd4\x78\x2f\x0c\x5e\xe3\x57\x97\xa4\x2c\x51\xd0\xa5\xfb\x3c\xd3\x6f\x0d\x47\x21\xe4\x74\x88\x23\xdb\x46\xf6\x29\xeb\xa4\x7d\x49\xa9\xff\x19\x7b\xe1\x53\x88\x1d\xfe\x4e\xc6\x67\xce\x28\x45\x71\xbf\x08\xbd\x33\x14\xef\xf0\xc1\x2c\x67\x9c\x2a\x14\xb1\x05\xd0\x42\xee\x7a\xf1\x3d\x7f\xa3\x77\xb2\x9d\xe8\x0d\x1a\x50\xf2\x74\xbd\x4f\xcb\x67\x67\xe1\x55\xca\x42\x36\x23\x1c\xdc\xcb\x13\xb8\x17\x5d\x23\x2d\x86\xcb\x7d\xfb\xf8\xc5\x04\xd3\x79\xe8\xc1\x98\xf0\xb9\xf3\xd4\xdb\x51\x7d\x39\x37\x9d\xa7\xdb\xa0\x97\xcf\xb6\xe7\x36\xbd\x9c\x3f\xf8\x5f\x00\x00\x00\xff\xff\xf1\x2d\x6c\x3a\xe7\x1f\x00\x00") +var _staticUiJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x56\x5d\x8b\xe3\x36\x17\xbe\x9f\x5f\x71\xe0\x5d\xb0\x02\x8e\x37\x6f\xa1\x37\x5e\x52\x98\x8b\xee\xcc\xc0\xb6\x94\xee\x0e\xbd\x28\xa5\x28\xd1\x49\x24\x22\x4b\x46\x3a\x4e\x1a\x76\xe7\xbf\x17\x49\x76\xe2\x38\x4a\x67\xe8\x45\x75\x31\xd1\x58\xe7\xfb\x3c\xe7\x91\xf6\xdc\xc1\xf3\x13\x2c\x81\x6d\x3a\xb3\x26\x65\x0d\x6b\xb9\xe3\x8d\x9f\xc1\xd7\xbb\xbb\x3b\x00\x80\xf7\xef\xe1\x20\xd1\x40\xe7\xd1\xc1\x5a\xab\xf5\x0e\xac\x01\x6e\x8e\xc0\x35\x3a\x02\xcd\x57\xa8\xa1\xb1\x82\x6b\x68\x6d\xdb\xb5\x70\x50\x24\x81\x83\x56\x9e\xc0\x6e\xa0\xb5\xde\xab\x95\xc6\xc1\xda\x46\x69\x42\x07\x07\xa5\x35\x78\x69\x0f\x25\x90\x54\x1e\x86\x00\x40\xf9\xe0\x4b\x00\x59\xf0\x48\x5d\x0b\x24\x39\x25\x07\xd1\x44\xfc\xf8\x53\xf4\xb7\x3c\x69\xb1\x10\x30\xf4\xeb\x1d\x2b\xfe\x17\xc3\x8a\x52\xc5\xac\xb2\x86\x15\xc1\x55\xb5\xf2\x55\x34\x54\x94\x67\x4d\xdc\xa3\xa1\xb1\x7a\x58\xcf\xc6\x23\x56\xbf\xf0\xce\x23\x9b\x7d\xb8\x38\x0a\x35\x6b\x7a\xf7\xef\x58\x88\x3d\x23\x90\xaa\x12\x04\xa2\xf9\xca\xa1\xe6\x84\xe2\x0b\x77\x5b\xa4\x5b\xf2\x7f\xee\xf0\x08\xcb\xb4\xaf\x04\x27\xce\x8a\xb8\x9f\xef\xf0\x58\xdc\x54\xda\xc7\x48\xae\x95\xf6\x21\xf5\x6b\x25\x4e\xe4\x3c\x2c\xe1\x3e\x74\xcf\x57\x0f\x48\x9f\x82\xf8\x7d\xf8\xcc\x4e\x61\x94\x67\xe3\x19\x1b\x6b\xdb\x99\xd0\xc3\x25\x7c\xee\x9a\x86\xbb\x63\x30\xf3\x16\xe5\x58\xb7\x6a\xa3\x8c\x60\x45\xea\xc4\x9c\x14\x69\x2c\x66\x95\xa4\x46\xb3\x0b\xe1\xb0\x24\x6f\x74\xb5\xb6\x4d\xab\x34\x3e\xf2\x46\xb3\xe2\x42\x8b\x7d\xbd\xd2\x08\x2b\xe6\x58\xa7\x9f\x32\x2b\xd1\x67\x50\x0f\x9b\x2b\xa1\x97\xd9\xc5\xa7\x4c\x11\xa4\x32\x14\x0b\xd9\x91\x0d\x11\x6a\x24\xac\x1e\xd0\xa0\xe3\x84\x8f\xe1\xf0\x5f\x56\x64\x65\xc5\x71\x28\xc8\xad\xfc\x93\x4c\x26\xfd\x18\x55\x9d\x7e\xee\x2e\x13\xca\x7a\x0e\xa3\x11\xa7\xba\x28\xe1\x14\x40\x47\x64\xcd\x3c\x0d\xea\xc5\xa8\x68\x6c\xa6\x93\x32\x94\xa3\x1f\xeb\x08\x79\x8d\x4d\x45\x09\xea\x3d\x24\xd3\xe9\x9c\xb7\x2d\x1a\x11\xa0\xd9\xe1\x14\x9c\x90\x9b\xdc\x18\x10\x2b\xa4\x12\x59\xf9\x8f\xd1\xac\xaf\xee\x85\x48\x5b\x96\x1c\x4d\x44\x5f\x46\xff\x8f\xf7\x59\xa2\x90\x4a\x08\x34\x6f\xa7\x8a\x57\xf9\xe0\x1f\x40\xbf\x96\x4a\x0b\x87\x86\xcd\x2a\x87\x8d\xdd\x5f\x91\xcd\x6d\x78\xbc\xaa\x9a\x28\xec\x37\xae\xe8\xa3\x75\x3f\xe3\x5f\xf4\x2b\x6a\xcb\x05\xcb\xd4\xe2\xe5\xcc\xf5\xc8\xd7\xb2\x67\xf6\xad\xb3\x5d\x0b\x92\xef\x31\xb2\xb9\xd9\xc1\xb6\x47\xb7\x80\x8d\x75\xa0\xa8\x84\x55\x47\x70\x40\x08\xfd\x01\x45\xd0\x19\x52\x7a\x30\x15\x6f\x0c\x69\xf7\xe8\x3c\x84\xbf\x89\xc8\x93\x55\x6f\x83\xb8\xb0\xe8\x4d\x41\x40\x8e\x7b\x09\x24\x11\x9e\x9f\xce\x1c\xff\x10\x24\x3f\x29\xb3\x7b\x8c\xda\xcb\xdb\x38\x4c\x90\x4b\xed\x6b\x6c\xe7\x11\xcd\x04\xb9\xd3\xa6\xf5\x8d\x1a\x2a\x1b\x13\x9e\xc7\xd0\xe6\x31\xd3\x1f\x80\x17\xf1\x54\x79\xc9\x66\x15\x37\xaa\xe1\x84\x99\x79\xb3\x2d\x5f\x2b\x3a\xd6\xf0\xff\xc5\xe2\x12\x73\x25\x7c\xb7\x58\xdc\x04\xde\x24\x60\x8d\x7c\x8f\xff\x6d\xc0\x6f\x0c\x77\x84\x8d\xe0\x1b\xb8\xd6\x10\x82\xc7\xc0\x7e\xca\xf8\xd0\xf9\x31\x5e\x5a\x6e\x50\xa7\x56\xc7\x2b\xbe\xf3\x08\x64\xad\x26\xd5\xfa\xc1\x10\x37\xe2\x74\xb7\x5b\x8f\x93\x96\x7f\xe9\xa5\xc7\x1d\x8f\xb6\x7f\x9c\xb6\xbd\x0a\x68\x3d\x9f\xf5\xc5\xf9\x3d\x50\xce\x9c\xec\x76\xab\x71\xd9\xbb\xfe\xa3\x98\x8d\x8a\xab\x4a\xc8\x51\xd9\xd0\x95\x5e\x27\x53\xbc\x54\x56\x65\x4d\x0d\x1b\xae\x3d\x96\x21\x1b\xaf\xed\xc1\x83\xb0\x07\x33\x24\x0a\x71\x22\xfb\xf7\xca\x78\x09\xd4\xfc\x58\x67\x18\x34\x56\x40\xda\x43\x0d\xdf\x2f\x16\xf9\x2b\x2b\xcc\xd8\xb4\x6b\xa9\x73\x57\x9f\x22\xbd\xd4\xa7\x7c\xc2\x3d\xc8\x8a\x9e\x73\xe0\xdb\xb7\xd3\x41\xe2\x66\xf2\x03\x1f\x65\x2c\x39\xb5\xdd\x86\x7b\xb2\x88\x83\x5c\xbc\x4a\xab\x03\x5c\x62\x3b\xe3\x1b\x23\xf6\x34\x3e\x32\x6f\xce\x6f\x66\xdc\x93\xcc\x87\x8c\xc8\x00\x8f\xb1\xc4\xe0\x55\x19\x45\xb7\x5e\x85\xe7\x77\x23\x9b\x68\x39\xa4\xce\x99\x91\xe8\x93\x51\x54\x47\x63\xe7\x8a\x7c\x9e\x26\x54\x5f\xe7\x38\x58\x7d\x99\x05\x17\x7f\x07\x00\x00\xff\xff\x18\x09\x30\x76\x5d\x0b\x00\x00") + +func staticUiJsBytes() ([]byte, error) { + return bindataRead( + _staticUiJs, + "static/ui.js", + ) +} + +func staticUiJs() (*asset, error) { + bytes, err := staticUiJsBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/ui.js", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticUnseeJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x59\xef\x6e\xdc\x36\x12\xff\x9e\xa7\x98\x24\x05\x24\xf5\xd6\xda\x04\x85\xef\xc3\x1a\xc6\x21\x31\x1a\xc7\x87\x22\x0d\xec\xf3\xb5\x40\x11\x14\x5c\x69\x76\x97\x36\x45\x2a\xe4\x68\xd7\x8b\x60\x1f\xa3\xe8\xfb\xf5\x49\x0e\x14\xa9\xff\x92\xd7\x39\x04\xe5\x17\xaf\xc9\x99\xe1\x70\x38\xf3\x9b\x19\x6a\xcb\x34\xdc\x4a\x83\x08\xe7\x10\xae\x0a\x99\x10\x57\x32\xcc\x99\x66\x99\x89\xe0\xcb\xb3\x67\xcf\x00\x00\x2c\x15\xf1\x0c\x35\x9c\xc3\x8a\x09\x83\x67\xf5\xf4\x16\xb5\xe1\x4a\x0e\x17\x34\xae\x34\x9a\xcd\x95\x24\xd4\x5b\x26\xe0\x1c\x5e\x9f\x9e\x35\xe2\x0c\x0a\x4c\x48\x69\x03\xe7\xf0\xa5\x9c\xb5\xc3\x33\xbd\x2d\x88\x94\x5c\x40\xf0\xd2\x4f\x04\xb3\x9a\x04\xb5\x56\xda\xd8\x35\xf7\x2b\x28\x57\x0e\x5e\x53\x2e\x39\x59\x5d\xaa\x93\x44\x2d\xe1\x1f\xb5\x5a\x6b\x34\x26\xbe\x92\x9c\xc2\xc8\x2b\x63\xc7\x85\x92\x2b\xbe\x76\xf3\x0d\xbd\x5b\xc9\xf7\x37\x5e\x55\xbb\x67\xa2\xf2\xfd\x89\x41\x22\x2e\xd7\xe6\x64\xc7\x69\x73\xb2\xe2\x82\x50\xb7\x34\xb4\xe3\x86\x6d\xb1\xcd\x67\xd8\x16\x4f\x52\x5c\xb1\x42\xd0\x38\xc7\x35\x1a\xa4\x36\x8b\xb6\x13\xf5\x5e\x41\x4d\x7c\x88\xce\xfa\x8a\xff\xa4\x58\xda\x3b\x50\x61\xed\x5e\x9f\xb4\x56\xab\xc8\x32\xa6\xf7\x83\xf9\x4b\xcd\xd3\xc1\xe4\x9b\x82\x54\xa2\xb2\x5c\x20\xe1\x60\xf1\x5d\x79\x06\x33\x98\xff\x85\x51\xb2\x49\x95\x37\xe6\x0f\xaf\x66\xf0\xcf\x57\xdf\xbf\x3e\x8d\xce\x60\x3e\x07\x83\x04\x3b\x4f\x00\xa4\xe0\xf5\x29\x64\x5c\x16\x84\xa6\x51\xfd\xbb\xb0\x76\x8d\xb8\xe3\x0e\x51\x9c\x08\x9e\xdc\x87\xa3\x77\x5b\xde\xfd\x0a\xc2\xe7\x8f\xb0\xe7\x5a\xe5\x61\x90\x72\xc3\x96\x02\xd3\x20\xea\xf3\xdb\x51\xc6\x42\x7c\x8d\xc2\x5b\xb4\xbd\x76\xe8\xfc\xa7\x91\x0a\x2d\xdb\x5e\xdf\xbe\x9c\xca\x1f\xd7\x48\xd7\x4e\x8b\x6b\x46\x38\xe5\x99\x5e\x56\x2f\x64\xba\x92\xcc\xa4\x24\x83\x89\x92\xa9\x69\x0b\x2c\x03\xd0\x91\xe5\x4c\x1b\xbc\x92\x54\x93\x35\xca\x5a\x83\x71\xf3\x81\x7d\x08\x2d\xed\xc0\x1e\xf3\xb9\xa5\xc8\x99\x31\x98\x3a\x69\xdc\x00\x97\x89\xd2\x1a\x13\x82\xc2\xa0\x8f\x62\xd8\x32\x51\x60\xd7\x3a\x6e\x73\xef\x9f\x97\x48\x3f\xe7\xa5\xae\x41\x15\xd0\x91\x9d\xec\x5b\xf8\x88\x42\x8d\x52\xb4\x61\x14\x18\x60\xc2\x28\x58\x2a\x7d\x8f\x69\xa9\x8e\x0f\x30\x78\x7d\x3a\xe0\xf3\x0a\x59\x0c\x1a\xbf\xd3\x43\x1f\x84\x5a\xc8\x65\x99\xcf\x86\x38\x52\x86\x6c\xd8\xbb\x71\x89\x98\x9a\xdb\x7c\xad\x59\xda\xb9\x25\x8d\x26\x57\xd2\xe0\x7f\x1d\x60\xb6\xcf\x66\x8f\x5d\xe3\xa8\x07\xd2\xfe\xd9\x1b\x9c\xed\x09\x3a\x7b\x8a\x57\xf6\x3d\xad\x92\xf6\x7c\x42\x5c\x75\x18\x8d\x32\x45\xfd\xa3\x05\xda\xf6\x59\x08\xb3\x5c\x30\xc2\x19\x24\x4a\x12\x3e\x50\x5b\xdb\x0a\x7b\x4a\xae\x30\xea\x62\xcc\x85\x40\xa6\x07\xc8\xf3\x9e\xa7\xd8\x9e\x6c\x07\xb1\x43\xf9\x28\xde\x50\x26\xc2\x0d\xcb\x44\x6c\x31\x89\x0b\x7c\xcf\x32\x51\x6b\x12\x85\x95\x26\x47\xc4\x98\x8d\xda\x85\x1d\x04\x75\xda\xde\xca\x7b\xa9\x76\x72\x0c\x2c\x6f\xf3\x94\x11\x86\x5f\xda\xc0\x9b\xaa\xa4\xc8\x50\x52\x4c\x9c\x84\xbd\xe7\x17\xe1\x5f\x7f\xfe\x01\x3f\xc3\x5f\x7f\xfe\x11\xbd\x68\xe8\x8a\x92\xf7\xc2\xa3\x68\xda\x77\x96\x0d\x93\xa9\xc0\x81\x7d\x51\xeb\xb6\x45\xaf\xd9\x16\x65\x9c\xb0\x9c\x0a\x8d\x3f\x3e\x24\x98\xd7\x54\xdd\x60\xde\x71\x99\xaa\x5d\x9c\x28\x69\x94\x18\xb8\x90\x9f\x76\xa6\xb0\xdc\xb1\x21\x96\xdc\x47\xe3\x7e\x52\x5f\x7c\x18\x70\x6b\x21\xc9\xc4\x49\xc9\x19\xcc\x7a\x72\x25\xcb\x70\x61\xf3\x72\x6c\x7f\x75\xb3\x5a\x86\xc6\xb0\xb5\x5f\xf6\xff\xcc\x7a\x48\xb1\x2b\x57\x47\xf3\x9b\x41\xfa\x0f\xcf\x50\x15\x34\x0d\xfb\x0e\xb2\x7f\x61\x9c\xde\x29\xfd\x01\x1f\x68\x88\xde\x87\x19\x9c\xbe\x7a\xd5\xb3\x7d\x31\x8c\xd1\x2e\x26\xb7\x2c\xa0\x4b\x91\x27\x36\xb6\x31\xb5\x06\xf8\x5a\x25\x85\x4a\x98\x5d\x88\xf5\x98\x72\x3f\xbc\x1a\x68\x47\x9a\xaf\xd7\xa8\xdd\x59\xa6\x74\x74\xde\x75\x65\xae\x91\xa5\xfb\x4e\x00\xc5\xec\x8e\x3d\xf4\x6a\x99\x42\x8b\x05\x04\x4c\xa0\x26\x13\xdf\x19\x25\xff\xf5\xf9\x3c\x80\x7f\xd4\xa9\xfc\x12\xc9\xff\x0c\xa3\xf8\x4e\x71\x19\x06\xb3\x20\xea\xde\x96\x29\x92\x04\x8d\x59\x74\x71\x6d\x0c\xa8\xab\xc0\xba\x71\x1c\x7d\xa8\x07\xef\xb2\x6d\xb8\x2c\x65\xfd\x16\x78\x70\x0a\x3e\x8d\x26\x80\xd6\xd5\x8d\xc9\x3c\x00\x0a\x83\xa5\x68\x27\xcd\xf9\xec\xa7\x29\x51\x8f\xc4\x7f\x7b\x74\xbc\xc1\x99\x7d\x22\x1a\xda\xa3\xa4\x58\x40\xf0\x96\x25\xf7\x28\x53\xf0\x1c\x93\xf4\x75\xb4\x74\x54\x9f\xa6\x17\xcc\xd0\xef\x64\x16\x4d\xd5\x75\x89\xf4\x13\x33\xe4\x21\x2b\x1a\xe5\x3c\x4c\x9c\xf1\x09\x81\x54\x8b\x70\x56\x1e\x3f\xf9\x7c\xee\x1d\xf3\x77\xe7\x6b\x61\x64\x0b\x87\x24\x2f\x60\x83\x6c\xbb\x07\xa3\x80\x13\xec\xb8\x10\xb0\x14\x2a\xb9\x87\xa5\x56\x3b\x83\x1a\x56\x5a\x65\xc0\xf2\x5c\xec\xb9\x5c\x43\x62\x0c\x24\x1b\x26\xd7\x68\xa6\xb6\xe1\xf2\xce\x96\x1f\xc4\xe5\x1e\x52\x14\x6c\x0f\x4b\xa4\x1d\xa2\x04\x96\xa6\x17\x82\x59\xb7\x03\xb6\x54\x5b\x04\x26\xd3\x81\x56\x46\x95\x85\x04\xd0\x06\x2b\x1d\xa6\x76\xda\x30\x2b\xa3\xd4\x27\x41\x5b\xba\x6a\x5c\x95\xa5\x0f\x6d\x94\x41\x2f\x79\x5c\xcf\xa7\xc0\x43\x7b\x90\xde\x3f\xb2\x0a\x47\x12\xd3\xd8\xa8\x02\xdc\xdd\xe7\x5b\x96\xae\xd1\xf8\xe8\x70\xad\x88\x09\x3e\x1d\x11\x71\xa1\x84\xcd\xa2\x7e\x47\xc7\x9b\x94\x73\x47\x59\xdf\x38\xc0\x69\xb1\x1e\x61\x98\xc8\x99\x53\xa3\xf6\xfd\x8f\x4a\xae\xc3\x4c\xd9\xb4\xec\x35\xb4\x3d\xab\x21\x96\xe5\x16\x4b\x1e\x97\xf2\x15\xce\xdf\x1e\x65\xcf\xd1\xf4\x3c\xe6\x1d\x23\x26\xc2\x49\xe0\x6a\xc6\x64\x89\x13\x04\x47\xb6\x9c\xe0\xb5\x25\xd4\x51\xde\xc3\xe4\xea\x01\x12\x7b\x0a\xe8\xd7\x1e\x63\xe3\x89\x98\x59\x8d\x56\x91\xd3\xab\x59\xc6\xc6\xff\x71\x11\xe3\xa7\x2a\x93\xfe\x18\x76\x75\x1b\x80\x2e\xba\x7a\xc4\xae\x03\xf5\xee\xf3\xaf\xef\xaf\x67\x60\x2b\xcb\x1b\x62\x54\x98\xc7\x52\xdd\x23\xf6\x70\x6d\xcb\xca\x7a\x87\xdb\x03\x76\xcc\xf6\x2f\xda\x66\xee\x2a\xd9\x63\x0a\x3b\x74\x50\xe3\x68\x7c\x3e\x18\x93\x66\x14\xa4\x4a\x06\x64\x91\x0e\x24\xee\x40\xc9\x21\xdd\x57\x7a\xe7\xdf\x9c\xe4\x82\x37\xff\x7e\xf3\x2b\x68\xfc\x5c\xa0\x21\x58\x31\x6e\xbb\xf2\x6f\x9f\xec\x8e\x38\x00\x3c\xdd\xe7\x5a\xcd\x62\xd4\x2b\x25\x5b\x75\xd8\xd1\xe7\xa7\x0a\xd9\xa6\x3a\x9e\xc7\x9f\x2d\x66\x40\xba\xc0\x91\x0e\xa6\xdd\x44\x75\x15\xab\xa1\x74\x4a\xb5\xba\x56\xeb\x35\x47\x55\xe2\xb8\x9d\x46\xe4\x6f\x76\x2a\xd7\xf5\x36\xbc\x65\xd2\x4d\xee\x61\xa5\x34\xac\xf8\x83\xad\x08\x72\x96\xa6\xf6\xaf\xe1\x36\x09\x73\x99\x17\x04\x09\x93\xb0\xd6\x6a\x57\x26\x78\x57\x2e\xc0\x06\xf9\x7a\x43\x2d\x2d\x82\xa5\x4a\xf7\x41\x14\x27\xc6\x84\x81\x97\x72\x42\x2a\x0f\x66\x76\x31\x96\x6c\xbb\x64\x3a\x88\x62\xc7\x18\x46\x3d\x2b\xe6\xac\x30\x93\x7d\x42\x6d\x80\x8f\x96\x6a\xcc\x7a\x83\x05\x1b\x96\xee\x39\xf5\xf9\x44\xb7\x9f\xd8\x36\xb9\x7a\x80\x70\xb4\x3d\x5f\x1c\x79\x8e\x6d\x5c\xb4\x69\xdf\x4d\x91\x4d\x6a\x6e\xd5\x18\x3e\xd0\xb0\x82\x54\xef\x91\xa6\xaf\xdd\x13\xdc\x62\xb4\x40\x9c\x34\x08\x3c\xe1\xe5\x62\xfc\xd5\xe5\x5b\x98\xb3\xd9\xa3\x32\x6a\xab\x64\x6b\x3f\x08\xce\x3c\x50\x5c\x76\x9e\xe2\xc2\x08\xbe\x87\xd7\xc3\x0e\x6e\x25\x98\xd9\x4c\xd9\x7e\xcb\x34\x2c\xd7\x70\x6e\xfd\xef\x65\x49\x59\xb9\xe7\x92\x25\xf7\x6b\xad\x0a\x99\x9e\x94\x05\x56\xd0\x89\xa7\x1e\x71\xca\x4d\x2e\xd8\x3e\x98\x41\x50\x96\xd2\x41\x14\x33\xc9\xb3\xb2\x2a\xec\x58\xa0\x91\x5a\x56\x72\x0b\x08\x5e\xae\x56\xab\xa0\xd7\x84\xce\xc6\x95\x75\x5b\xd3\x86\x9b\x29\xf1\xa3\x5b\x2c\xd7\xbd\x4c\x6b\xad\x34\x54\x5c\x2a\x89\xed\x43\xf6\x9f\x50\xbd\x63\x34\x1b\x5e\x49\x4e\x8b\xf2\xa5\xbf\x49\x16\xa5\x4b\x2d\x5c\xa4\x36\xb3\x03\x44\x5f\xf8\x90\x68\x48\xaa\xf9\x4e\xbf\xdd\x2c\x77\xaf\x7a\xd1\x7b\xcf\x6d\xe8\x6e\x7a\x74\x66\x82\xee\x9d\xbd\xbd\x85\xf3\x8d\xea\x94\x87\xa8\x7c\xbb\x7f\xf6\x5d\x58\xbd\x2a\x45\x71\x59\x17\x74\xfb\x85\x92\xbc\x6c\x7a\x38\x01\x13\x02\x50\xa0\x25\x36\x50\x18\x8b\x8a\x4b\xa5\xc8\x90\x66\xf9\xcd\x8e\x53\xe2\xa4\x5b\x74\x23\xb5\x5e\x0b\x0c\xa2\xb8\x47\x50\x7f\x30\x98\xcf\x01\xa5\x85\x61\x20\xa5\x04\xf1\xdc\xcc\xe0\x65\xf5\xdd\xc1\xb6\x6e\x0c\x52\xad\xf2\x54\xed\xa4\xef\xdd\xaa\xba\xa5\x30\x68\x20\xe5\xab\x15\x6a\x94\x04\x29\x23\x76\xe2\xb6\xab\x76\xff\xad\x35\x77\xfe\xc2\xcb\x7f\xf1\xa9\xb5\x41\x10\xc5\x7e\xba\xe5\x53\xfe\x36\x16\x10\x6c\xd4\x16\xb5\xff\xc6\x53\x29\x7c\x7b\xd5\xf9\xec\xe0\x82\xb2\xf3\x51\x67\x3e\xf7\xfd\xa0\x35\x16\x67\x02\xca\x9e\x0f\xca\xb7\x14\x52\xd6\x7a\x6a\xd7\xb4\x9d\x5c\x72\xb3\xf1\xd5\x0f\x97\xce\x6b\x8f\x75\x6d\x15\x96\xdd\xb4\x1e\x4d\xbc\xdf\x3a\x3f\x3f\xb3\x17\x7b\xf6\xec\x7f\x01\x00\x00\xff\xff\xad\x2c\xa9\x47\x61\x1b\x00\x00") func staticUnseeJsBytes() ([]byte, error) { return bindataRead( @@ -1482,6 +1503,7 @@ var _bindata = map[string]func() (*asset, error){ "static/progress.js": staticProgressJs, "static/querystring.js": staticQuerystringJs, "static/summary.js": staticSummaryJs, + "static/ui.js": staticUiJs, "static/unsee.js": staticUnseeJs, "static/watchdog.js": staticWatchdogJs, } @@ -1588,6 +1610,7 @@ var _bintree = &bintree{nil, map[string]*bintree{ "progress.js": &bintree{staticProgressJs, map[string]*bintree{}}, "querystring.js": &bintree{staticQuerystringJs, map[string]*bintree{}}, "summary.js": &bintree{staticSummaryJs, map[string]*bintree{}}, + "ui.js": &bintree{staticUiJs, map[string]*bintree{}}, "unsee.js": &bintree{staticUnseeJs, map[string]*bintree{}}, "watchdog.js": &bintree{staticWatchdogJs, map[string]*bintree{}}, }},