-
Notifications
You must be signed in to change notification settings - Fork 17
/
bindata.go
240 lines (214 loc) · 24.7 KB
/
bindata.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
package dnsp
import (
"bytes"
"compress/gzip"
"fmt"
"io"
"io/ioutil"
"os"
"path"
"path/filepath"
"strings"
"time"
)
func bindata_read(data []byte, name string) ([]byte, error) {
gz, err := gzip.NewReader(bytes.NewBuffer(data))
if err != nil {
return nil, fmt.Errorf("Read %q: %v", name, err)
}
var buf bytes.Buffer
_, err = io.Copy(&buf, gz)
gz.Close()
if err != nil {
return nil, fmt.Errorf("Read %q: %v", name, err)
}
return buf.Bytes(), nil
}
type asset struct {
bytes []byte
info os.FileInfo
}
type bindata_file_info struct {
name string
size int64
mode os.FileMode
modTime time.Time
}
func (fi bindata_file_info) Name() string {
return fi.name
}
func (fi bindata_file_info) Size() int64 {
return fi.size
}
func (fi bindata_file_info) Mode() os.FileMode {
return fi.mode
}
func (fi bindata_file_info) ModTime() time.Time {
return fi.modTime
}
func (fi bindata_file_info) IsDir() bool {
return false
}
func (fi bindata_file_info) Sys() interface{} {
return nil
}
var _web_ui_index_html = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xc4\x59\x5b\x73\xdb\xb8\x15\x7e\xf7\xaf\x40\x98\x74\x44\x8d\x4d\x4a\x96\x92\x59\x57\x96\xd4\x71\x62\xbb\xdb\xd6\x6d\x76\x26\xe9\xec\xc3\xce\x3e\xc0\x24\x44\x22\x81\x08\x16\x04\x65\x69\x3b\xfe\xef\x3d\x00\x6f\x20\x09\x4a\xce\x64\xba\xfb\xe0\x11\x09\x1c\x9c\xeb\x77\x2e\xa0\x97\xaf\x42\x1e\xc8\x43\x4a\x50\x2c\xb7\x6c\x7d\x76\xb6\x54\xbf\x88\xe1\x24\x5a\x39\x24\x71\xd6\xb0\x40\x70\xb8\x3e\x43\x68\xb9\x25\x12\xa3\x20\xc6\x22\x23\x72\xe5\xe4\x72\xe3\x5d\x39\xcd\x46\x82\xb7\x64\xe5\xec\x28\x79\x4a\xb9\x90\x0e\x0a\x78\x22\x49\x02\x84\x4f\x34\x94\xf1\x2a\x24\x3b\x1a\x10\x4f\xbf\x5c\x20\x9a\x50\x49\x31\xf3\xb2\x00\x33\xb2\xba\xf4\xa7\xc0\x48\x71\x92\x54\x32\xb2\x0e\x93\x2c\x45\x1f\x78\xb2\xa1\x51\x2e\xb0\xa4\x3c\x59\x4e\x8a\x1d\x4d\xc4\x68\xf2\x15\x09\xc2\x56\x4e\x26\x0f\x8c\x64\x31\x21\x20\x2f\x16\x64\xb3\x72\x62\x29\xd3\xc5\x64\x72\xc8\xa9\x7f\xc0\x31\xe7\x38\xa5\x99\x1f\xf0\xed\x24\xcd\x05\x99\x4c\xfd\x77\xfe\x54\x3f\x7a\x5b\x9a\xf8\x41\x96\x15\x06\x7c\x2f\xc7\x48\xd0\x30\xf3\x04\xc9\x52\x9e\x64\x74\x67\x72\x57\xec\x35\x53\x25\x08\xa1\x47\x1e\x1e\xd0\x7f\xf5\x23\xbc\xe0\xe0\x6b\x24\x78\x9e\x84\x5e\xc0\x19\x17\x0b\xf4\xfa\xf6\xdd\xed\x9f\xef\xe6\xd7\x25\x41\xb5\x3a\xbb\x9a\x4f\xdf\xfe\x50\xac\x3e\x9f\xe9\x1f\x9f\xf1\x88\xd7\x9c\x62\x42\xa3\x58\x2e\xd0\xe5\x0f\x6f\xd3\x7d\x75\x5a\xfb\x1a\xd6\xa6\xd3\x3f\x5d\xf7\x24\x2e\x50\x2e\x98\x3b\x51\x5c\xfc\x34\x89\xc6\x28\x80\x60\x11\x81\x12\x0e\x76\xa4\x04\xcb\xb6\xb4\x32\x9a\xb5\xc0\x2d\x16\x11\x4d\x16\x68\x8a\x70\x2e\x79\x9b\xf6\x91\x81\x14\x46\x33\x79\x81\xfc\xa7\x98\x4a\xa2\x9e\x1b\xa3\xb9\x08\x89\xf0\x04\x0e\x69\x9e\x2d\xd0\x55\xa3\x6f\xc5\xf3\x72\xda\xac\xa5\x38\x0c\x69\x12\x79\x8f\x5c\x4a\xbe\xed\xec\xf1\x8c\x2a\x70\x2c\x54\xe8\x00\x26\x3b\x52\xe9\xd1\x56\xe3\x98\xbf\xdb\x9e\xd5\xe7\x2c\x2a\xf7\xcf\xdd\x5d\xdd\xdd\xdc\x4f\x07\xe4\xc5\xb3\x96\xe5\xf1\xac\xef\xb6\x8e\x7d\xa6\x61\x16\x76\xf5\xf9\x23\xe2\xf9\x8e\x08\x86\x1b\x70\x35\xde\xc1\x8f\x19\x67\xb9\x24\x95\xcc\xdf\x3c\x9a\x84\x64\xaf\x64\x56\x4b\x8c\x6c\xa4\xa1\x95\xe4\xa9\xf1\x56\x83\xcb\x00\xd2\x51\x6c\xd5\x5e\x22\xa4\x16\xca\x53\x1c\x50\x79\x00\xb6\xfe\xd5\xf5\x09\x28\xd4\x10\x07\xeb\x3d\xc5\x32\xed\xa0\x67\x81\x66\xe9\x1e\x81\x55\x34\x6c\x87\xd0\x0e\xa2\x6f\x8d\xdf\x0b\x05\x5b\x78\x18\x07\xe3\xf9\x4b\x71\xd7\x84\xf5\xfe\xea\xfe\xe6\xfe\xbe\x6d\x8a\xd7\x0e\x46\x0d\x98\x77\x8d\x7d\x92\xec\xa5\x87\x19\x8d\xc0\xee\x22\x8d\xdb\x7e\x8c\x39\x68\x15\x80\xfc\x06\xd2\x43\x47\x10\xda\x40\xa6\x7b\x4f\x65\xc8\x1f\x39\x0b\x3b\xea\xf4\x33\xf1\xd9\x90\x82\xb7\x2d\x31\x9a\x59\x46\x7f\x23\x0b\x34\x27\xdb\xae\xb9\x37\xf3\xab\x77\x6f\xdf\x9f\x4e\xf5\xca\x8e\x92\x60\xc3\xc5\xb6\x81\x79\xe5\x0f\xa8\xc4\x95\x84\xe7\x3e\x39\x4d\xd2\x5c\xfe\xa2\x1a\xdd\xca\x51\xb6\x3b\xbf\xd6\x1c\x2a\x28\x5f\x35\x0a\xd6\x88\xf7\xdf\x36\x8b\x86\x24\xc3\x96\x53\x5e\x81\x43\xde\x63\x0e\x9b\x49\x37\x89\x75\x81\x38\x02\x51\x5b\xd1\xd7\x3e\xd6\x18\xcd\x59\xcd\x4f\x83\x4e\xf7\x18\x4f\x19\xb8\x80\x1a\x9e\x90\xbe\xd6\xdd\x0c\x99\xf6\xa3\x57\x71\x66\xd4\xe6\x5f\x70\x90\xe9\x65\xab\xd2\x26\x82\x2b\xa5\x43\xc2\x88\x24\x5d\x2f\x6c\x18\xc7\xe0\x62\xa1\x3c\xdd\x71\xa6\xa8\xea\x4d\x03\xf1\xa1\x7a\xbd\x9c\x94\xcd\x55\xf7\xd9\x40\xd0\x54\xa2\x4c\x04\x45\xdb\xce\xa0\x6f\xe3\x2f\x78\xef\x47\x9c\x47\x8c\xd4\x9d\x5b\xad\x4d\x18\x7d\xcc\x26\x5f\xfe\x93\x13\x71\x98\xcc\xfc\x4b\x7f\x5e\xbe\xf8\xaa\x77\x7f\x81\xd6\x0d\xac\x35\xbf\x75\xc3\xba\xe8\xe1\x6f\x5c\x98\x99\xf2\x2d\x64\xcd\xd8\x17\x30\x1c\x1d\xdc\x4d\x9e\x04\xaa\xd6\xba\xe3\xda\xbc\x1d\x16\x08\xe6\xa4\x7f\xf2\x90\xa0\x15\xaa\x09\xb6\xf0\xde\x10\x29\xf0\x25\x21\x7f\xf2\xb7\x05\x99\xfa\xa9\x2c\x2e\xbd\x57\x70\xa2\xd9\xfb\xba\x3a\x19\xdc\x4c\x4e\x82\xc8\x5c\x24\x6d\x86\x2b\xe4\xe8\xaa\xe6\xf4\x98\x4e\x26\xe8\x96\x6c\x70\xce\x24\x14\x7b\x54\x97\xbe\x72\xb7\x54\xdc\x2d\x4f\x8f\xaf\x8d\x63\x7f\x25\x70\x24\x26\x5a\x57\x84\x93\x50\x11\x23\xa8\x77\x6a\x2d\xc5\x11\x29\x29\xdf\xf8\x11\x91\x7f\xff\xf4\xf1\x5f\xae\x33\x51\xa4\xce\x45\xa3\x76\x88\x25\x36\x55\xaf\xc4\xe9\xf5\x5a\x16\x42\x74\x83\xdc\x57\x86\xe9\xee\xd8\x3c\xa5\x02\xe1\x18\x6d\xb6\xea\x80\xce\xd8\x8f\x29\x70\x1b\x5f\x77\x48\x8d\x02\xdf\x90\x66\x31\x7f\x32\x49\x9f\x2b\x4f\x35\x8a\xa8\x00\x40\x16\xfc\x08\x19\xf2\x99\x3f\x74\x42\xa0\xf2\xc6\xd4\x4a\x11\x33\x1e\xe8\xa9\x15\xe8\x5a\xda\xa3\xbf\xa0\x51\xa3\xc5\x08\x2d\xe0\xb5\xd6\x7f\x64\x18\xfe\xc6\xad\x59\x9c\x23\x07\x32\x12\x14\xc5\x69\x4a\x92\xd0\x1d\xc1\xb0\xba\x5e\x66\x29\x4e\x50\xc0\x70\x96\xc1\x20\x2e\x98\xb3\x1e\xa1\x73\xc3\x5a\xa5\x14\x9c\x1c\x01\x84\x81\x70\xbd\xc4\xe5\x2c\xfb\x05\xef\x70\x81\xe4\x05\xe0\x3b\xa4\xbb\x8a\x47\x2b\x45\x9d\xf5\x7e\x39\x81\x4d\xc8\x00\x0c\x7f\x20\x6f\x34\xee\x01\x48\xb7\x93\x5b\xe0\x70\x1c\x8e\xe0\xf7\xd7\x29\x11\x19\x4f\x60\xda\x77\x40\x27\xb7\xe7\x11\xed\x10\xed\x0c\xed\x8b\xd1\x58\xd9\x5c\xb4\x2b\xa7\x2f\x57\xf9\x37\x4f\x01\x29\xe4\x83\xee\x34\x86\x78\x7d\xc4\xd4\xa1\xd2\xd1\x1d\xfb\xaa\xe6\x97\x04\xf6\x04\x4b\x02\x41\x54\x4a\xf7\xb8\x76\x83\x1b\xe4\x42\x10\x4d\x92\xaa\x9b\xd0\xdf\x92\x92\xaf\x21\x67\x6c\xe0\xa9\xa7\x43\x79\xfc\x1c\x5d\xda\x35\x09\xc9\xef\xac\x89\x67\xd3\xc4\x4c\xdf\x1a\xb1\x70\xe5\x79\x64\x34\x38\x96\xca\x2a\x65\xd5\x1a\x7a\xb5\x42\xd0\x17\xc8\x86\x26\x24\xec\x65\xed\xeb\x82\x91\xa7\x39\x57\xa1\x2e\xb4\x2a\x6b\xc0\x91\x74\x34\x55\x53\x5a\x1d\x53\xc7\x40\x8a\xde\xf3\x19\x49\x22\x19\x8f\x9b\x54\x83\xe9\x00\xb9\x1a\x01\xe0\xc7\xe9\x35\xfc\x2c\x91\x41\x09\x0b\xe7\xe7\x6d\xfd\x5b\xa5\x40\x73\xfd\x85\xfe\x7a\x42\x65\xa8\x3e\xcd\x20\x00\xa6\x06\x60\xfd\x57\x5b\xdb\xa8\xd0\x08\xd3\x0a\xe8\xf3\xc6\x95\x31\xcd\xc6\x3e\xc4\x17\x22\x05\x81\x03\x77\x42\x09\xf0\x21\xe5\x3d\x4d\x33\x32\xe4\xea\xcc\x10\x4c\x15\x1d\xb5\xe5\xef\x30\x73\xbb\xd5\x54\xed\x43\x64\x1c\xa7\x13\x12\x5f\xb5\x44\xd7\x5c\xd2\xde\x13\x0c\xb2\x52\x3b\x79\x02\x05\x46\xbd\x5f\x74\x48\x8a\x81\x63\xf4\xd3\xbf\x3f\x8f\xba\x5b\x59\x1e\x04\x24\x83\xb9\x7e\x30\x3a\x76\x8f\x82\x94\x56\xe9\x2e\xb5\x6f\x25\xa8\x6b\xa5\xa8\xac\x76\x9c\xde\xf6\xb3\xf1\xfe\x7c\x2a\x58\x2d\x07\xfb\x5f\xc9\x21\x85\xab\x7d\x56\x87\x0b\xb9\xa4\x0b\x79\xa2\xea\x78\x10\xab\x8e\x7b\x39\xef\xc2\xdd\x16\x43\x2b\x1e\x4e\xeb\x55\x4f\x69\xa0\x17\x38\x74\xa4\xcf\x8d\x2e\xa0\x8f\xb4\x2a\xf8\xe8\x62\xb8\x6a\x44\x02\x9a\x76\xa1\x8c\x0d\x61\xd5\x83\x0d\x57\xc6\x51\x03\x89\xa3\xaa\xd6\xfc\x4e\x58\xbb\xbd\x7b\xb8\xfb\x7c\xf7\x1d\x70\x33\xcd\x00\x4c\xc1\x2c\x60\x83\x53\xbb\x0e\xf7\x29\x5e\x82\xa8\xe6\xb7\x19\x26\x97\x93\xe2\x83\xda\xd9\x52\x7d\x0b\xd2\xc3\xa5\xd1\x88\xd5\xf7\x98\xe2\x9b\x94\xee\xc0\x67\x9d\xed\xf2\x33\x8c\x53\x0c\xa2\xe6\x8e\xfe\xa8\x15\x95\x1b\x96\xad\xdc\xbb\x44\xe5\xc3\x36\xf4\x66\xde\xbc\xf8\x36\xd5\xa7\xae\xab\x7d\xcd\x4b\x53\xc4\xb3\x75\xdd\xb7\xc1\x84\x99\x71\x7a\x40\x91\x96\xbf\x4e\xe8\x73\xe9\xcd\xba\x27\x3a\x7e\xa9\x2f\xd6\x2d\xb5\x2a\xe5\xe6\xeb\x9f\xca\x21\x03\x74\x9b\x5b\x28\xac\xac\xbc\xb6\x3b\x87\x8f\x34\x17\x68\x2b\x69\x49\x4c\x43\xb0\xad\x9a\x75\xcc\xd6\xd6\x62\x53\xdc\x90\x9d\xf5\xb4\x8c\xb0\x8d\xdd\x8f\x1f\x3f\x7d\xfe\x84\xde\x3f\x7c\xfc\xf0\x8f\xbb\x5b\x9b\x6e\xf6\xa3\x43\xcb\xb1\xe8\xf9\xd6\x62\x5f\x2f\xe6\x36\x4a\xe3\x4e\x3d\xe4\x8a\xa2\x79\x19\x57\x6d\x63\x50\x2d\x8a\xaa\x83\x52\xf0\x0e\x89\x39\x0b\x89\x58\x39\xfb\xfd\x5e\x5d\xcb\x86\xf8\x95\xf7\xc6\x46\x81\xea\x26\xa9\xe1\x53\x8d\xac\x37\x61\xb8\x9c\x14\x2f\x56\x1b\x86\x9c\xbd\xcc\x99\x9d\xde\xb6\xde\x24\xe5\x09\xde\x36\xc2\xff\x7f\x0a\xe8\xa1\xea\x8f\x4e\x80\xfe\x64\xf7\x87\xc2\xdf\x1a\x89\x2e\x61\x7f\xc1\xb0\xbd\xba\x2b\x22\xfd\xa5\x01\xee\x4a\x34\x03\xf8\x1e\x16\xea\x2b\x8b\xfa\x4a\xd0\x3a\xda\x7a\x6d\xcb\x3e\x19\xff\xc1\x92\x5c\xdf\x11\x7b\x25\xf9\xe7\x6a\xe7\x68\x49\x1e\x44\xce\xf1\xc2\xf9\x8d\x98\x79\x31\x5e\xfa\xc5\x52\x1b\x58\xd2\x7f\x0b\x58\x0a\xa0\xdc\x3c\x3c\x7c\xfc\xb9\x07\x94\xe1\xac\x6c\x7b\xa0\x5b\x1b\x5f\x56\x17\x5f\x5e\x13\xbf\xbd\x1e\x46\x9c\x87\x03\x05\xf1\xfb\x8b\xa1\x3d\x49\xfa\xc5\xae\x5f\x00\x87\xb2\xe6\x44\xda\x0c\x64\xc8\x59\x8f\x69\xfd\x58\x3e\xd4\x3f\xc5\x9c\x04\xf8\xd4\xff\xa1\xfc\x5f\x00\x00\x00\xff\xff\xd4\x08\xa4\x72\xb2\x1c\x00\x00")
func web_ui_index_html_bytes() ([]byte, error) {
return bindata_read(
_web_ui_index_html,
"web-ui/index.html",
)
}
func web_ui_index_html() (*asset, error) {
bytes, err := web_ui_index_html_bytes()
if err != nil {
return nil, err
}
info := bindata_file_info{name: "web-ui/index.html", size: 7346, mode: os.FileMode(420), modTime: time.Unix(1422234712, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _web_ui_logo_png = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x74\x56\x09\x50\x53\x69\x97\x4d\x02\xb2\xc9\xa6\x02\x46\xa2\x80\x2c\x01\x24\x81\x04\x12\x40\x20\x64\x21\x10\x09\x26\x12\x20\x80\xa0\xf8\x88\x02\x12\x40\xa5\x05\x01\x91\x36\x61\x15\xc5\x1e\x59\x14\x41\xf6\x45\x76\xd9\x51\x1b\x64\x92\x9f\x91\x1d\x04\x91\x45\xba\x21\xb8\x22\xb2\x0a\xc4\xc6\x8d\xcc\xf3\xaf\xea\x99\x9a\xae\x9a\xaa\x57\xf7\x3b\xf7\xbc\x7b\x6f\x9d\x7a\xe7\x55\xdd\x2f\xd5\x95\x49\x53\x52\xd0\x54\x80\x40\x20\x4a\xce\x47\xa8\x6e\x10\x08\x14\x03\xe2\x07\x72\x52\x60\x4c\xb6\x2f\x76\x02\x0f\xe9\x20\x32\x83\x0c\x81\x34\xfe\xc7\xce\xef\xfe\x3b\xc0\x1c\x7a\xd1\x8d\x46\x81\x3c\x18\xde\xbf\x00\x81\xc0\x34\x5c\x8f\x7a\x38\x82\xa4\xbe\x5d\x50\x69\x3c\xcd\xd9\x3f\xe5\xb0\x2d\x11\xc9\xae\x06\x5c\x8f\x48\x78\xb0\x92\x44\x3a\x44\x22\x61\xf0\x24\x0e\xec\x98\x92\x44\x97\x92\x24\x7a\x69\x12\x3d\x39\xcc\x2e\xe0\x74\x44\xc6\x05\xac\x51\xd8\x27\x37\x37\x88\x3a\x4f\x22\x91\x78\xe9\xb9\x16\x15\x45\x5b\x14\xf2\x69\x60\x81\x89\xf9\x11\xb0\x92\x72\xfa\x21\xd8\x5e\x9a\xe8\x62\x60\xce\x00\x53\x3d\x2c\xdd\x04\xcf\x44\xdb\xfa\xe8\x59\x7a\x16\x27\x38\xe7\xf3\x9d\x4a\xf8\x4e\xa5\x49\x2e\xc1\x3e\x3e\x26\x96\xc7\x90\xc4\x8b\x18\x3c\x11\x89\xa5\x1f\xc2\xda\x3b\xd1\x3d\x51\x36\xc7\xf5\x71\x6e\x60\xd9\x21\x2c\x41\xd7\x9c\x59\x9a\x48\x37\xb3\x62\xfc\x8c\x44\x2e\x85\xea\x86\xc6\x39\x1a\x72\xde\x85\x85\xdd\x05\x99\xdc\x58\x07\x3d\xec\x4f\x61\x24\xd7\x28\x24\x08\x12\xc1\x09\x44\x12\xd1\xd1\xda\xf5\xa6\x31\xd6\xc9\xd4\xbf\xe5\x10\x96\x06\x92\x06\x78\xb6\x1f\x9b\x0a\x0e\x34\x20\x84\xe0\x6c\x68\x25\xf1\xb4\xd2\x9f\xda\x7e\x3e\x96\x04\x96\xbe\xed\x69\x26\x9d\x6e\x67\x47\xc2\x51\xb9\x61\xfe\x24\x9c\x2d\x93\x42\x3d\x8a\x26\xf8\xe3\xed\xdc\xc0\x5e\x70\x38\xd6\xa7\xe3\x10\x35\x06\x49\xbd\xec\xed\x4a\x47\x99\x13\x6f\xf1\xe6\x40\xe5\x20\x9f\xfb\x2b\x05\x8c\x68\x2b\x96\x0d\xd1\x93\x40\x20\x61\xad\x8f\xa2\xad\xd9\xa6\x78\x27\xa4\x7d\xb8\xbf\xbf\x3f\xc6\xca\x11\x6f\x4d\xc2\x53\x43\xbd\x58\x0e\xe6\x56\x14\x23\xfa\x2d\x13\x7a\xb2\x9e\xf5\x49\x23\x2c\xdd\xd4\xee\x54\x41\x02\x4d\xcf\xca\xc7\xc8\x3e\x14\xc5\x4a\x37\xc5\xd9\x83\xda\x4a\x12\x9d\x8b\xe2\x1d\x4b\x93\x9c\x29\xec\x44\x2a\xdd\xd7\xc7\x87\x67\x48\x4f\xf9\x29\x32\x89\xee\xc1\x62\x18\x5b\x79\xda\xd3\xcf\xdb\xd8\x51\x2c\xed\x7d\x8c\xb1\x74\x50\x98\x31\x8e\xa9\x8b\x75\xd9\xcf\xae\x46\x5a\x9f\x30\xc6\xb1\xc0\x4a\x63\x2c\xf8\xc5\x1c\xfe\x6d\x93\x0b\xd6\x92\x78\x98\xfd\x5b\x41\x12\xcd\xcc\xda\x15\x8d\x73\x01\x8d\xc0\x5a\x12\xec\xed\xa9\x0e\xac\x10\x4b\x1b\x7b\x0c\x9e\x8a\xa6\x46\x9a\xe1\x49\x46\x18\xd0\x32\x17\x23\x8c\x83\x01\x86\x86\xc4\xd0\x8c\x30\x8e\x46\x18\xa2\xde\x4f\x40\x41\xc4\x77\xed\x07\xff\x8c\xaa\x08\x37\xa6\x3b\x84\x6b\xa6\x1e\x89\xd0\x81\x0d\x43\x61\x88\x47\x9d\xdb\x3b\x77\xca\xca\x42\xa5\xa1\x3a\xd2\x46\x6f\x47\xb6\x14\x2f\xfe\x18\x19\x5b\x6d\x8e\xbc\xef\xbd\x1f\xb5\xb4\xeb\x3e\xa3\x79\x75\x15\xc7\x13\x92\x44\x23\x6b\x39\xcf\x18\x76\x42\x25\xd9\x34\x15\x91\x50\x47\x14\x24\x62\xe8\xac\xaa\x8b\x2a\x9b\x11\x76\x00\x4f\xf7\xce\x64\x0b\x10\x89\xe6\x52\xd5\x23\xa9\x00\x37\xbe\x7b\x97\x1d\x55\x67\x44\xba\x9e\xa3\x26\xce\x61\x00\x69\x69\xcd\x9e\xea\x39\x69\x76\xc8\x1c\x34\x3a\x4d\xc4\x45\xe6\x78\x22\x85\x4e\xc7\x34\xd2\x11\xe8\x5d\x38\xf7\x38\x90\xe5\x7a\x8a\xc2\x84\x22\x44\x9a\xb0\x68\x75\x55\x34\x73\x1f\x61\x9e\x26\x1c\xba\xef\x89\xe4\x35\xdb\x37\xa7\x1e\x98\xca\x82\x40\xe4\x3c\x9d\xa9\x64\x8f\xe8\xe9\xe5\xbc\xbf\x4e\xed\x71\x86\x77\xcf\x4b\xb3\xae\xeb\xab\x1e\x54\xbd\x2e\xe7\x46\x90\x8b\xe7\xe9\x68\x5c\x87\x5d\x57\x98\x42\x54\x1e\x69\x14\xbd\x8c\x35\x0b\xaa\x8f\x2a\xf0\xab\xd7\x8e\x32\x60\x6d\x77\xe9\x69\xe2\xfa\x98\x31\x41\x51\x96\x7d\x71\x57\x0a\xb5\x73\x02\xd6\x57\xac\x9a\x33\xa3\x66\x63\x02\xe5\xc9\xc5\xae\x46\x6a\x0a\x49\x94\xff\xe7\x90\x98\xbc\x7b\x58\xae\x39\x9e\x7c\xe2\xee\x74\x2d\xeb\x6d\x61\x12\xe0\xfd\xf5\xba\xcc\x12\x1a\xe6\x00\xc8\x29\xf2\x0f\x62\xa4\x93\x29\x7f\x03\x81\x2a\xfc\x6f\x56\xed\x7f\x5f\xff\x0f\x5b\xac\x0a\x3f\x65\x0c\x7d\x29\x8f\x0a\xa9\x96\xa0\x32\x85\x37\xdf\x1a\xb6\xb4\xb6\x96\x23\xad\xdd\x5f\x43\xd9\xdb\x6d\xa5\x5a\xa7\x54\x9d\x8e\x8d\x1f\xac\xb8\x0c\x7c\x71\xa9\xae\x4e\xf0\x34\x7e\x96\x9c\x72\xae\xef\x83\xb2\xbd\xfc\x8f\xcd\x82\xee\x1e\xf9\xe3\x77\x56\xac\x4e\x3b\x05\xd3\x84\x73\x00\xb9\x67\x66\x5d\xf1\x8b\x64\xfb\x5d\xe5\xb3\x39\xc9\xf4\xab\x2c\xa9\x3b\xa4\xd1\xfc\x63\x75\x39\x7b\x75\x89\xc2\x31\xc5\x9b\xe7\xc4\x52\xda\x68\xd8\x50\x73\x5f\xb0\xf2\x9d\xf6\x95\xf7\xa4\xe2\x6d\xe7\x24\xa9\x1f\x93\xd9\x03\xdf\x25\x19\x5c\xae\x9d\xcf\xc0\xc3\xdd\x02\xb7\xb3\x56\x6c\x0b\x02\xa9\xba\xb2\xa0\x63\x86\x47\xce\xe8\xb8\xc1\x1c\x58\x6b\x4d\xae\xbe\xfa\x1b\x2b\x60\xec\xe6\x9b\x04\xf5\xdf\xc9\x31\x66\x93\xfc\xf0\x70\x98\xcd\x7b\x19\x29\x97\x82\xa2\x13\x2d\x92\xd3\x63\x52\xef\x7f\x9c\xdb\xe5\x18\x95\x93\x62\xb2\x14\xa2\xc4\xce\x4c\xbf\x56\xb0\xd1\xd8\xd7\xb8\xc4\x63\x4e\x6a\x4f\xea\x3c\xfa\xec\x71\xb1\xf4\x53\x2c\x1a\x5a\xa3\xd2\x32\xf8\x76\x66\x43\x66\xbb\xcb\xba\x18\x1a\x31\x88\xd1\x1e\x0e\x84\xb5\xdf\xab\x69\xbe\xed\x69\xfa\xb6\xd5\x15\x3e\x24\x53\x23\xf8\xbc\xfe\xed\x6a\x57\xea\x4a\xac\x52\x25\x9b\x04\xfc\x96\x6d\xe3\x15\xb3\xc3\xd4\xde\xec\x08\xd5\xab\xef\xb2\x89\xe0\x73\xea\xd7\xa0\x3d\xf7\x2a\xf8\xe3\x19\x3b\xa0\x13\x56\x45\x37\x5a\x7e\xc9\xeb\x09\xd9\x65\x74\xf7\x6a\x08\x1a\xd2\xae\xbb\x22\x69\x89\xf4\x73\x7f\xe5\x71\x9d\x7f\x7b\xfe\x23\xe7\x47\xd6\xe9\xdb\x7b\x4d\x28\x23\x65\xc4\xd7\x52\x11\xe2\x6b\x9a\x33\xb0\x3e\x5e\xdb\x35\xde\x3b\x8f\x0f\xaa\xec\xef\xfd\xaf\x5b\x3d\x9b\x0f\xdc\x9d\x97\x75\x3d\xf5\xe4\x7e\xa0\xd7\xb0\x6a\x29\xb4\x26\xb6\xae\xcb\x43\x08\x3f\x9d\x8d\xfb\xc6\x87\x8e\x07\xa7\x9d\xab\x3a\xb3\xf7\xd7\x14\xa3\xba\xde\xb1\xe2\xfe\x27\xe4\x37\xe2\x9b\x1a\x44\x41\x8b\x7b\xf2\xda\xb4\x41\x0c\x5b\xc1\x30\x4e\x3e\xac\x6c\xcd\xe7\xe3\x0d\x43\xc0\x4b\xaf\xeb\x1b\x33\x63\xf2\x52\xc9\xee\xbb\xb3\xfe\xd2\x6d\xde\x20\xf5\x4a\x25\xeb\x4a\xf4\x13\x2a\xba\x41\x2a\x2e\xbd\x63\xf8\x6c\xf8\x8e\xa3\xb6\xfb\x67\x8f\xdf\xff\x73\x4b\x1b\x79\x9d\xbf\xe0\x90\x7e\x23\xe5\x4b\xb8\x4c\xad\xcc\xe6\x9e\x05\xe2\xf3\xbc\xdc\x0b\x8b\x67\x96\xbf\xac\x11\x45\x86\xfd\xfc\x85\x1d\xd5\xb2\x77\x39\xc0\xae\x67\xfa\xf8\x20\x71\xd9\xaf\x5a\xfc\x62\x03\xc5\x7e\x98\x96\x72\xe8\xbe\xc5\x6c\xf3\x2b\xd7\xea\xe6\x76\x88\xc6\xbc\x9b\xda\xdb\xa6\x2a\x34\xbc\xbd\x3e\x09\x39\xb3\x36\x57\x2b\x2e\x28\xc4\x76\x19\x35\x45\xa7\xaa\x03\x0f\xf0\x69\xc9\xcf\x47\xb6\xfd\x1a\xa4\xfe\x8a\xae\x20\xbf\xcd\xde\xf2\x80\x6e\x9c\xe7\x2a\x79\xee\xca\xc9\xce\x53\x15\xe3\xf7\x1d\xb7\x75\xf1\x23\x1d\x44\x2b\xa5\x9d\x19\x2c\xb6\xc2\xf1\x3d\x0f\x10\x5e\xb5\x96\x8b\xb9\xbc\x24\x94\xc6\x7c\x13\xf2\xd9\x65\x16\xb6\xa9\xfb\x5a\x80\x59\x39\xf3\xa0\x52\x1a\xca\xac\xe4\xe1\x8b\x24\xea\x90\xa6\x4d\x6a\x72\x68\x18\x05\xda\x40\xbb\x35\xf0\x2f\x19\xd5\xe5\x92\xa8\x16\x4e\xc1\xaa\x19\x67\x1f\xdc\x78\x40\x3d\xa0\xfe\x1b\x8f\x5d\x4e\xfa\xb0\x7c\x87\x9f\x2f\xf7\x9f\xe7\x90\xc0\x44\x0a\xec\x34\x5d\x01\x6e\x7c\xbe\xa8\xb5\x2c\x3b\xb5\x5a\x6d\x73\x94\x20\xd2\x6d\xd0\x04\xd4\x5f\x67\x55\xd6\x8f\xb5\x41\xf5\x22\x63\xfe\x8c\x28\x0c\x0f\x91\x60\x2e\x1d\x32\xac\x85\x5a\xa0\xf6\x34\x2f\x4c\x1a\xa4\x5a\x7a\xb4\xdc\xa1\xb7\xf3\xd2\x9f\x47\xcc\x5a\x3c\x4e\xd1\xc4\x5c\xec\x2d\x6c\x94\x1e\xb4\xf6\xb2\x30\x3d\x0a\x53\x5c\x34\xfd\xd0\x99\x8b\xc2\xb8\x91\x7c\xb5\x1f\x3f\x0e\xc6\xc5\x66\x5f\x68\x54\x07\x52\x8a\x23\x07\xf4\xbd\x83\xc7\x44\x1f\xc2\x5a\xa1\xf0\x62\x83\x06\x8b\xf8\xb0\xf9\x32\x19\x78\x48\x6e\x32\x74\x23\x08\x52\xa7\xf9\x4a\xb0\xd5\x5a\xf1\xa0\x3b\x9f\x39\x2e\x38\x2b\x1f\x2a\x6b\x36\x24\xea\xff\xb2\xa5\xfe\x9e\xcf\xa2\x27\xa4\x39\xa3\x9c\x1f\x5c\xf9\x40\xcc\xa8\x56\x83\xa3\xf9\xcb\xf3\x43\x95\xca\xc3\x3d\xab\x16\x2a\xb5\x5a\x76\x9c\x2e\x5e\xfa\xfc\x2d\xf1\xbc\x72\xc5\x7e\xcc\x76\x25\x0e\xd9\x10\x9c\x67\xfb\x26\xf0\xf0\x0b\xce\x4e\xc5\xa9\x67\x48\x7e\x40\xd7\xc4\x52\xcf\xa1\x71\xa8\x05\xb2\x41\x2a\xcf\xb6\xbd\x7f\x99\xdb\x19\x0c\xf8\x32\x60\x52\xab\xfb\x0e\x3c\x73\x93\x19\xbc\x25\xd0\x9a\xb3\xcb\xf0\x7d\x4c\xa8\xc3\x2b\xa1\x46\x51\x0d\x6a\x67\x5b\x7b\xaf\x9e\xda\x87\x71\x80\x2d\x72\x7a\xee\xf5\x2e\x9f\x8d\xdb\xe4\x93\xb5\xe9\xbf\x13\xba\xf4\x1b\x7a\xa5\x27\xfc\x35\xa6\xca\xe1\x90\x3d\xb1\x8a\xd6\x81\x52\xcd\x02\xdd\xdd\x53\x88\xa5\x7a\x53\xd6\xf4\x5b\xae\x2d\xe6\x17\x8d\xa3\x4b\x89\x0c\x41\xf7\xcb\xa7\x07\xb6\xf7\x5f\x32\x45\x0a\x8e\x20\xa3\x2f\x36\xbd\x1c\xa6\x65\x5c\x0e\x3a\x75\xf1\x5b\x8c\x16\x02\x70\xaf\xb1\x9e\x5b\x49\x17\x85\xf5\x94\x15\xae\x70\x44\xc7\x95\x26\xf1\x0b\x37\xd4\x31\x7c\xff\xcc\x2f\x49\x35\xce\x26\x9a\xd6\xc1\x49\x85\xf3\xfa\xc3\x13\x1c\x19\xd4\x1c\xa5\x36\x43\xd4\xcf\xce\x7c\xa4\xf1\x89\x6b\x58\xa3\x7f\x55\xbf\x54\x36\xb4\x7a\x71\xbc\x75\x5c\x17\xb8\x3a\xdd\x80\x9b\xee\x75\x29\xb1\x7d\x49\x18\x7d\x08\x29\x91\x5b\x72\x50\xad\x71\x19\xde\xe0\x31\x14\x18\xc2\xdf\xfd\xb6\x8e\x2f\x68\xab\xb5\x6d\xf9\x05\x3f\xda\x46\x46\x99\x55\x66\xef\x5b\x0c\x44\x2b\xf3\xe2\x78\x97\xd6\xf7\xdd\x9b\xba\x24\x7e\x97\x8f\x3d\xa7\xfc\xe4\xd4\x39\xde\x53\x98\x37\x00\x9b\x9d\x50\x0e\x0f\xaa\x34\xd6\x79\xbf\x26\x1f\x9a\x6e\x71\xa8\x5b\x66\x2a\xeb\x77\xc3\xff\xf2\x4d\xa4\xd3\x5f\x28\x99\x76\xb2\xe6\xea\xa4\x3a\x7e\x4b\x33\xc6\x64\x7c\xf7\x3b\x8c\xf9\x88\xec\xad\x04\xdc\x9e\x23\x83\xab\x9e\x06\xa0\x93\x05\xc3\x5a\x15\xbb\x63\x8b\x35\xe1\x71\xf7\xc2\x96\x36\x8a\x02\xb1\x17\x20\x8b\xab\x2c\x98\x65\x66\xc0\xeb\xab\xf5\x1a\xf0\x38\xbd\x87\x0d\x8a\x73\xca\x37\x2e\x5c\x1a\x3c\x59\xf6\x54\xd5\x3b\x0a\x78\xb0\x9c\x17\x60\x8b\x49\x66\x03\x6a\x67\x16\x56\x1e\x1f\x68\xfa\x8c\x6e\x5c\x99\x6d\x84\xa0\x3e\xfc\x2b\xce\x36\xf4\x7b\xd5\x66\x95\xb4\x0c\xa6\x74\xad\xce\xf9\xe6\x50\x94\x8f\xef\xc6\x1f\x97\x86\xdc\x5f\xa9\x58\xa8\xa0\x24\x7b\x6e\xbf\x69\xd6\xd9\xa8\x3e\x0e\x64\x25\xe2\x43\x4f\x6e\xb2\x5a\x47\x7f\xd1\xc9\x95\xb1\xb4\x6a\x69\x3f\x50\xc7\x49\x69\xf5\x6a\x2c\x3e\x37\x78\x7d\xc1\xf2\xab\x40\xd7\xe5\x2b\x7a\x36\x1d\x18\x50\xff\xfa\x2a\x63\xed\x23\x3f\x72\x20\xd0\x31\xf9\x91\x3e\x9c\x26\x38\x5b\xe5\xe9\xf5\xe9\xbc\x01\xad\x50\x78\xe2\xe9\x04\x43\xf8\x17\xb0\x98\x1f\x0d\x45\x9e\x5f\x67\x7a\xec\x0c\x6d\xf3\x15\xf7\xed\xf3\xe5\xd7\xdd\x52\x09\x6a\x77\x03\x62\xde\x91\xba\xa8\x57\x20\xf7\x0c\xb5\x19\x4f\x7c\x0a\x7f\x85\x46\x48\x88\xa6\xbc\x9c\xc3\x77\x2a\x3f\xd7\x8e\xaa\x8a\x75\x2e\x3e\x54\x6c\xd4\x06\x7d\xe0\xcb\xfb\xa5\xd2\x8f\xc5\x7b\x6c\x3a\x67\x7d\xac\x5a\x6f\xa1\x85\x27\xa2\xb3\xe6\xc7\xe5\xa7\xb3\x51\x89\x5a\xd9\x67\xb4\x38\x9d\xb0\xb8\xaf\x4e\x1a\x8e\x1b\xe9\x83\x77\xf2\x51\x48\x72\xbd\xff\x88\x0b\x02\xe8\x30\xfd\xa5\x2d\x01\x28\x16\x3f\xbf\xef\x8f\x30\xfc\x31\xc8\x35\xf6\xdb\xa6\xdf\x65\x03\xdd\xf8\x5e\x78\xec\x4c\x4f\xcd\x53\xf4\x8e\xe8\x33\xdf\xbb\x3c\xee\xd5\xd4\xc5\x4c\x05\x86\x74\xc0\x05\xbd\x91\x9f\xb0\xef\x4b\xcc\xc9\x62\xb7\xad\xcc\xcd\x7e\x72\x89\x4a\x5a\x44\xc2\x49\xd8\xb7\x19\x69\xc5\xb4\xda\x3d\x1d\xde\x3a\xab\x05\x5b\x8c\x63\xb1\x71\x10\x33\xd6\x0b\xbe\xfc\x9b\x5c\x2d\xbf\xa1\x0b\xb2\x1c\x81\x1a\xc1\xbe\x3f\x6e\xa0\xc7\xd1\x35\x35\xcf\xfd\x33\x37\xdc\xdc\xdd\x79\xe4\x8f\xfc\x4a\x41\x13\x59\x20\x77\xd8\x84\x09\x1c\xaf\x4f\xe1\x3e\xcf\x31\x5d\x5f\x74\x1c\x0c\xe5\x0c\xee\x98\x61\x03\x1d\x2a\x8b\xd7\x32\x33\x11\x4f\x12\xb2\xc8\x55\x88\x8f\x9b\x59\x31\x77\x2f\xbd\xdb\xad\xd5\xec\x95\xd2\x54\x76\x54\x48\xfe\xe3\x49\x4d\x96\x0f\x14\x11\x7d\x48\xac\xd0\x48\xd8\x3b\x4c\x9b\xd8\x75\xde\x37\x56\x2a\x4f\xb7\xdc\xae\x36\x8e\x52\x2a\xb6\xfd\xcb\x55\x4e\x65\x2a\xcb\x54\x59\x39\x49\x02\x68\xa0\x7d\xe7\x33\x54\x96\x27\xda\x32\x12\x9e\xba\x57\x57\xc7\x7d\x8f\x32\x49\xd5\x2b\xd7\xcf\x43\x55\xad\x4b\xef\x45\x9c\x2c\xa8\x9e\xf1\x1b\x95\xcf\x45\xda\x37\xf0\x32\x5f\x4f\x8f\x6d\x8f\xb6\x14\xdf\x46\x4c\xfe\xb9\x54\xd9\x4e\xee\x8c\x18\xd2\x80\x39\xfc\x63\xe7\xfe\x3b\x51\xf8\xe7\x26\x06\x13\xd7\xbf\x41\xe7\x09\x71\x05\xeb\x45\xca\x89\xff\xbb\xe1\x3b\x31\x3f\x64\xe5\xcc\xa2\xa0\x21\xd7\xac\xc2\xc1\x6b\x11\xc4\xd9\x91\x49\x7d\x40\x01\xe2\xff\x3b\x00\x00\xff\xff\x08\xfc\x80\x11\x83\x0b\x00\x00")
func web_ui_logo_png_bytes() ([]byte, error) {
return bindata_read(
_web_ui_logo_png,
"web-ui/logo.png",
)
}
func web_ui_logo_png() (*asset, error) {
bytes, err := web_ui_logo_png_bytes()
if err != nil {
return nil, err
}
info := bindata_file_info{name: "web-ui/logo.png", size: 2947, mode: os.FileMode(420), modTime: time.Unix(1422234127, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
// Asset loads and returns the asset for the given name.
// It returns an error if the asset could not be found or
// could not be loaded.
func Asset(name string) ([]byte, error) {
cannonicalName := strings.Replace(name, "\\", "/", -1)
if f, ok := _bindata[cannonicalName]; ok {
a, err := f()
if err != nil {
return nil, fmt.Errorf("Asset %s can't read by error: %v", name, err)
}
return a.bytes, nil
}
return nil, fmt.Errorf("Asset %s not found", name)
}
// AssetInfo loads and returns the asset info for the given name.
// It returns an error if the asset could not be found or
// could not be loaded.
func AssetInfo(name string) (os.FileInfo, error) {
cannonicalName := strings.Replace(name, "\\", "/", -1)
if f, ok := _bindata[cannonicalName]; ok {
a, err := f()
if err != nil {
return nil, fmt.Errorf("AssetInfo %s can't read by error: %v", name, err)
}
return a.info, nil
}
return nil, fmt.Errorf("AssetInfo %s not found", name)
}
// AssetNames returns the names of the assets.
func AssetNames() []string {
names := make([]string, 0, len(_bindata))
for name := range _bindata {
names = append(names, name)
}
return names
}
// _bindata is a table, holding each asset generator, mapped to its name.
var _bindata = map[string]func() (*asset, error){
"web-ui/index.html": web_ui_index_html,
"web-ui/logo.png": web_ui_logo_png,
}
// AssetDir returns the file names below a certain
// directory embedded in the file by go-bindata.
// For example if you run go-bindata on data/... and data contains the
// following hierarchy:
// data/
// foo.txt
// img/
// a.png
// b.png
// then AssetDir("data") would return []string{"foo.txt", "img"}
// AssetDir("data/img") would return []string{"a.png", "b.png"}
// AssetDir("foo.txt") and AssetDir("notexist") would return an error
// AssetDir("") will return []string{"data"}.
func AssetDir(name string) ([]string, error) {
node := _bintree
if len(name) != 0 {
cannonicalName := strings.Replace(name, "\\", "/", -1)
pathList := strings.Split(cannonicalName, "/")
for _, p := range pathList {
node = node.Children[p]
if node == nil {
return nil, fmt.Errorf("Asset %s not found", name)
}
}
}
if node.Func != nil {
return nil, fmt.Errorf("Asset %s not found", name)
}
rv := make([]string, 0, len(node.Children))
for name := range node.Children {
rv = append(rv, name)
}
return rv, nil
}
type _bintree_t struct {
Func func() (*asset, error)
Children map[string]*_bintree_t
}
var _bintree = &_bintree_t{nil, map[string]*_bintree_t{
"web-ui": &_bintree_t{nil, map[string]*_bintree_t{
"index.html": &_bintree_t{web_ui_index_html, map[string]*_bintree_t{}},
"logo.png": &_bintree_t{web_ui_logo_png, map[string]*_bintree_t{}},
}},
}}
// Restore an asset under the given directory
func RestoreAsset(dir, name string) error {
data, err := Asset(name)
if err != nil {
return err
}
info, err := AssetInfo(name)
if err != nil {
return err
}
err = os.MkdirAll(_filePath(dir, path.Dir(name)), os.FileMode(0755))
if err != nil {
return err
}
err = ioutil.WriteFile(_filePath(dir, name), data, info.Mode())
if err != nil {
return err
}
err = os.Chtimes(_filePath(dir, name), info.ModTime(), info.ModTime())
if err != nil {
return err
}
return nil
}
// Restore assets under the given directory recursively
func RestoreAssets(dir, name string) error {
children, err := AssetDir(name)
if err != nil { // File
return RestoreAsset(dir, name)
} else { // Dir
for _, child := range children {
err = RestoreAssets(dir, path.Join(name, child))
if err != nil {
return err
}
}
}
return nil
}
func _filePath(dir, name string) string {
cannonicalName := strings.Replace(name, "\\", "/", -1)
return filepath.Join(append([]string{dir}, strings.Split(cannonicalName, "/")...)...)
}