diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..97aa4d60 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +ui/bindata.go linguist-generated=true diff --git a/config-example.json b/config-example.json index 3c756bab..ef4d3f31 100644 --- a/config-example.json +++ b/config-example.json @@ -15,7 +15,8 @@ "AnotherGitRepo" : { "url" : "https://www.github.com/YourOrganization/RepoOne.git", "ms-between-poll": 10000, - "exclude-dot-files": true + "exclude-dot-files": true, + "auto-generated-files": ["example/path"] }, "GitRepoWithDetectRefDisabled" : { "url" : "https://www.github.com/YourOrganization/RepoOne.git", diff --git a/config/config.go b/config/config.go index ee9abab3..8292bd40 100644 --- a/config/config.go +++ b/config/config.go @@ -25,14 +25,15 @@ type UrlPattern struct { } type Repo struct { - Url string `json:"url"` - MsBetweenPolls int `json:"ms-between-poll"` - Vcs string `json:"vcs"` - VcsConfigMessage *SecretMessage `json:"vcs-config"` - UrlPattern *UrlPattern `json:"url-pattern"` - ExcludeDotFiles bool `json:"exclude-dot-files"` - EnablePollUpdates *bool `json:"enable-poll-updates"` - EnablePushUpdates *bool `json:"enable-push-updates"` + Url string `json:"url"` + MsBetweenPolls int `json:"ms-between-poll"` + Vcs string `json:"vcs"` + VcsConfigMessage *SecretMessage `json:"vcs-config"` + UrlPattern *UrlPattern `json:"url-pattern"` + ExcludeDotFiles bool `json:"exclude-dot-files"` + EnablePollUpdates *bool `json:"enable-poll-updates"` + EnablePushUpdates *bool `json:"enable-push-updates"` + AutoGeneratedFiles []string `json:"auto-generated-files"` } // Used for interpreting the config value for fields that use *bool. If a value diff --git a/config/config_test.go b/config/config_test.go index fd680d6f..5b3328af 100644 --- a/config/config_test.go +++ b/config/config_test.go @@ -45,6 +45,10 @@ func TestExampleConfigsAreValid(t *testing.T) { t.Error("global detectRef vcs config setting not set for repo") } + if len(cfg.Repos["AnotherGitRepo"].AutoGeneratedFiles) != 1 { + t.Fatal("expected to see one value for AutoGeneratedFiles") + } + repo = cfg.Repos["GitRepoWithDetectRefDisabled"] vcsConfigBytes = repo.VcsConfig() json.Unmarshal(vcsConfigBytes, &vcsConfigVals) //nolint diff --git a/docs/config-options.md b/docs/config-options.md index b2ff18b3..82444132 100644 --- a/docs/config-options.md +++ b/docs/config-options.md @@ -2,6 +2,7 @@ * [Git options](#git-options) * [SVN options](#svn-options) * [URL options](#url-options) + * [Misc options](#misc-options) @@ -46,3 +47,11 @@ URLOptions | Description | Default Values :------ | :--- | :----- url-pattern | when provided used by Hound for config|`{url}/blob/{rev}/{path}{anchor}` anchor | when provided used for vcs config| `#L{line}` + +## Misc Options +These options are available for repos + +Options | Description | Default Values +:------ | :--- | :----- +exclude-dot-files | excludes filenames that start with dot|`true` +auto-generated-files | marks filenames as autogenerated in UI| `[]` (for git, Hound checks for git attributes with the `linguist-generated` attribute) diff --git a/index/index.go b/index/index.go index cb442ee8..b7fb4526 100644 --- a/index/index.go +++ b/index/index.go @@ -36,8 +36,9 @@ type Index struct { } type IndexOptions struct { - ExcludeDotFiles bool - SpecialFiles []string + ExcludeDotFiles bool + SpecialFiles []string + AutoGeneratedFiles []string } type SearchOptions struct { @@ -66,8 +67,9 @@ type SearchResponse struct { } type FileMatch struct { - Filename string - Matches []*Match + Filename string + Matches []*Match + AutoGenerated bool } type ExcludedFile struct { @@ -76,10 +78,11 @@ type ExcludedFile struct { } type IndexRef struct { - Url string - Rev string - Time time.Time - dir string + Url string + Rev string + Time time.Time + dir string + AutoGeneratedFiles []string } func (r *IndexRef) Dir() string { @@ -231,9 +234,11 @@ func (n *Index) Search(pat string, opt *SearchOptions) (*SearchResponse, error) filesFound++ if len(matches) > 0 { filesCollected++ + results = append(results, &FileMatch{ - Filename: name, - Matches: matches, + Filename: name, + Matches: matches, + AutoGenerated: containsString(n.Ref.AutoGeneratedFiles, name), }) } } @@ -485,10 +490,11 @@ func Build(opt *IndexOptions, dst, src, url, rev string) (*IndexRef, error) { } r := &IndexRef{ - Url: url, - Rev: rev, - Time: time.Now(), - dir: dst, + Url: url, + Rev: rev, + Time: time.Now(), + dir: dst, + AutoGeneratedFiles: opt.AutoGeneratedFiles, } if err := r.writeManifest(); err != nil { diff --git a/searcher/searcher.go b/searcher/searcher.go index e2f9b350..791ce810 100644 --- a/searcher/searcher.go +++ b/searcher/searcher.go @@ -407,16 +407,25 @@ func newSearcher( return nil, err } - opt := &index.IndexOptions{ - ExcludeDotFiles: repo.ExcludeDotFiles, - SpecialFiles: wd.SpecialFiles(), - } rev, err := wd.PullOrClone(vcsDir, repo.Url) if err != nil { return nil, err } + var autoFiles []string + if len(repo.AutoGeneratedFiles) > 0 { + autoFiles = repo.AutoGeneratedFiles + } else { + autoFiles = wd.AutoGeneratedFiles(vcsDir) + } + + opt := &index.IndexOptions{ + ExcludeDotFiles: repo.ExcludeDotFiles, + SpecialFiles: wd.SpecialFiles(), + AutoGeneratedFiles: autoFiles, + } + var idxDir string ref := refs.find(repo.Url, rev) if ref == nil { diff --git a/ui/assets/css/hound.css b/ui/assets/css/hound.css index cb6e36fc..caa54524 100644 --- a/ui/assets/css/hound.css +++ b/ui/assets/css/hound.css @@ -384,3 +384,18 @@ button:focus { margin-bottom: 40px; } +.file-badge { + background-color: gray; + border-radius: 0.25rem; + color: #fff; + display: inline-block; + float: right; + font-size: 75%; + font-weight: 700; + margin-top: 5px; + line-height: 1; + padding: 0.25em 0.4em; + text-align: center; + vertical-align: baseline; + white-space: nowrap; +} diff --git a/ui/assets/js/hound.js b/ui/assets/js/hound.js index d13ee56e..3fb08951 100644 --- a/ui/assets/js/hound.js +++ b/ui/assets/js/hound.js @@ -693,7 +693,7 @@ var ContentFor = function(line, regexp) { var FileContentView = React.createClass({ getInitialState: function() { - return { open: true }; + return { open: !this.props.isAutoGenerated }; }, toggleContent: function() { this.state.open ? this.closeContent(): this.openContent(); @@ -728,6 +728,11 @@ var FileContentView = React.createClass({ ); }); + var autoGeneratedBadge = null; + if (this.props.isAutoGenerated) { + autoGeneratedBadge = AUTOGENERATED; + } + return (
@@ -736,6 +741,7 @@ var FileContentView = React.createClass({ rel="noopener noreferrer"> {fileName} + {autoGeneratedBadge}
{matches} @@ -763,7 +769,8 @@ var FilesView = React.createClass({ rev={rev} fileName={match.Filename} blocks={CoalesceMatches(match.Matches)} - regexp={regexp}/> + regexp={regexp} + isAutoGenerated={match.AutoGenerated}/> }); @@ -886,7 +893,8 @@ var ResultView = React.createClass({ rev={result.Rev} repo={result.Repo} regexp={regexp} - files={result.FilesWithMatch}/> + files={result.FilesWithMatch} + /> ); }); var actions = ''; diff --git a/ui/bindata.go b/ui/bindata.go index 2a128013..8f438a35 100644 --- a/ui/bindata.go +++ b/ui/bindata.go @@ -99,7 +99,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _cssHoundCss = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x58\x6b\x6f\xda\xbe\x1a\x7f\xcf\xa7\xb0\x56\x4d\xdb\x3a\x02\x01\x0a\xa5\xa9\xfe\x95\x02\x65\x94\xb2\x5e\xa0\xd0\xdb\xd1\xd1\x91\x93\x38\x89\x8b\x13\xa7\x8e\x03\xb4\xd3\xbe\xfb\x91\x9d\x04\x92\x10\xba\x9d\x57\x47\x91\x5a\xe2\xd8\xcf\xf5\xf7\xdc\x6c\x50\xeb\x0d\xfc\xaa\x00\xe0\x41\xe6\x60\x5f\x03\xea\x69\x05\x00\x9b\xfa\x5c\xb1\xa1\x87\xc9\x9b\x06\xbe\x5c\x20\xb2\x44\x1c\x9b\x10\x5c\xa3\x08\x7d\xa9\x82\xcd\x42\x15\xe8\x0c\x43\x52\x05\x21\xf4\x43\x25\x44\x0c\xdb\xe2\xb8\x49\x09\x65\x1a\x38\x68\xb5\x5a\xe2\xd5\x80\xe6\xc2\x61\x34\xf2\x2d\x25\xfd\x62\xdb\xf6\x69\xe5\x77\xa5\x02\x25\xef\x74\x55\x3d\x89\x57\x6b\x04\xfb\x0b\xc5\x61\xf0\x0d\xfc\xda\x7c\x3c\xee\x88\x07\xfc\xae\x54\xb0\x1f\x44\x5c\x1e\xcc\xc9\x89\x7d\x17\x31\xcc\x3f\xe2\x08\x80\x41\x99\x85\x98\x06\x1a\xc1\x1a\x84\x94\x60\x0b\x1c\x98\xa6\x29\xb9\x4a\xb2\x9a\x4d\xcd\x28\x94\xc4\x69\xc4\x09\xf6\x91\x06\x7c\xea\xa3\xed\x59\x25\x27\xad\x58\x5d\x2b\xa1\x0b\x2d\xba\xd2\x80\x0a\x54\xd0\x0e\xd6\x80\x39\x06\xfc\xaa\x56\x1b\xed\x56\xb5\xd9\x6e\x57\x6b\xed\x6f\x92\x83\x11\x71\x4e\xfd\x0f\x25\x97\xeb\x21\x7e\x47\x1a\x68\x1c\x05\x6b\xb1\xc4\xd1\x9a\x2b\x90\x60\xc7\xd7\x80\x89\x7c\x8e\x98\x58\xb5\x70\x18\x10\x28\x0f\x0b\x29\x15\x83\x50\x73\x91\x35\x7e\xaa\xf0\xae\x29\x54\xf5\x18\x0a\x9d\xb7\xd6\x50\x33\xea\x31\x68\xe1\x28\xd4\x40\x2b\xe6\x6e\x46\x2c\x14\xa7\x02\x8a\x63\xd6\x1b\x3d\x32\xa6\x2a\xda\xa0\x53\x62\x83\xe3\xc4\x08\x07\x8c\x52\x9e\x40\x6e\xad\xac\xb0\xc5\x5d\x0d\x9c\x74\xd4\x98\xdd\x06\x86\x00\x46\x9c\x8a\x95\x00\x5a\x16\xf6\x1d\xb1\xd4\x54\x83\xf5\xf6\x8f\xa4\x56\x39\xd8\xa2\x21\x3e\xab\x70\x1a\x68\xe0\x28\x47\x4f\x31\x28\xe7\xd4\x4b\x97\x7f\x57\x2a\xf5\x43\x70\x87\x20\x33\x5d\x60\x52\x9f\x43\xec\x23\x06\x0e\xeb\x82\x5a\x0c\xc9\x8d\x79\x39\x34\x88\xf4\x7e\x22\x69\x43\x55\x3f\x4b\xb1\x68\x88\x39\xa6\xbe\x06\x18\x22\x90\xe3\xa5\xdc\xf4\xae\x60\xdf\x42\x6b\x0d\x34\x76\xa1\x21\x20\x97\x31\x8c\x7c\x6a\xcd\x6f\x05\x71\x62\x75\x52\x51\xce\xc0\x56\x3d\x17\x61\xc7\xe5\x1a\x68\xb7\x63\xd5\x32\x86\x39\x8e\x57\x52\x0f\xc6\xfb\xf6\x38\x55\x3a\xa8\x95\x1e\x58\x0b\xb0\x49\x2a\xc9\x4e\x83\xae\xb3\x28\xea\x74\x3a\x45\x58\x76\xe3\xb3\x72\x69\x95\xc8\xd4\x52\xd5\xd3\x1d\xab\x29\x26\x22\xa4\xc4\x74\x4b\xc4\x44\xf2\x20\x29\xa8\x3d\x6c\x59\xc2\xc6\xbf\x2b\xa9\xd2\xb5\x18\x61\x0a\xb4\x2c\x25\x09\x98\x3d\xa4\xf7\xd1\xda\x32\xfd\x5c\x30\x70\x18\x19\x1e\xe6\x20\x89\x45\x61\x68\x8b\x5a\x90\x27\x38\xce\x59\x4b\xda\x29\xb6\xd9\x69\x89\x03\x12\x0e\xc7\xcd\xc4\x98\xdb\x48\xc3\x1e\x74\x90\x06\x22\x46\xbe\x5a\x90\x43\x4d\xbe\xd7\x03\xdf\x39\x35\x60\x88\x3a\x47\x55\x7c\xdf\xbb\x99\xae\xd4\xf1\xd0\xa1\xba\xae\xeb\xd7\x77\x73\x77\x30\x77\x74\x5d\xef\x8f\xc4\x3b\xee\xeb\x4f\xe2\x7f\x67\xba\x5a\xf6\x75\x5d\xef\xdd\xcf\xc9\x60\x72\x3f\x7d\x5a\x7d\x6f\x3e\x4d\xa6\xc3\xc1\x95\xbe\xfe\xb1\xb8\xd7\x2f\xc9\x93\x3e\xb8\xec\xeb\xbd\xfe\xdc\xd5\x27\xf8\x21\x74\x2f\x1f\xf4\x5e\x7f\x3a\xd7\x9d\xe3\xef\x8f\x21\xbb\x9a\x2d\xb0\x71\x7d\xde\xb3\xce\x97\xdc\x47\x0b\xd5\xbe\xb3\x5f\x67\x74\x72\x3b\xb9\x45\x83\xae\x1e\x8d\xdb\xa3\xf3\x45\x6f\xa8\xf7\xbb\xfa\xe0\xce\xe4\x93\xc1\x48\xbf\x58\x3f\x8e\x67\xf3\x91\xd3\x3b\xd6\xfb\x4c\xed\xeb\x17\x26\xeb\x8f\xf4\xcb\x6b\x4f\xd5\xbf\x13\xae\xff\x5c\xe8\x66\xf3\xe5\x81\x8c\xe9\x78\x61\xfa\xfd\x71\xdf\xea\x4f\x55\xdc\x0a\x8e\xc8\xb5\xc7\xe8\xe5\xea\x76\x3a\x1c\x38\xfd\xce\xbd\x3b\xa4\x4d\x07\xce\x1e\xe7\x93\xb9\xbb\x1a\x4c\xd8\xdb\x38\xf4\xe6\x37\xf0\x79\x7e\xa4\x3e\x0c\x6e\xe8\x6c\xd1\x1d\x18\x2d\x3c\x1b\x3e\x39\x43\xd7\x74\xe0\xc4\x33\xa7\x4f\x3f\x8f\xae\xd5\xde\xcb\x05\xf9\x3e\xf5\x47\xe8\x3c\x1a\x35\xf0\x8f\xcb\xee\xa0\x87\x97\x7d\xd5\xf1\x8e\x8d\x69\x3f\x1c\xbe\x34\x16\x7c\x3c\x1a\x0d\xd7\x9d\x80\xba\xd7\x2f\xd7\xcf\x27\xd3\xa7\x89\xbf\x26\x78\xe6\x5c\x4c\xaf\x1a\xb0\xfe\xc8\x2e\x8e\x16\xa3\xc1\xb3\x3b\x78\x0f\xf9\x4c\xf5\x1c\x34\xf3\x7a\xc1\xe5\xf3\x3b\xf2\x2e\x5f\x9c\x45\xa7\xed\xc3\xd9\xcd\x09\xd4\x6f\x97\x37\x3f\x38\x5c\xea\x0f\x57\xaf\x63\xeb\xe5\xe2\xcd\x35\xd7\xa3\x87\x93\xd7\x68\x38\xbd\xbf\xbf\x69\x46\x6e\x9d\xcc\x58\xd7\x7e\xb8\x7a\x35\x06\xab\x86\xb9\x7c\xbf\xaf\xeb\xe4\xf1\x11\x9b\xb4\x69\x76\xbb\x47\x23\x67\xf5\xec\xea\xe7\x57\x4f\xcd\xbb\x59\xef\x7a\x72\x3e\x59\xbd\xcf\xf5\x85\x37\x7e\x72\x74\xba\x5e\xf6\xc9\x58\x1f\x3e\xbf\x9e\x5f\x9d\xf7\x8c\xee\xc9\x68\x35\x7d\x21\x23\xb5\x6e\xd7\x1f\xbe\x8f\xce\x5b\x7c\xf2\x73\x72\x8b\x8d\xe6\xeb\x44\xf8\x57\xbf\x9b\xdf\xdf\x4c\xc7\xed\xfe\xd3\x68\xf4\xcf\xb7\x02\x88\x18\x0a\x10\xe4\xa2\xfc\x24\x3f\x0b\xdf\xb7\x19\x28\xae\x0a\x99\xe2\x90\xd9\x95\x04\xed\x71\x92\xf7\x0e\xb0\x6f\x6c\x53\x76\x69\xe8\xa7\x29\xb9\xfd\xf9\x0f\x09\xf9\x28\x58\x83\x24\x19\x94\x67\xc3\xbf\xcc\x7f\xdb\x6c\x03\x21\x2c\x66\x9b\x24\xb8\x64\x8d\x4b\x03\xb0\x51\x6b\x33\xe4\xfd\xa1\xb5\x38\x80\xd6\xf2\x0f\x9a\xd2\x25\x62\x36\x11\xd2\xb9\xd8\xb2\x90\x9f\x0d\x72\x35\x9f\x62\x65\x21\x66\xd0\x4f\xd5\x8c\xb7\x55\xd3\x1d\x40\xad\x35\x42\x80\x60\x88\x14\xec\x2b\x34\xe2\x71\x1f\xe3\x62\x0b\x29\xa9\x1c\x49\x25\xcd\x16\xd2\xfa\x21\xb8\x42\x16\x86\x80\x1a\x2f\xc8\xe4\xc0\x24\x08\x32\x1b\xaf\x65\x5a\x12\xe7\xce\x40\xcd\xc6\x88\x58\x71\x43\xb2\x23\x6e\xaa\xe6\x66\xdb\x19\x20\xd0\x40\x44\x6e\x2f\x12\x27\xc8\x96\x85\x05\x00\x9b\x50\x01\x2c\xb1\x90\x4f\xcf\x41\x2e\xf7\xc7\x1d\x57\x29\x97\xf8\x87\xb2\x2d\x4e\xf5\x43\x70\x8d\x56\x40\x76\x21\xc0\xa6\xcc\x83\x9c\x0b\xbb\x88\xea\x8a\xd6\x5c\x2c\x01\x2f\x2b\x8d\x14\xe4\x2f\x34\x92\x2c\xfe\xc5\xdf\x02\xf4\x8f\x20\xf4\x6f\xc9\x2d\x87\x86\xe6\xd1\x9f\x8a\x59\xb1\x74\x6f\x0b\x67\xa3\xa0\xb2\x2c\x77\xc2\x73\x92\xb9\xe6\x53\xfe\x55\x23\x30\xe4\x8a\xe9\x62\x62\x7d\xcb\xb6\x19\x69\x4b\xa1\x26\x60\x14\xa7\xbc\x88\x70\x1c\x22\x22\x14\xfc\xab\x20\x4b\x45\xca\xb4\x2e\x85\xea\xde\xce\x96\xf6\xdd\xbe\x75\x57\x74\x19\xe1\xa2\x84\xc2\xb8\x70\x66\x51\x2b\x3a\xae\x14\xb9\x34\x80\x26\xe6\x6f\x25\xc8\x05\xe9\xb7\xa4\x8d\x29\x0b\x93\x9d\xb6\xb0\x1c\x36\x19\x59\xce\x00\xf2\xb6\xad\x6f\xc8\xdf\x88\x6c\xad\x99\x07\x49\xba\x57\x80\xe9\x0c\xd4\x42\x0e\x79\xdc\x57\xe6\x53\x51\x49\x5a\xc8\xe5\x22\xb5\x3c\x5f\x95\xc8\x55\x3f\x04\xfd\x34\xd4\x12\x76\x87\xf5\x4a\xfc\x4b\x33\x90\x4d\x19\xaa\xa6\xaf\xd0\x16\xb9\x35\x1e\x53\x7c\x8e\x7c\xae\x81\x4f\xe0\xd3\x6e\xb7\x23\x08\xef\x1e\x11\x5c\x84\xef\xb9\x1b\x23\x44\x6e\x50\x64\x28\xfe\xca\xc6\x21\x48\x0f\xc7\xdd\xdb\xf6\x63\xfc\x5a\x62\x9f\xda\x12\x92\xea\xce\x6a\xa1\x7b\x2d\x0e\x07\xa9\x75\xda\x69\x39\x90\xc5\x25\x8c\x08\xcf\x0f\x81\x1b\xe3\x65\x6c\xde\xfc\x70\x1e\xc9\x36\xdf\x3b\x99\xe4\xe4\xe4\x64\x73\x32\x2d\x08\x02\xc9\x0d\xd9\x8e\x6e\x53\xf6\x56\x9a\x33\x60\xe1\x65\x06\x2e\x19\xaf\xe7\x36\xd6\x10\x63\x94\xe5\xa6\xc8\x2e\xec\x58\x2d\x63\x5f\x75\x30\xed\x2e\x6a\xed\x89\x28\x1b\x22\x23\x0e\xaa\x0d\xae\x44\x82\xd8\x3f\x1e\x95\x89\x72\x06\x42\xce\xa8\xef\x64\x73\x45\xd2\x91\x37\xd2\xe9\xe3\x60\xa3\x65\x0d\x9a\x22\x34\x63\xb8\x6f\xb8\xb6\xa5\x5d\x5a\x09\xef\xf2\x03\x67\x20\x33\x4e\xa6\x8e\x4b\xc2\x22\x8b\x9d\x7d\x86\x68\x8b\xa7\x24\x81\xd4\x18\x0a\x68\x59\xa2\x4b\xbc\x2a\x50\x2c\xb7\x9c\x81\x1a\xc7\x9c\xa0\x9c\xf1\xd3\x20\x2b\x45\x4e\xa2\xdf\x86\x62\x7b\xff\x88\x59\x60\x71\x06\x6a\x3e\xf4\x62\x56\xc5\x96\x9f\xd3\x60\xcf\x11\x6a\x72\x6c\x52\x5f\xd9\x68\x94\x4a\x69\x18\xc6\xe9\x7e\xef\xec\x12\xc2\xbe\x85\x4d\xc8\x13\xa0\xed\x08\x20\x60\x2d\xa5\xd8\xaa\x28\x62\x3a\x4b\xd2\xc6\x04\x09\x9f\xd5\x3c\x0a\x59\xe9\x38\x57\xaa\x56\xa1\x50\xa4\x94\x72\x3e\x8f\x21\x9a\x8c\xc4\xfb\xc6\xf8\x12\xb4\x5b\x5d\xf1\x6c\x89\xd6\x4c\x42\x43\x64\x95\xd1\x56\x13\x18\xc6\xcc\x73\x8e\xcf\x47\xca\xf6\x4f\x2a\xce\x26\x15\x6d\x72\x50\xae\x78\xb7\xd4\x9d\xe1\xa9\x04\xa1\x65\x00\x89\x45\xc8\x5f\x20\x65\xca\x37\x41\xca\xe6\x6e\xab\x7e\x08\x74\x42\xe8\x0a\xb8\x94\xe1\x77\x31\xef\x13\x10\x9a\x8c\x12\x22\x5a\x14\xec\x03\x93\x5a\xa8\x0a\x42\xec\x61\x02\x19\xe0\x14\x38\x98\xbb\x91\x51\x33\xa9\x57\x6c\x54\xe2\xc4\x58\xb4\x99\x6c\x57\xb2\x2c\x37\x6a\xc7\x97\x47\x9b\xfd\x34\x40\x7e\x66\xb7\x51\xd8\x9d\x18\x49\xf6\x12\x90\x9b\x6e\x76\x2a\x4d\xa3\xa6\x99\x49\x58\xaa\x78\x32\xfb\x35\x1b\xb3\xb4\x5b\xc9\x9e\x8d\xd3\x72\xb9\xef\xe3\x83\xdb\x2e\xa7\x8c\xe7\x47\x47\x85\x3a\xc2\xa7\x71\xc5\x76\x31\x47\x4a\x18\x40\x13\x69\x20\x60\xa8\x6c\x9f\xf8\xef\x47\xde\xee\x3d\xd8\x97\x3b\x1a\x31\x13\x81\x3e\xb5\x10\xb8\x65\xf4\x4b\x15\x78\xd4\xa7\x92\xda\xce\xb5\x64\x9f\xfa\x21\x25\x30\xac\x82\x4f\x3f\xb1\x81\x18\x14\x69\x11\x5c\x51\x9f\x7e\xaa\x82\x2b\xe4\x13\x5a\x05\x7d\x1a\x31\x8c\x58\x81\x4c\x12\x52\xe9\x15\x51\xb6\x9e\x6d\x32\xe6\x06\xd6\x62\xfa\x6f\x67\x6f\x01\xf2\x97\x2c\x19\xc3\x20\x84\x3e\xbc\x98\x2b\xb9\xda\x2b\x69\x4d\xf2\xb6\xca\xba\x25\x6b\xb6\x62\x26\xed\xa6\x79\x26\x7f\x3a\x8b\x86\xb2\xe3\x12\x16\xe5\x67\xd3\xfd\x9a\x2b\xb0\x1f\x77\x92\xc2\x50\x16\x32\x69\x6c\x6b\x0d\x44\xbe\x85\x98\xd8\xbc\x27\x82\xa5\x45\xca\x29\x2f\x21\xf9\xbf\xf9\x3f\xe7\x5b\x35\xf5\xf0\x1e\x17\xfd\x2d\xa0\x85\x42\x1f\xb6\xb8\x85\x1b\x33\x83\x12\xeb\xaf\xee\xca\xe5\xb8\xdc\x6c\xb7\xe5\x2d\x6a\xe3\x48\x0c\xcd\xc9\x4d\x6a\x2d\xb9\x0a\xdb\x5c\x60\xca\xf7\x4c\xe3\x9c\x4e\x17\xdb\x8b\x6b\x02\x83\x10\x69\x20\xfd\xb5\x87\x4c\x92\x76\xf6\x38\xb4\x90\xf3\x8b\x21\x14\x4f\x95\x65\x74\x6b\x04\x87\x1c\x70\x2b\x57\x37\xf6\xcf\x37\x08\xa1\x0f\xc8\xd4\x18\x82\x61\xd2\xfd\xe4\x7c\xe4\xd3\x15\x83\x99\x8e\x40\xd9\x6d\x93\xe2\x4b\xfa\xf6\xa6\xbb\xca\xee\xab\xc5\xe3\x5b\x52\x07\x77\x6d\xe0\x30\xf8\x16\xb7\x64\x68\x6d\x92\xc8\x42\xd6\x7f\xb6\xa2\xfd\xaf\xb7\xd0\xff\x0d\x00\x00\xff\xff\x8f\xdc\xac\x27\x7e\x19\x00\x00" +var _cssHoundCss = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x58\xfb\x6f\x9b\xbe\x16\xff\x3d\x7f\x85\xb5\x6a\xda\xd6\x05\x42\x9e\x4d\xa9\xbe\x95\x48\x9a\xb5\x69\xd6\x47\xd2\xa4\xaf\xab\xab\x2b\x03\x0e\xb8\x31\x98\x1a\x93\xa4\x9d\xf6\xbf\x5f\xd9\x40\x02\x84\x74\xbb\x3f\x5d\x21\xb5\xc1\xd8\xe7\x1c\x9f\xf3\x39\x4f\x93\xda\x6f\xe0\x57\x05\x00\x0f\x32\x07\xfb\x3a\xd0\x4e\x2a\x00\xcc\xa9\xcf\x95\x39\xf4\x30\x79\xd3\xc1\x97\x0b\x44\x96\x88\x63\x0b\x82\x6b\x14\xa1\x2f\x55\xb0\x59\xa8\x02\x83\x61\x48\xaa\x20\x84\x7e\xa8\x84\x88\xe1\xb9\x38\x6e\x51\x42\x99\x0e\x0e\x9a\xcd\xa6\x78\x35\xa1\xb5\x70\x18\x8d\x7c\x5b\x49\xbf\xcc\xe7\xf3\x93\xca\xef\x4a\x05\x4a\xde\xe9\xaa\x76\x1c\xaf\xaa\x04\xfb\x0b\xc5\x61\xf0\x0d\xfc\xda\x7c\x3c\xea\x88\x07\xfc\xae\x54\xb0\x1f\x44\x5c\x1e\xcc\xc9\x89\x7d\x17\x31\xcc\x3f\xe2\x08\x80\x49\x99\x8d\x98\x0e\xea\xc1\x1a\x84\x94\x60\x1b\x1c\x58\x96\x25\xb9\x4a\xb2\xfa\x9c\x5a\x51\x28\x89\xd3\x88\x13\xec\x23\x1d\xf8\xd4\x47\xdb\xb3\x4a\x4e\x5a\xb1\xba\x56\x42\x17\xda\x74\xa5\x03\x0d\x68\xa0\x1d\xac\x01\x73\x4c\xf8\x55\xab\xd6\xdb\xcd\x6a\xa3\xdd\xae\xaa\xed\x6f\x92\x83\x19\x71\x4e\xfd\x0f\x25\x97\xeb\x21\x7e\x47\x3a\xa8\xb7\x82\xb5\x58\xe2\x68\xcd\x15\x48\xb0\xe3\xeb\xc0\x42\x3e\x47\x4c\xac\xda\x38\x0c\x08\x94\x87\x85\x94\x8a\x49\xa8\xb5\xc8\x2a\x3f\xbd\xf0\xae\x2a\x34\xed\x08\x8a\x3b\x6f\xb5\xa1\x65\xae\xc7\xa0\x8d\xa3\x50\x07\xcd\x98\xbb\x15\xb1\x50\x9c\x0a\x28\x8e\x59\x6f\xee\x91\x51\x55\x51\x07\x9d\x12\x1d\x1c\x25\x4a\x38\x60\x94\xf2\x04\x72\x6b\x65\x85\x6d\xee\xea\xe0\xb8\xa3\xc5\xec\x36\x30\x04\x30\xe2\x54\xac\x04\xd0\xb6\xb1\xef\x88\xa5\x86\x16\xac\xb7\x7f\x24\xb5\xca\xc1\x16\x0d\xf1\x59\x85\xd3\x40\x07\xad\x1c\x3d\xc5\xa4\x9c\x53\x2f\x5d\xfe\x5d\xa9\xd4\x0e\xc1\x1d\x82\xcc\x72\x81\x45\x7d\x0e\xb1\x8f\x18\x38\xac\x09\x6a\x31\x24\x37\xea\xe5\xd0\x24\xd2\xfa\x89\xa4\x75\x4d\xfb\x2c\xc5\xa2\x21\xe6\x98\xfa\x3a\x60\x88\x40\x8e\x97\x72\xd3\xbb\x82\x7d\x1b\xad\x75\x50\xdf\x85\x86\x80\x5c\x46\x31\xf2\x51\x1b\xdf\x0a\xe2\xc4\xd7\x49\x45\x39\x05\xdb\xeb\xb9\x08\x3b\x2e\xd7\x41\xbb\x1d\x5f\x2d\xa3\x98\xa3\x78\x25\xb5\x60\xbc\x6f\x8f\x51\xa5\x81\x9a\xe9\x81\xb5\x00\x9b\xa4\x92\xec\x34\xe9\x3a\x8b\xa2\x4e\xa7\x53\x84\x65\x37\x3e\x2b\x97\x56\x89\x4c\x4d\x4d\x3b\xd9\xd1\x9a\x62\x21\x42\x4a\x54\xb7\x44\x4c\x04\x0f\x92\x82\xda\xc3\xb6\x2d\x74\xfc\xbb\x92\x5e\x5a\x8d\x11\xa6\x40\xdb\x56\x12\x87\xd9\x43\x7a\x1f\xad\x2d\xd3\xcf\x05\x05\x87\x91\xe9\x61\x0e\x12\x5f\x14\x8a\xb6\xa9\x0d\x79\x82\xe3\x9c\xb6\xa4\x9e\x62\x9d\x9d\x94\x18\x20\xe1\x70\xd4\x48\x94\xb9\xf5\x34\xec\x41\x07\xe9\x20\x62\xe4\xab\x0d\x39\xd4\xe5\x7b\x2d\xf0\x9d\x13\x13\x86\xa8\xd3\xaa\xe2\xfb\xde\xcd\x64\xa5\x8d\xce\x1d\x6a\x18\x86\x71\x7d\x37\x73\x07\x33\xc7\x30\x8c\xfe\x50\xbc\xe3\xbe\xf1\x24\xfe\x77\x26\xab\x65\xdf\x30\x8c\xde\xfd\x8c\x0c\xc6\xf7\x93\xa7\xd5\xf7\xc6\xd3\x78\x72\x3e\xb8\x32\xd6\x3f\x16\xf7\xc6\x25\x79\x32\x06\x97\x7d\xa3\xd7\x9f\xb9\xc6\x18\x3f\x84\xee\xe5\x83\xd1\xeb\x4f\x66\x86\x73\xf4\xfd\x31\x64\x57\xd3\x05\x36\xaf\xcf\x7a\xf6\xd9\x92\xfb\x68\xa1\xcd\xef\xe6\xaf\x53\x3a\xbe\x1d\xdf\xa2\x41\xd7\x88\x46\xed\xe1\xd9\xa2\x77\x6e\xf4\xbb\xc6\xe0\xce\xe2\xe3\xc1\xd0\xb8\x58\x3f\x8e\xa6\xb3\xa1\xd3\x3b\x32\xfa\x4c\xeb\x1b\x17\x16\xeb\x0f\x8d\xcb\x6b\x4f\x33\xbe\x13\x6e\xfc\x5c\x18\x56\xe3\xe5\x81\x8c\xe8\x68\x61\xf9\xfd\x51\xdf\xee\x4f\x34\xdc\x0c\x5a\xe4\xda\x63\xf4\x72\x75\x3b\x39\x1f\x38\xfd\xce\xbd\x7b\x4e\x1b\x0e\x9c\x3e\xce\xc6\x33\x77\x35\x18\xb3\xb7\x51\xe8\xcd\x6e\xe0\xf3\xac\xa5\x3d\x0c\x6e\xe8\x74\xd1\x1d\x98\x4d\x3c\x3d\x7f\x72\xce\x5d\xcb\x81\x63\xcf\x9a\x3c\xfd\x6c\x5d\x6b\xbd\x97\x0b\xf2\x7d\xe2\x0f\xd1\x59\x34\xac\xe3\x1f\x97\xdd\x41\x0f\x2f\xfb\x9a\xe3\x1d\x99\x93\x7e\x78\xfe\x52\x5f\xf0\xd1\x70\x78\xbe\xee\x04\xd4\xbd\x7e\xb9\x7e\x3e\x9e\x3c\x8d\xfd\x35\xc1\x53\xe7\x62\x72\x55\x87\xb5\x47\x76\xd1\x5a\x0c\x07\xcf\xee\xe0\x3d\xe4\x53\xcd\x73\xd0\xd4\xeb\x05\x97\xcf\xef\xc8\xbb\x7c\x71\x16\x9d\xb6\x0f\xa7\x37\xc7\xd0\xb8\x5d\xde\xfc\xe0\x70\x69\x3c\x5c\xbd\x8e\xec\x97\x8b\x37\xd7\x5a\x0f\x1f\x8e\x5f\xa3\xf3\xc9\xfd\xfd\x4d\x23\x72\x6b\x64\xca\xba\xf3\x87\xab\x57\x73\xb0\xaa\x5b\xcb\xf7\xfb\x9a\x41\x1e\x1f\xb1\x45\x1b\x56\xb7\xdb\x1a\x3a\xab\x67\xd7\x38\xbb\x7a\x6a\xdc\x4d\x7b\xd7\xe3\xb3\xf1\xea\x7d\x66\x2c\xbc\xd1\x93\x63\xd0\xf5\xb2\x4f\x46\xc6\xf9\xf3\xeb\xd9\xd5\x59\xcf\xec\x1e\x0f\x57\x93\x17\x32\xd4\x6a\xf3\xda\xc3\xf7\xe1\x59\x93\x8f\x7f\x8e\x6f\xb1\xd9\x78\x1d\x0b\xfb\x1a\x77\xb3\xfb\x9b\xc9\xa8\xdd\x7f\x1a\x0e\xff\xf9\x56\x00\x11\x43\x01\x82\x5c\xa4\x9f\xe4\x67\xe1\xfb\x36\x02\xc5\x59\x21\x93\x1c\x32\xbb\x12\xa7\x3d\x4a\xe2\xde\x01\xf6\xcd\x6d\xc8\x2e\x75\xfd\x34\x24\xb7\x3f\xff\x21\x20\xb7\x82\x35\x48\x82\x41\x79\x34\xfc\xcb\xf8\xb7\x8d\x36\x10\xc2\x62\xb4\x49\x9c\x4b\xe6\xb8\xd4\x01\xeb\x6a\x9b\x21\xef\x0f\xa5\xc5\x01\xb4\x97\x7f\xb8\x29\x5d\x22\x36\x27\x42\x3a\x17\xdb\x36\xf2\xb3\x4e\xae\xe5\x43\xac\x4c\xc4\x0c\xfa\xe9\x35\xe3\x6d\xd5\x74\x07\xd0\xd4\x7a\x08\x10\x0c\x91\x82\x7d\x85\x46\x3c\xae\x63\x5c\x6c\x23\x25\x95\x23\xc9\xa4\xd9\x44\x5a\x3b\x04\x57\xc8\xc6\x10\x50\xf3\x05\x59\x1c\x58\x04\x41\x36\xc7\x6b\x19\x96\xc4\xb9\x53\xa0\xce\x31\x22\x76\x5c\x90\xec\x88\x9b\x5e\x73\xb3\xed\x14\x10\x68\x22\x22\xb7\x17\x89\x13\x34\x97\x89\x05\x80\x39\xa1\x02\x58\x62\x21\x1f\x9e\x83\x5c\xec\x8f\x2b\xae\x52\x2e\xf1\x0f\x65\x9b\x9c\x6a\x87\xe0\x1a\xad\x80\xac\x42\xc0\x9c\x32\x0f\x72\x2e\xf4\x22\xb2\x2b\x5a\x73\xb1\x04\xbc\xac\x34\x52\x90\xbf\xb8\x91\x64\xf1\x2f\xfe\x16\xa0\x7f\x04\xa1\x7f\x4b\x6e\x39\x34\x34\x5a\x7f\x4a\x66\xc5\xd4\xbd\x4d\x9c\xf5\xc2\x95\x65\xba\x13\x96\x93\xcc\x75\x9f\xf2\xaf\x3a\x81\x21\x57\x2c\x17\x13\xfb\x5b\xb6\xcc\x48\x4b\x0a\x2d\x01\xa3\x38\xe5\x45\x84\xe3\x10\x11\x71\xc1\xbf\x72\xb2\x54\xa4\x4c\xe9\x52\xc8\xee\xed\x6c\x6a\xdf\xad\x5b\x77\x45\x97\x1e\x2e\x52\x28\x8c\x13\x67\x16\xb5\xa2\xe2\x4a\x91\x4b\x03\x68\x61\xfe\x56\x82\x5c\x90\x7e\x4b\xca\x98\x32\x37\xd9\x29\x0b\xcb\x61\x93\x91\xe5\x14\x20\x6f\x5b\xfa\x86\xfc\x8d\xc8\xd2\x9a\x79\x90\xa4\x7b\x05\x98\x4e\x81\x1a\x72\xc8\xe3\xba\x32\x1f\x8a\x4a\xc2\x42\x2e\x16\x69\xe5\xf1\xaa\x44\xae\xda\x21\xe8\xa7\xae\x96\xb0\x3b\xac\x55\xe2\x5f\xba\x89\xe6\x94\xa1\x6a\xfa\x0a\xe7\x22\xb6\xc6\x6d\x8a\xcf\x91\xcf\x75\xf0\x09\x7c\xda\xad\x76\x04\xe1\xdd\x23\x82\x8b\xb0\x3d\x77\x63\x84\xc8\x0d\x8a\x74\xc5\x5f\x59\x3f\x04\xe9\xe1\xb8\x7a\xdb\x7e\x8c\x5f\x4b\xf4\xa3\x2e\x21\xa9\xee\xac\x16\xaa\xd7\x62\x73\x90\x6a\xa7\x9d\xa6\x03\x99\x5c\xc2\x88\xf0\x7c\x13\xb8\x51\x5e\x46\xe7\x8d\x0f\xfb\x91\x6c\xf1\xbd\x13\x49\x8e\x8f\x8f\x37\x27\xd3\x84\x20\x90\x5c\x97\xe5\xe8\x36\x64\x6f\xa5\x39\x05\x36\x5e\x66\xe0\x92\xb1\x7a\x6e\xa3\x8a\x18\xa3\x2c\xd7\x45\x76\x61\xc7\x6e\x9a\xfb\xb2\x83\x35\xef\xa2\xe6\x1e\x8f\x9a\x43\x64\xc6\x4e\xb5\xc1\x95\x08\x10\xfb\xdb\xa3\x32\x51\x4e\x41\xc8\x19\xf5\x9d\x6c\xac\x48\x2a\xf2\x7a\xda\x7d\x1c\x6c\x6e\xa9\x42\x4b\xb8\x66\x0c\xf7\x0d\xd7\xb6\xd4\x4b\x33\xe1\x5d\x7e\xe0\x14\x64\xda\xc9\xd4\x70\x89\x5b\x64\xb1\xb3\x4f\x11\x6d\xf1\x94\x04\x10\x95\xa1\x80\x96\x05\xba\xc4\xaa\x02\xc5\x72\xcb\x29\x50\x39\xe6\x04\xe5\x94\x9f\x3a\x59\x29\x72\x92\xfb\x6d\x28\xb6\xf7\xb7\x98\x05\x16\xa7\x40\xf5\xa1\x17\xb3\x2a\x96\xfc\x9c\x06\x7b\x8e\x50\x8b\x63\x8b\xfa\xca\xe6\x46\xa9\x94\xa6\x69\x9e\xec\xb7\xce\x2e\x21\xec\xdb\xd8\x82\x3c\x01\xda\x8e\x00\x02\xd6\x52\x8a\xed\x15\x85\x4f\x67\x49\xce\x31\x41\xc2\x66\xaa\x47\x21\x2b\x6d\xe7\x4a\xaf\x55\x48\x14\x29\xa5\x9c\xcd\x63\x88\x26\x2d\xf1\xbe\x36\xbe\x04\xed\x76\x57\x3c\x5b\xa2\xaa\x45\x68\x88\xec\x32\xda\x5a\x02\xc3\x98\x79\xce\xf0\x79\x4f\xd9\xfe\x49\xc5\xd9\x84\xa2\x4d\x0c\xca\x25\xef\xa6\xb6\xd3\x3c\x95\x20\xb4\x0c\x20\xb1\x08\xf9\x01\x52\x26\x7d\x13\xa4\x6c\x66\x5b\xb5\x43\x60\x10\x42\x57\xc0\xa5\x0c\xbf\x8b\x7e\x9f\x80\xd0\x62\x94\x10\x51\xa2\x60\x1f\x58\xd4\x46\x55\x10\x62\x0f\x13\xc8\x00\xa7\xc0\xc1\xdc\x8d\x4c\xd5\xa2\x5e\xb1\x50\x89\x03\x63\x51\x67\xb2\x5c\xc9\xb2\xdc\x5c\x3b\x1e\x1e\x6d\xf6\xd3\x00\xf9\x99\xdd\x66\x61\x77\xa2\x24\x59\x4b\x40\x6e\xb9\xd9\xae\x34\xf5\x9a\x46\x26\x60\x69\xe2\xc9\xec\xd7\xe7\x98\xa5\xd5\x4a\xf6\x6c\x1c\x96\xcb\x6d\x1f\x1f\xdc\x56\x39\x65\x3c\x3f\x3a\x2a\xae\x23\x6c\x1a\x67\x6c\x17\x73\xa4\x84\x01\xb4\x90\x0e\x02\x86\xca\xf6\x89\xff\x7e\xe4\xed\xce\xc1\xbe\xdc\xd1\x88\x59\x08\xf4\xa9\x8d\xc0\x2d\xa3\x5f\xaa\xc0\xa3\x3e\x95\xd4\x76\xc6\x92\x7d\xea\x87\x94\xc0\xb0\x0a\x3e\xfd\xc4\x26\x62\x50\x84\x45\x70\x45\x7d\xfa\xa9\x0a\xae\x90\x4f\x68\x15\xf4\x69\xc4\x30\x62\x05\x32\x89\x4b\xa5\x23\xa2\x6c\x3e\xdb\x44\xcc\x0d\xac\x45\xf7\xdf\xce\x4e\x01\xf2\x43\x96\x8c\x62\x10\x42\x1f\x0e\xe6\x4a\x46\x7b\x25\xa5\x49\x5e\x57\x59\xb3\x64\xd5\x56\x8c\xa4\xdd\x34\xce\xe4\x4f\x67\xd1\x50\x76\x5c\xc2\xa2\xfc\x6c\xba\x5f\x77\x05\xf6\xe3\x4a\x52\x28\xca\x46\x16\x8d\x75\xad\x83\xc8\xb7\x11\x13\x9b\xf7\x78\xb0\xd4\x48\x39\xe5\x25\x24\xff\x37\xfb\xe7\x6c\xab\xa5\x16\xde\x63\xa2\xbf\x05\xb4\xb8\xd0\x87\x25\x6e\x61\x62\x66\x52\x62\xff\xd5\xac\x5c\xb6\xcb\x8d\x76\x5b\x4e\x51\xeb\x2d\xd1\x34\x27\x93\x54\x35\x19\x85\x6d\x06\x98\xf2\x3d\x53\x38\xa7\xdd\xc5\x76\x70\x4d\x60\x10\x22\x1d\xa4\xbf\xf6\x90\x49\xc2\xce\x1e\x83\x16\x62\x7e\xd1\x85\xe2\xae\xb2\x8c\xae\x4a\x70\xc8\x01\xb7\x73\x79\x63\x7f\x7f\x83\x10\xfa\x80\x8c\xca\x10\x0c\x93\xea\x27\x67\x23\x9f\xae\x18\xcc\x54\x04\xca\x6e\x99\x14\x0f\xe9\xdb\x9b\xea\x2a\xbb\x4f\x8d\xdb\xb7\x24\x0f\xee\xea\xc0\x61\xf0\x2d\x2e\xc9\xd0\xda\x22\x91\x8d\xec\xff\x6c\x45\xfb\x5f\xa7\xd0\x49\x1a\x80\xb6\x83\x3e\x64\xb7\x3b\x99\x54\x1b\xe9\x08\xa4\x30\xef\xdf\x1f\x7e\x0a\x35\x61\x06\xeb\x47\x99\xfe\x2a\xc5\xe7\x91\xa6\x15\xcb\xfa\x76\xd9\x28\x26\xdf\x50\xab\x8d\x36\xf2\x80\xa6\xb6\x62\xd9\xca\x5b\x85\x62\xa5\x63\xc2\x10\xa5\x51\x64\x8f\x29\xff\x1b\x00\x00\xff\xff\xd0\xb1\xc0\x5b\xa7\x1a\x00\x00" func cssHoundCssBytes() ([]byte, error) { return bindataRead( @@ -114,7 +114,7 @@ func cssHoundCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "css/hound.css", size: 6526, mode: os.FileMode(420), modTime: time.Unix(1646665073, 0)} + info := bindataFileInfo{name: "css/hound.css", size: 6823, mode: os.FileMode(420), modTime: time.Unix(1653598478, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -134,7 +134,7 @@ func cssOcticonsLicenseTxt() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "css/octicons/LICENSE.txt", size: 293, mode: os.FileMode(420), modTime: time.Unix(1646665073, 0)} + info := bindataFileInfo{name: "css/octicons/LICENSE.txt", size: 293, mode: os.FileMode(420), modTime: time.Unix(1653598478, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -154,7 +154,7 @@ func cssOcticonsReadmeMd() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "css/octicons/README.md", size: 200, mode: os.FileMode(420), modTime: time.Unix(1646665073, 0)} + info := bindataFileInfo{name: "css/octicons/README.md", size: 200, mode: os.FileMode(420), modTime: time.Unix(1653598478, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -174,7 +174,7 @@ func cssOcticonsOcticonsLocalTtf() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "css/octicons/octicons-local.ttf", size: 52764, mode: os.FileMode(420), modTime: time.Unix(1646665073, 0)} + info := bindataFileInfo{name: "css/octicons/octicons-local.ttf", size: 52764, mode: os.FileMode(420), modTime: time.Unix(1653598478, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -194,7 +194,7 @@ func cssOcticonsOcticonsCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "css/octicons/octicons.css", size: 11740, mode: os.FileMode(420), modTime: time.Unix(1646665073, 0)} + info := bindataFileInfo{name: "css/octicons/octicons.css", size: 11740, mode: os.FileMode(420), modTime: time.Unix(1653598478, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -214,7 +214,7 @@ func cssOcticonsOcticonsEot() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "css/octicons/octicons.eot", size: 31440, mode: os.FileMode(420), modTime: time.Unix(1646665073, 0)} + info := bindataFileInfo{name: "css/octicons/octicons.eot", size: 31440, mode: os.FileMode(420), modTime: time.Unix(1653598478, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -234,7 +234,7 @@ func cssOcticonsOcticonsLess() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "css/octicons/octicons.less", size: 12018, mode: os.FileMode(420), modTime: time.Unix(1646665073, 0)} + info := bindataFileInfo{name: "css/octicons/octicons.less", size: 12018, mode: os.FileMode(420), modTime: time.Unix(1653598478, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -254,7 +254,7 @@ func cssOcticonsOcticonsSvg() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "css/octicons/octicons.svg", size: 86997, mode: os.FileMode(420), modTime: time.Unix(1646665073, 0)} + info := bindataFileInfo{name: "css/octicons/octicons.svg", size: 86997, mode: os.FileMode(420), modTime: time.Unix(1653598478, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -274,7 +274,7 @@ func cssOcticonsOcticonsTtf() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "css/octicons/octicons.ttf", size: 31272, mode: os.FileMode(420), modTime: time.Unix(1646665073, 0)} + info := bindataFileInfo{name: "css/octicons/octicons.ttf", size: 31272, mode: os.FileMode(420), modTime: time.Unix(1653598478, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -294,7 +294,7 @@ func cssOcticonsOcticonsWoff() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "css/octicons/octicons.woff", size: 17492, mode: os.FileMode(420), modTime: time.Unix(1646665073, 0)} + info := bindataFileInfo{name: "css/octicons/octicons.woff", size: 17492, mode: os.FileMode(420), modTime: time.Unix(1653598478, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -314,7 +314,7 @@ func cssOcticonsSprocketsOcticonsScss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "css/octicons/sprockets-octicons.scss", size: 11758, mode: os.FileMode(420), modTime: time.Unix(1646665073, 0)} + info := bindataFileInfo{name: "css/octicons/sprockets-octicons.scss", size: 11758, mode: os.FileMode(420), modTime: time.Unix(1653598478, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -334,7 +334,7 @@ func excluded_filesTplHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "excluded_files.tpl.html", size: 459, mode: os.FileMode(420), modTime: time.Unix(1646665073, 0)} + info := bindataFileInfo{name: "excluded_files.tpl.html", size: 459, mode: os.FileMode(420), modTime: time.Unix(1653598478, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -354,7 +354,7 @@ func faviconIco() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "favicon.ico", size: 1150, mode: os.FileMode(420), modTime: time.Unix(1646665073, 0)} + info := bindataFileInfo{name: "favicon.ico", size: 1150, mode: os.FileMode(420), modTime: time.Unix(1653598478, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -374,7 +374,7 @@ func imagesBusyGif() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "images/busy.gif", size: 4178, mode: os.FileMode(420), modTime: time.Unix(1646665073, 0)} + info := bindataFileInfo{name: "images/busy.gif", size: 4178, mode: os.FileMode(420), modTime: time.Unix(1653598478, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -394,7 +394,7 @@ func indexTplHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "index.tpl.html", size: 821, mode: os.FileMode(420), modTime: time.Unix(1646665073, 0)} + info := bindataFileInfo{name: "index.tpl.html", size: 821, mode: os.FileMode(420), modTime: time.Unix(1653598478, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -414,7 +414,7 @@ func jsJsxtransformer0122Js() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "js/JSXTransformer-0.12.2.js", size: 471852, mode: os.FileMode(420), modTime: time.Unix(1646665073, 0)} + info := bindataFileInfo{name: "js/JSXTransformer-0.12.2.js", size: 471852, mode: os.FileMode(420), modTime: time.Unix(1653598478, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -434,12 +434,12 @@ func jsCommonJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "js/common.js", size: 2378, mode: os.FileMode(420), modTime: time.Unix(1646665073, 0)} + info := bindataFileInfo{name: "js/common.js", size: 2378, mode: os.FileMode(420), modTime: time.Unix(1653598478, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _jsCommonTestJs = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x98\xf1\x8f\xdb\x34\x14\xc7\x7f\xbf\xbf\xe2\xe1\x6d\x22\x59\xd3\x64\x37\x24\xd0\xe5\x28\x0c\xc6\x31\x90\x26\x0d\x1d\x0c\x09\x9a\x0e\xb9\xe9\x6b\x63\x70\xec\x60\x3b\xed\x6d\x59\xfe\x77\x64\x27\x6d\xd3\xb4\xec\xd6\xe9\x18\x1b\xac\x3f\xb4\xaa\xdf\xf3\x7b\x2f\x5f\x7f\x9e\x9d\x84\xe5\x85\x54\x06\x2a\xb8\xd0\x29\x2d\xf0\x12\x17\x17\x57\x45\x00\x17\x57\x05\x15\xb3\x9f\xa9\xd2\x01\x3c\x55\xfc\x27\x79\x89\x85\x84\x1a\xe6\x4a\xe6\x40\xc2\x28\x95\x79\x2e\x05\x39\x3f\x39\x99\xa1\x4e\x15\x9b\xa2\x47\xba\x11\x48\x00\x9e\x0f\xa3\x2f\xa0\x3a\x01\x00\x48\xa5\xd0\x06\x0c\x6a\x73\x89\x0b\x0d\x23\x18\xbb\x61\xfb\x19\x93\x1f\x65\x8e\xce\x06\x0a\x17\x78\x85\x9a\x04\xeb\xd1\x82\x1a\x83\x4a\x68\x30\x19\x35\xa0\x33\x59\xf2\x19\x08\x69\x20\xa7\x26\xcd\xc8\x64\x12\x74\xe2\xd0\xe9\x20\x75\x53\xe9\x34\xed\x99\x9e\x25\xb3\xc1\x6d\x67\x3b\x25\x01\x90\xd3\xfb\x9f\xd8\x9f\x7d\xbf\x30\x0a\xc3\xb0\x89\x11\xed\x5b\x93\xd5\xc0\xda\x7a\x83\x2a\x11\x2f\x13\xf5\x32\x11\xfb\xb6\x67\x63\x3a\x7c\x31\x19\x24\xe3\xf1\xbd\xe1\xd9\x64\x90\x4c\x6e\xef\xfb\x44\xe3\xe1\x38\x99\x54\xb5\xe7\xdf\x1d\x7c\xf4\xf9\x28\xfe\x32\x4c\xa2\x24\x79\x76\xfb\xe5\xad\x44\x07\x13\x57\x4b\xc7\xe5\x80\x47\x2f\xa5\x67\x73\x7e\x35\xfc\xf5\xde\xf0\x2c\xfc\xed\xce\x70\x32\x78\xd0\x19\x18\x4e\x06\x49\xd8\xfe\x9f\x54\xf7\x83\x4f\x6b\xff\xee\x81\x9a\xbc\xef\xc2\xd0\x0f\x3d\x19\x86\xfe\xdf\x5c\x54\x13\x0f\x26\xeb\xd9\xce\x3e\x39\x3f\x71\xbf\x76\x2d\x43\xa4\x69\xe6\xad\x57\xdc\xf7\x36\x01\x76\x30\xf1\xee\x68\x1f\x14\x9a\xb2\x59\x63\x84\x66\xb8\x59\x5e\x26\x16\x6e\x8c\x89\xa2\x34\x64\x5b\x82\xe7\x30\x29\x82\x96\x87\x6f\x29\xe3\x1d\xd4\xd6\x9f\x06\x39\x85\x30\x02\x81\xab\x36\xb0\xb7\x93\xbc\x89\xe3\xfb\x3b\xf3\xf0\xaa\xc0\xd4\x78\x0a\x43\x5b\xfc\xc6\x27\x34\xf2\x6b\xf4\x8c\x2a\xd1\x3f\xdf\xf1\xdf\x16\x11\xce\xa5\xba\xb0\x57\xed\xcd\x29\xe3\x0f\xa9\xc6\x03\x65\x1d\x48\xb1\xf1\x6e\x93\xcc\x29\xd7\xfd\x2c\x75\xe7\x7f\xdd\x48\xe1\x9f\x9f\xd8\xd1\x6e\x03\x6e\x9a\xb6\xd7\x7e\x2e\x0d\xb9\xc4\x82\xd3\x14\x35\x18\xcc\x0b\x4e\x0d\xc2\x92\x2a\x46\xa7\x1c\x35\xac\x98\xc9\xac\xd8\x4c\xc1\x92\xf2\x12\xfb\x11\xba\x4d\xdc\x4e\x1e\x01\xf9\x1e\x68\x0e\x46\x3d\x77\x2b\x25\xa1\x5a\xa2\x9a\xd6\x90\x3f\x87\x4a\xc8\x52\xd4\xe4\xbc\x37\xb7\x09\x0d\x23\xa8\xc0\xba\xc6\x40\x56\x54\x67\x24\x00\xeb\x1e\x03\x99\x31\x9d\xa1\x26\x50\x6f\x27\xb6\x5a\x6d\x2f\xcd\x5b\x17\x10\xb4\xe1\xd6\xb2\xed\xe8\xd5\x2f\xcd\xe6\xb1\x85\xb5\x19\x36\xbe\xad\xac\x4e\xc8\xad\x52\xdf\x48\xd4\xe2\x63\x4b\x8f\x53\x0c\x4a\xc1\x99\x36\x38\xdb\x0a\xf6\x5a\xf2\x3c\x42\xe3\x00\xae\xf0\xaa\xe0\x68\xd8\x12\x6b\x90\xa5\x01\x39\xbf\x56\xa3\x53\x27\x52\x2b\x8b\x36\x34\x2f\x20\x95\x9c\x63\x6a\x98\x14\x4e\xa0\x23\x14\x3a\x3d\x2c\xd1\xab\xcb\xdb\x4b\xda\xd7\xec\xba\xdc\x55\xbd\xe9\x9a\x76\xac\x23\x76\x8f\xdc\xa7\x8a\xff\x40\x95\x39\xcc\xed\x23\x14\xa8\xac\xa4\x85\x75\x69\x8e\x20\x65\x8f\x23\x07\xed\x0c\xe7\xb4\xe4\xe6\x3a\x6c\xdd\x84\x51\xaf\x19\x4b\xc5\x63\x20\x99\x31\x85\x8e\xa3\x68\xb5\x5a\x85\x0b\x66\xb2\x72\x1a\xa6\x32\x8f\x7e\x91\xa5\x7a\xa2\x16\x54\xb0\x17\xd4\x0a\x10\xd9\x23\xf0\x89\x40\xeb\xd3\xd9\x8d\x9c\x94\xa5\xe2\xc3\xf6\xac\x22\xf1\x8e\x69\xbf\xfb\xa9\x48\x33\xa9\x62\x20\xb7\x1e\x57\x9c\x09\xac\xc9\x6e\xa7\x6f\xfb\xbc\x8f\x46\x41\x4d\x66\xb9\x72\xfb\xab\xb9\x32\xa4\x67\xb7\xd1\xec\x76\x57\x72\xbe\x77\xf5\x4b\x3b\x31\xa7\xac\xb3\x8e\xed\xe2\xad\xb5\xf7\xac\x44\x81\x4b\x12\xb8\x50\x81\x9d\xe6\xd6\xf0\xe2\xcf\x92\x72\xaf\xf1\x0f\xe5\xf4\x77\x4c\xcd\x43\x29\x0c\x65\x82\x89\x85\x77\x03\x9a\xf6\xf4\x54\xb8\x8c\xed\xd7\xee\xa8\xad\x2c\x6e\xea\x3b\x39\x28\x68\x27\x4a\xed\x1f\xee\xec\x63\x58\x02\x2a\x66\x4e\x88\x0f\x50\x8d\xec\x3d\x53\xdf\xf2\xff\x80\xea\xd6\x63\x02\x83\xa6\xf4\xa3\xe9\x92\x0a\xb4\xce\x40\x9b\xe7\x1c\x6f\x74\xcb\x5a\x30\xf3\x60\xab\x40\xfc\xde\x52\xf5\x2e\x6c\x55\x51\xf4\x2e\x6f\x50\x2d\x42\x53\x66\xa6\x65\xfa\x07\x1a\xc8\x51\xa5\xa5\x62\x94\x77\xb0\x7a\x13\x84\xb4\xce\xe2\x28\xca\x16\x0f\x36\xa1\x43\xa9\x16\xaf\x2b\xc0\x51\x18\x91\x46\x00\x02\x96\xa4\x6a\xce\x38\x0a\x9a\x63\x3d\xfc\x2f\x33\xf5\x46\xaa\xbe\x15\x80\xfa\xbb\x91\x7d\xfe\x7f\x73\x80\xec\x4e\xb4\x73\xad\xf1\x67\x67\x67\x67\x1f\x30\xfa\x27\x30\x3a\x4a\xda\xb7\xc3\x12\xaa\x25\xaa\x1b\xd9\x89\x76\x41\x62\xc2\x22\x41\xb9\x3b\xde\xde\x12\x51\x0d\x46\xc1\x0d\x73\x74\x7a\xef\xdf\xa3\x28\x93\xda\xd8\x1e\xe9\xa1\xd4\x15\xb7\x4f\x8d\x92\x36\x62\x0c\xa4\xaf\xf7\xde\x09\x58\xc8\x18\xc8\x71\xec\x1d\x3e\x36\xb7\x77\x19\xd7\xdc\x69\xd5\x7e\xef\x99\xb1\x79\x2d\xf9\xea\x87\xc6\x52\xf1\xf7\xfe\x91\x91\x4c\xa9\xc6\x61\xa9\x38\x89\x81\x54\xa5\xe2\x75\x34\xe5\x72\x1a\x55\x0a\x97\x75\x54\x59\xa1\xeb\xaa\x91\xb1\x0f\x30\xbc\x9b\xb7\x71\xcd\xca\xbd\x02\xf3\xbd\xb7\x15\x47\x4a\xde\x08\x64\xd3\x47\xfb\xc5\xf7\x5e\x44\xfc\x15\x00\x00\xff\xff\xb3\x54\xc4\x84\x04\x17\x00\x00" +var _jsCommonTestJs = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x98\x6f\x93\xdb\xb4\x13\xc7\x9f\xdf\xab\xd8\x9f\xda\xce\xcf\x6e\x1c\xbb\x57\x66\x60\xce\x47\xa0\x50\x8e\xc2\x4c\x67\xca\x1c\x7f\x66\x20\x4e\x19\xc5\xd9\xc4\x02\x59\x32\x92\x9c\x5c\xeb\xfa\xbd\x33\x92\x9d\xc4\x71\x42\xaf\xe9\x1c\xe5\x0a\xcd\x83\xcb\x45\xbb\xda\x5d\x7f\xf5\x59\xc9\x36\xcb\x0b\xa9\x0c\x54\x70\xa1\x53\x5a\xe0\x25\x2e\x2e\xae\x8a\x00\x2e\xae\x0a\x2a\x66\x3f\x51\xa5\x03\xf8\x51\xf1\x1f\xe4\x25\x16\xd2\xfd\xfb\x1d\x55\x46\x43\x0d\x73\x25\x73\x20\x61\x94\xca\x3c\x97\x82\x9c\x9f\x9c\xcc\x50\xa7\x8a\x4d\xd1\x23\xdd\x58\x24\x00\xcf\x87\xd1\x67\x50\x9d\x00\x00\xa4\x52\x68\x03\x06\xb5\xb9\xc4\x85\x86\x11\x8c\xdd\xb0\xfd\x8c\xc9\xf7\x32\x47\x67\x03\x85\x0b\xbc\x42\x4d\x82\xf5\x68\x41\x8d\x41\x25\x34\x98\x8c\x1a\xd0\x99\x2c\xf9\x0c\x84\x34\x90\x53\x93\x66\x64\x32\x09\x3a\x71\xe8\x74\x90\xba\xa9\x74\x9a\xf6\x4c\xcf\x93\xd9\xe0\xae\xb3\x9d\x92\x00\xc8\xe9\xc3\x8f\xec\xd7\xbe\x5f\x18\x85\x61\xd8\xc4\x88\xf6\xad\xc9\x6a\x60\x6d\xbd\x41\x95\x88\x57\x89\x7a\x95\x88\x7d\xdb\xf3\x31\x1d\xbe\x9c\x0c\x92\xf1\xf8\xc1\xf0\x6c\x32\x48\x26\x77\xf7\x7d\xa2\xf1\x70\x9c\x4c\xaa\xda\xf3\xef\x0f\xfe\xf7\xe9\x28\xfe\x3c\x4c\xa2\x24\x79\x7e\xf7\xd5\x9d\x44\x07\x13\x57\x4b\xc7\xe5\x80\x47\x2f\xa5\x67\x73\x7e\x31\xfc\xe5\xc1\xf0\x2c\xfc\xf5\xde\x70\x32\x78\xd4\x19\x18\x4e\x06\x49\xd8\xfe\x9e\x54\x0f\x83\x8f\x6b\xff\xfe\x81\x9a\xbc\x6f\xc2\xd0\x0f\x3d\x19\x86\xfe\x5f\x5c\x54\x13\x0f\x26\xeb\xd9\xce\x3e\x39\x3f\x71\xdf\x76\x2d\x43\xa4\x69\xe6\xad\x57\xdc\xf7\x36\x01\x76\x30\xf1\xee\x69\x1f\x14\x9a\xb2\x59\x63\x84\x66\xb8\x59\x5e\x26\x16\x6e\x8c\x89\xa2\x34\x64\x5b\x82\xe7\x30\x29\x82\x96\x87\xaf\x29\xe3\x1d\xd4\xd6\x9f\x06\x39\x85\x30\x02\x81\xab\x36\xb0\xb7\x93\xbc\x89\xe3\xfb\x3b\xf3\xf0\xaa\xc0\xd4\x78\x0a\x43\x5b\xfc\xc6\x27\x34\xf2\x4b\xf4\x8c\x2a\xd1\x3f\xdf\xf1\xdf\x16\x11\xce\xa5\xba\xb0\x57\xed\xcd\x29\xe3\x8f\xa9\xc6\x03\x65\x1d\x48\xb1\xf1\x6e\x93\xcc\x29\xd7\xfd\x2c\x75\xe7\x77\xdd\x48\xe1\x9f\x9f\xd8\xd1\x6e\x03\x6e\xda\xb7\xd7\x7e\x2e\x0d\xb9\xc4\x82\xd3\x14\x35\x18\xcc\x0b\x4e\x0d\xc2\x92\x2a\x46\xa7\x1c\x35\xac\x98\xc9\xac\xd8\x4c\xc1\x92\xf2\x12\xfb\x11\xba\x4d\xdc\x4e\x1e\x01\xf9\x16\x68\x0e\x46\xbd\x70\x2b\x25\xa1\x5a\xa2\x9a\xd6\x90\xbf\x80\x4a\xc8\x52\xd4\xe4\xbc\x37\xb7\x09\x0d\x23\xa8\xc0\xba\xc6\x40\x56\x54\x67\x24\x00\xeb\x1e\x03\x99\x31\x9d\xa1\x26\x50\x6f\x27\xb6\x5a\x6d\x2f\xcd\x5b\x17\x10\xb4\xe1\xd6\xb2\xed\xe8\xd5\x2f\xcd\xe6\xb1\x85\xb5\x19\x36\xbe\xad\xac\x4e\xc8\xad\x52\x5f\x49\xd4\xe2\xff\x96\x1e\xa7\x18\x94\x82\x33\x6d\x70\xb6\x15\xec\x8d\xe4\x79\x82\xc6\x01\x5c\xe1\x55\xc1\xd1\xb0\x25\xd6\x20\x4b\x03\x72\x7e\xad\x46\xa7\x4e\xa4\x56\x16\x6d\x68\x5e\x40\x2a\x39\xc7\xd4\x30\x29\x9c\x40\x47\x28\x74\x7a\x58\xa2\xd7\x97\xb7\x97\xb4\xaf\xd9\x75\xb9\xab\x7a\xd3\x35\xed\x58\x47\xec\x1e\xb9\xeb\x13\xe6\x20\xb7\x4f\x50\xa0\xb2\x92\x16\xee\x10\x72\x47\x90\xc2\x42\x36\xd0\xce\x70\x4e\x4b\x6e\xae\xc3\xd6\x4d\x18\xf5\x9a\xb1\x54\x3c\x06\x92\x19\x53\xe8\x38\x8a\x56\xab\x55\xb8\x60\x26\x2b\xa7\x61\x2a\xf3\xe8\x67\x59\xaa\x67\x6a\x41\x05\x7b\x49\xad\x00\x91\x3d\x0c\x9f\x09\xb4\x3e\x9d\xdd\xc8\x49\x59\x2a\x3e\x6c\xcf\x2a\x12\xef\x98\xf6\xbb\x9f\x8a\x34\x93\x2a\x06\x72\xe7\x69\xc5\x99\xc0\x9a\xec\x76\xfa\xb6\xcf\xfb\x68\x14\xd4\x64\x96\x2b\xb7\xbf\x9a\x2b\x43\x7a\x76\x1b\xcd\x6e\x77\x25\xe7\x7b\x57\xbf\xb4\x13\x73\xca\x3a\xeb\xd8\x2e\xde\x5a\x7b\x4f\xb9\xc3\xde\x26\x09\x5c\xa8\xc0\x4e\x73\x6b\x78\xf1\x47\x49\xb9\xd7\xf8\x87\x72\xfa\x1b\xa6\xe6\xb1\x14\x86\x32\xc1\xc4\xc2\xbb\x01\x4d\x7b\x7a\x2a\x5c\xc6\xf6\xcf\xee\xa8\xad\x2c\x6e\xea\x3b\x39\x28\x68\x27\x4a\xed\x1f\xee\xec\x63\x58\x02\x2a\x66\x4e\x88\x0f\x50\x8d\xec\x3d\x53\xdf\xf2\xdf\x80\xea\xce\x53\x02\x83\xa6\xf4\xa3\xe9\x92\x0a\xb4\xce\x40\x9b\x17\x1c\x6f\x74\xcb\x5a\x30\xf3\x68\xab\x40\xfc\xde\x52\x75\x1b\xb6\xaa\x28\xba\xcd\x1b\x54\x8b\xd0\x94\x99\x69\x99\xfe\x8e\x06\x72\x54\x69\xa9\x18\xe5\x1d\xac\xde\x06\x21\xad\xb3\x38\x8a\xb2\xc5\xa3\x4d\xe8\x50\xaa\xc5\x9b\x0a\x70\x14\x46\xa4\x11\x80\x80\x25\xa9\x9a\x33\x8e\x82\xe6\x58\x0f\xff\xcd\x4c\xbd\x95\xaa\xef\x04\xa0\xfe\x6e\x54\x48\x65\xde\x1e\x20\xbb\x13\xed\x5c\x6b\xfc\xc9\xd9\xd9\xd9\x07\x8c\xfe\x0e\x8c\x8e\x92\xf6\xdd\xb0\x84\x6a\x89\xea\x46\x76\xa2\x5d\x90\x98\xb0\x48\x50\xee\x8e\xb7\x77\x44\x54\x83\x51\x70\xc3\x1c\x9d\x3e\xf8\xe7\x28\xca\xa4\x36\xb6\x47\x7a\x28\x75\xc5\xed\x53\xa3\xa4\x8d\x18\x03\xe9\xeb\xbd\x77\x02\x16\x32\x06\x72\x1c\x7b\x87\x8f\xcd\xed\x5d\xc6\x35\x77\x5a\xb5\xdf\x7b\x66\x6c\x5e\x50\xbe\xfe\xa1\xb1\x54\xfc\xbd\x7f\x64\x24\x53\xaa\x71\x58\x2a\x4e\x62\x20\x55\xa9\x78\x1d\x4d\xb9\x9c\x46\x95\xc2\x65\x1d\x55\x56\xe8\xba\x6a\x64\xec\x03\x0c\xb7\xf3\x36\xae\x59\xb9\xd7\x60\xbe\xf7\xb6\xe2\x48\xc9\x1b\x81\x6c\xfa\x68\xbf\xf8\xde\x8b\x88\x3f\x03\x00\x00\xff\xff\xac\xb3\xdf\x25\x0e\x17\x00\x00" func jsCommonTestJsBytes() ([]byte, error) { return bindataRead( @@ -454,7 +454,7 @@ func jsCommonTestJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "js/common.test.js", size: 5892, mode: os.FileMode(420), modTime: time.Unix(1646665073, 0)} + info := bindataFileInfo{name: "js/common.test.js", size: 5902, mode: os.FileMode(420), modTime: time.Unix(1653598478, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -474,12 +474,12 @@ func jsExcluded_filesJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "js/excluded_files.js", size: 4368, mode: os.FileMode(420), modTime: time.Unix(1646665074, 0)} + info := bindataFileInfo{name: "js/excluded_files.js", size: 4368, mode: os.FileMode(420), modTime: time.Unix(1653598483, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _jsHoundJs = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x7c\xfd\x72\x23\x37\x72\xf8\xab\x50\xf8\xb9\x58\x80\x09\x8e\x28\xfb\x7e\xc9\x65\xb8\x73\x8a\xbd\xbb\xbe\x73\xce\xeb\xbd\x68\xf7\xee\xfe\xe0\x32\x5b\xd0\x4c\x93\x84\x77\x08\x8c\x00\x50\x2b\x85\x9a\xaa\x7b\x90\xe4\xe5\xee\x49\x52\xf8\x98\x4f\x0e\x25\xca\xb1\xaf\x52\xe5\xd2\x72\x30\x8d\x46\x77\xa3\xbb\xd1\xdd\xe8\xf1\xd9\x6a\x27\x52\xc3\xa5\xc0\x40\xf6\xb7\x4c\x8d\x4c\xb2\x2f\xe7\xd5\xe0\x48\x63\x45\xf6\x7c\x85\xcd\x42\x2d\x89\x02\xb3\x53\x62\x64\x7f\x47\x70\x57\x48\x65\xf4\xdc\x4e\x61\x89\x1d\x4a\xf6\x3c\x56\x34\x8f\xcf\x2e\x68\x78\x19\xef\xcb\x72\x1e\x26\x81\x9d\x94\xb2\x3c\xc7\xac\x9a\x4b\x19\x6d\x7e\x6b\x42\x59\x94\x27\x67\xb3\x66\xac\xd4\xd1\x36\x01\xaa\xa3\x34\x31\x54\x47\x59\xd2\x90\x4a\x0d\x55\x64\xaf\x23\x69\x7f\x92\x87\x87\xb7\xd7\x3f\x41\x6a\xa2\x0c\x56\x5c\xc0\x9f\x94\x2c\x40\x99\x7b\x07\xb6\x07\xb1\xdb\x82\x62\xd7\x39\xc4\x67\x33\xba\x06\x13\xab\x92\x94\x54\x47\x2a\x69\xb3\x8e\x76\xc2\xcf\xce\xd0\x59\x62\xee\x0b\x90\xab\xd1\xbb\xfb\xed\xb5\xcc\xc7\x63\xff\x6f\x64\xe4\x3b\xa3\xb8\x58\xbf\x67\xeb\xf1\xf8\xd8\x8a\x87\xb0\x74\x7f\xcb\xf2\x1d\xc4\xe8\x8d\xcc\x76\x39\xa0\x92\xd0\x63\x93\xd1\xc7\x8f\xa0\x03\x58\x35\xed\x6c\xe6\xc9\x35\x1d\xf6\xdd\xa6\x5c\x8c\xcd\x78\x8c\x21\xd1\x18\x08\xa1\xbf\x1d\x9b\x6a\x87\x60\xce\x57\xf8\x37\xf6\x2d\x92\x6e\x29\x94\x54\x3c\xc1\x78\x6c\xff\x8b\x9a\x95\x9a\x49\x76\x2f\x55\x12\x88\x4b\x15\x30\x03\x58\xec\xf2\x9c\x58\x74\x3a\x52\x58\x1d\x23\x5d\x51\x94\xc1\x8a\xed\x72\x83\xfa\x12\xf7\x5c\x40\x49\xe8\x57\x8e\x20\xed\xe4\xd2\x08\x19\xc8\x4a\x2a\xec\xd4\x68\xc4\xc5\x08\x88\x8e\x32\xac\x28\xa3\x35\xbb\x86\xec\x6b\x25\x32\xcb\x32\xba\xe6\x22\x73\x74\x51\x46\x48\xa5\x5f\xca\xca\x48\x24\x87\xda\xdc\xe3\xf6\xb2\x86\x68\xb0\x46\x81\xf6\x32\x1e\x78\x59\x6b\xb0\xa5\xcb\x50\xc4\x10\x35\x84\x1a\xbb\x9c\xec\x6d\x49\x00\x0c\x22\x2a\x94\x34\xd2\x32\x19\x6d\x98\x7e\xfb\x59\x54\xc2\xf2\x56\x60\x27\x58\x1c\x45\x82\x10\xd5\x58\x47\x3a\xb9\x20\x25\x5e\x74\x74\x5c\x5b\xbd\xd4\x30\xb2\x32\x4b\x0d\x6a\xcc\x52\x59\xfe\x6a\xf2\x15\x14\x39\x4b\x01\x9f\x2f\xa6\x8b\x0f\xcb\x7d\x89\xc9\x97\x93\xb3\x17\x49\x7c\x19\x7d\x38\xff\xf0\xe1\x3f\xbe\x78\xf8\x7f\x1f\x34\x5d\x9e\xaf\x29\xfa\xf0\xe1\x8b\x31\x22\x65\x8d\x87\x79\xc2\xab\x1d\xd0\x76\x07\x0c\x81\xa4\xc1\x89\xf6\x68\xa2\x27\xa8\x44\xd4\x2c\xf4\xb2\x16\x37\x34\x38\x02\xa9\xd6\x20\x2d\x0e\x91\x40\xb4\x53\x79\x43\xd4\x87\x68\xcd\xcd\x17\xe7\x14\x21\x42\x79\x02\x0b\xb4\x53\xf9\xb4\x60\xc6\x80\x12\x68\x49\xa5\x15\x40\x6a\xff\xe4\xf6\xcf\xce\xfe\xd9\x24\xd8\x24\xe6\xe1\x01\x21\x12\xe9\xdd\xb5\x57\x19\x6c\xa2\x9c\x69\xf3\xbd\xc8\xe0\xee\xed\x0a\xa3\x73\x44\x26\x17\x84\x66\x89\xbe\x64\x98\x47\x4c\xa4\x1b\xa9\xe8\x3e\xe7\x02\x62\x4d\x57\x3c\x07\xc1\xb6\x10\x6f\x4a\x12\x23\x34\x3f\xff\x10\x7d\xe6\x9f\xf8\x17\xe7\x11\xdc\x41\x8a\x05\x19\x8f\xb1\x48\x44\x9b\x4c\xfb\xfe\x9c\xa2\x73\xfb\x2f\x22\xd4\x24\xa6\xfd\x76\x9b\x05\x1e\xb2\x04\x21\xe2\x6c\xa5\x48\xce\xf1\x9a\x9b\x87\xcd\x9a\xfc\x2b\x8e\xbe\xbc\x24\x38\x5e\xcc\xa6\xff\xb2\x9c\x90\x4b\x1c\x3f\x7c\x38\x27\x38\xfa\x92\xe0\xf0\x6f\xbd\x70\x25\xc2\x62\x3c\xc6\x32\x41\xe7\xe7\x68\x52\x2c\xbe\x5a\xd2\x34\x29\x16\xff\x7f\x49\xf3\xa4\x58\xfc\xf3\x92\x16\x8b\xaf\x97\xe3\x31\xde\x25\xf6\x07\xa1\x22\x91\x93\xdd\x04\x9d\xa3\x49\xea\xfe\xe6\x84\xee\x77\x2a\x8f\x05\xdd\x48\x6d\x1c\xa3\x92\x5a\xaf\x19\xef\x68\xa1\xa4\x55\xc0\x38\xa5\x0a\x0a\x19\xe7\xb4\x60\x66\x13\x1b\xaa\xe0\x36\x56\xd4\xcb\x29\xce\xca\x66\x07\x79\x77\x07\x79\xd2\x6c\x69\x45\x2c\xc3\xfd\x8d\x5b\xa0\x6b\xa6\x61\xba\x53\x39\x5a\x52\x4e\xca\xc6\x3c\xf0\xa1\x15\xa9\x92\x10\x1a\x20\xae\x07\x21\x44\x0b\x22\x1d\x84\xe0\x25\x21\x25\x7d\xd4\x3e\xac\x8f\x32\x24\xf8\x31\x8d\x67\x84\xb2\xa4\x85\xa8\x9c\xb3\xc6\x2a\x93\x7d\xce\xb5\x01\x01\x4a\xc7\x8b\x25\x35\xac\x88\xdb\xce\xc3\x6c\xb8\x8e\x6a\x88\xa4\xfb\x18\xe9\x9c\xa7\x60\xf1\xf7\xc6\x8b\x9d\xde\x60\x20\x25\xdd\x89\x3e\x42\xef\x8d\x7a\xf0\x3c\x28\x33\x90\xf9\xf4\xe2\x2c\xb1\xee\xfc\xe7\x2d\xac\x0b\xf7\xc2\xd0\x0b\x2b\x24\xc5\xb8\x86\xb6\x33\xb3\x8b\x43\xf2\x8d\x52\xec\xbe\xe5\x97\x1c\xb2\x70\x28\xab\xf5\x6e\x0b\xc2\x68\x3a\x23\xf3\x1e\xee\x95\x54\xaf\x59\xba\xc1\xb8\xed\x91\x4d\xc4\x8a\x22\xbf\x77\xe4\x52\x20\x76\x6f\xca\xb9\xb7\xff\xfe\x16\x41\xa4\xcd\x7d\x0e\x91\x06\x53\x1f\x18\x56\xbb\x10\x22\x25\xe5\x1d\x97\x5d\x39\x22\x93\x20\x34\xc1\xb3\x07\x20\x54\x27\x8b\xe5\xdc\x44\x39\x88\xb5\xd9\xfc\x6e\x36\x27\x3a\xda\x09\xbd\xe1\x2b\x83\x4d\xd7\x39\x38\x88\xe9\xd7\xb4\xfa\x49\xbc\x0d\x37\x30\x33\xda\x40\x91\xc6\xad\xff\x24\xb9\xc0\x88\x5a\x6a\x64\x87\x9a\xca\xd7\x25\xf0\xf0\xb0\xbf\x89\x11\xa2\x3c\x46\x42\x16\x80\x68\xce\x0d\x28\x96\x57\x8f\xd6\xdb\x68\x0b\x00\x77\x69\xbe\xcb\xe0\xbb\xea\xd9\x5a\xa0\x8e\xd1\x97\xa8\xab\xb9\x35\x6e\xe7\xe6\xf6\x25\x85\x4b\x0c\x2d\x4a\x2f\x88\xdb\x51\x83\xd1\x18\x91\x81\x0d\x08\xfa\xa4\x13\xa8\xe0\x12\x44\xe6\x5f\x25\x89\x0e\x0c\x8e\xc7\x58\x2f\x2e\x96\x89\xfd\xd3\xf2\x62\x13\x7b\x08\x8c\xac\x73\x5b\x64\x90\xca\x0c\xfe\x7c\xf5\xfd\x4b\xb9\x2d\xa4\x00\x61\xb0\x5e\xcc\x96\x64\x99\x0c\xbe\xb9\x58\x12\xbb\xc9\xd4\x90\xd8\x94\x38\x97\x29\xb3\x84\x44\x1a\x98\x4a\x37\x56\x01\x68\x3a\x20\x3b\xb4\x92\x7a\x23\x51\x92\x60\x7b\xa6\x18\xf9\x83\xfc\x0c\xea\x25\xd3\x80\x09\x79\x78\x40\x46\xed\x00\x25\x56\xbc\xe8\xc2\xfe\x5b\xd2\x3c\xd9\x7f\xe6\x79\xfe\xce\xa1\x8d\x05\x7c\x1e\x31\x9a\xf1\xac\xf3\x6c\x01\x7e\x90\x2c\x7b\x23\x15\x34\x20\x87\x23\xaf\x95\x92\xaa\x0b\x70\xe5\xb6\xc3\x0f\xfd\x85\xe5\x3c\x0c\x1c\xb1\x53\xb7\x79\x54\xdb\x80\xb8\x3e\x6b\x57\x3c\x37\xa0\x0e\xb7\x42\x25\x66\x01\xcb\xf1\xf8\x4c\x2f\x60\x59\xeb\xd6\x02\x96\x36\xa4\x55\xce\x75\xd9\xb5\x5e\xca\x9d\x30\x03\x61\x46\x88\x19\x3e\xc1\xbd\xc6\xcd\xda\x24\xec\x66\x49\x2d\xf1\x87\x06\xed\x8c\xcf\x24\xbd\x71\x93\x48\x4c\xe6\x10\xb5\x79\x8e\x9c\x4b\xc0\x40\x21\x60\xa6\x08\x9d\x25\x89\x89\x6e\x6c\x78\xe4\xc5\x8b\x0d\x29\x6d\xa4\x37\x14\x0a\xbf\x91\x19\xe4\xaf\x98\x61\x95\xe2\xfd\xdb\xbb\xb7\x3f\x46\x05\x53\x1a\x70\xf3\x8e\x2a\x97\x3c\xb4\xe3\x39\x4d\xd4\x82\x59\x3d\x64\xb5\x54\x1a\xfe\x12\x45\x6f\x25\xcf\x46\x06\x93\xf2\x8b\x88\xfd\xc4\xee\xb0\x3b\xd5\x10\x2b\xf8\xf9\xed\xc5\xb9\x03\x42\x34\x63\x86\xbd\xbf\x2f\x20\x46\x3f\x69\x29\x10\xd5\xbb\x34\x05\xdd\xda\x36\xe7\x64\x3c\x46\x4d\x2d\x32\x0a\x6e\xef\xfb\x9e\x28\x95\x42\xcb\x1c\x22\xf7\x16\x6b\x52\xda\xd0\x3a\xe8\xd6\x81\xf3\x6f\xf4\x30\x08\x2f\xb8\xba\x79\xa3\x21\x54\x27\xaf\x98\x81\x48\xc8\xcf\xd8\x05\xc9\x08\x25\x4e\xd7\xbf\x88\xe0\xce\x80\xc8\xf0\x5e\x1b\x66\x74\x1c\xec\xa0\x71\x07\x54\x89\x75\x8c\xe2\xaf\x66\xa8\xa4\x40\x88\x27\xde\x06\xf3\x81\x0d\xf4\xa5\x35\x52\x2b\x60\xb6\xd5\x09\x50\x8b\x18\xa2\x9b\x3a\x05\x8b\x14\xe8\x5d\x6e\xac\x73\xa4\xf5\xc3\xb7\xf7\x76\xaf\x93\x7d\x19\xa4\x1a\xd5\x96\x53\x71\x40\x4d\x74\xe5\x61\xc9\x7c\x48\xe0\xde\x9c\xbd\xc4\x63\xa0\xc6\x09\xfd\xf7\xaf\xdf\x9f\xb0\x07\xe0\x52\x12\x88\x9c\xd5\x11\xb7\xb6\xfb\x59\x2f\x5d\xbd\x9a\x43\xae\x21\xd8\x0c\x54\xe4\x50\x96\x40\xf4\xce\xca\x8a\x0a\xeb\xf0\x2b\x1d\xe2\x56\x87\x14\xe1\x2b\xac\x16\x7c\xe9\x95\x4f\x26\xf6\xf7\x5c\xf8\xd3\x76\x6f\x79\x8e\x39\xbd\x82\xdb\x58\x46\x57\x70\xcb\x35\x97\x82\xbe\x61\x26\xdd\x80\x8e\x65\x14\x7e\x51\xe7\x93\xff\xca\xcd\xc6\x0d\xc4\x32\xea\x0e\x94\xa4\x14\x91\x96\xca\xb4\x6d\xbb\xed\xa9\x2b\x44\xd5\x11\x02\xbd\x81\x87\x07\xcb\x4d\x21\x23\xeb\x1c\x73\xb0\xce\x93\x29\xc0\xc6\x0d\x5a\xdf\xe9\x14\x27\xb5\x16\x22\x86\x5d\x7a\xba\xf0\x18\x96\x09\x38\x57\x5b\x6f\xb2\x38\xd8\xe3\x94\x9a\xc8\xa9\x56\xb2\x7f\x07\xea\x16\x54\xcc\xa2\x57\x3b\xe5\x9c\x32\x7d\x2f\x0d\xcb\xe3\x46\x33\xa7\x81\xf9\x98\x79\x9e\xdf\x16\x20\x20\x2b\xe9\xb0\x82\x84\x85\xaa\x05\x48\x39\x60\x4d\x2e\x56\x3c\xdc\x63\x6b\x12\xe8\xfd\x06\x46\xda\xd1\x34\xba\x56\xf2\x13\x8c\x32\xf9\x59\x20\x6f\x6b\xb5\x93\x1e\xf6\xb8\x54\x57\x8e\xb7\xc5\xeb\x02\x96\x54\x25\xba\x27\x6d\xca\x12\xdd\xdb\xc1\xa9\xa2\x22\x79\xc3\xcc\x26\xda\x72\x81\xbf\x82\xaf\x29\xb3\x19\x07\x4b\x12\x71\x89\x50\x8c\xd0\x44\xcc\x4d\xd4\x3e\x3d\x3a\x86\x4d\x6d\xd2\x29\xfc\x2e\xc9\xc6\x82\x1d\x41\xde\x0e\xe9\xde\x5a\xad\x9a\xa0\x18\x4d\x78\xb0\x65\x28\x4f\xb0\x24\xf9\x2c\x4b\xf2\x15\x17\x75\xdc\x92\xd4\x81\x25\xb1\x44\x55\x96\x64\x8f\x9f\x5a\x58\x2d\xb1\xa5\x52\xa4\xcc\x60\x56\x0d\x10\xbf\xfd\x7d\x51\x50\x68\x54\xe0\x17\xdd\xfa\x1f\xd9\x16\xbe\x93\xca\x59\xeb\x63\xe7\xad\xa5\x9f\xaf\xf0\x99\xe9\xd6\x25\x74\x62\x6c\x5a\xe9\x34\xa1\x9f\x06\x5a\x78\xf5\x62\xd6\x9d\x60\xf5\xa3\x09\xa8\xd4\xe4\x82\x0c\xa7\xa4\xe2\x10\x21\x55\xd3\x8b\x3a\x3e\x14\x2f\x66\x97\x2c\x6e\xe3\x12\x93\x0b\xaa\xc8\x04\x8d\xce\x47\x68\xc2\x4a\xfa\x67\x95\xbf\x97\x3d\xbe\x5c\xfa\xc4\x7a\xc7\x3b\x56\x51\x4a\x70\x87\xd5\x00\x57\x21\x91\xd2\xc4\x03\x11\x68\x3d\xfd\xba\x37\x9d\x58\x99\x94\x25\xdd\x25\x57\xc0\xea\xa2\xcd\xcb\x9c\x69\x8d\xf7\x19\xd7\x45\xce\xee\xad\xe0\x63\x64\xe9\x7b\x5b\x58\xbc\xf6\x14\x12\x19\xa8\x81\x28\xa4\x8d\xe4\x75\x0e\x36\x21\xc0\x48\x86\x59\xa1\x1e\xe5\xed\x41\xc9\x42\x47\x6e\x80\x6a\xc8\x21\x35\x90\xb5\xdf\x54\x63\x25\xed\x83\x5b\x65\xa0\x9b\x27\xc9\xf5\x5e\xe9\x5b\xa6\x10\x4d\xab\x28\xf4\xaf\x3c\xcf\xdf\xf4\xe3\xa7\x26\x10\x9a\xe7\xdd\x88\xc7\xb0\xa2\x9d\xb2\x84\x4c\x04\x8c\x3d\x65\x00\xef\x59\x9e\xfb\xe0\xaf\x1d\x7a\x69\x52\xba\x54\xa6\x59\xf4\x15\xcf\x1e\x59\x33\x52\xb0\xd2\xd1\x4d\xb4\x06\xf3\xea\xed\x9b\x1f\x65\x06\x2e\xf2\xd2\x60\xbe\x31\x46\xf1\xeb\x9d\x01\x8c\xd8\xce\x48\x8b\x2f\x07\x03\x88\x22\xb9\x5a\xa1\x90\xbf\xd9\x8c\xc8\x79\x16\xdc\x88\x29\xbc\xda\x30\xfd\x4d\x76\xcb\x44\x0a\xd9\x5f\xac\xdc\x34\x26\xe3\xb1\x9f\xb4\x91\x9f\xab\x57\x98\x50\x88\x56\x32\xdd\x69\x1b\xf4\xac\xc1\x7c\x2f\xb8\xe1\x2c\x77\x3c\x1e\x6e\xb0\x8b\x46\x20\xf6\xb5\xb3\x8a\xff\xc5\x32\xb8\xb2\xc5\xb2\x2c\xe9\xcd\x0e\xd4\xfd\xef\xa5\xf9\x23\xdc\x5b\xe3\xed\x68\xa3\xfe\xcc\x4d\xba\xc1\x60\x65\xf5\x52\x66\xf6\xc4\x62\x1a\x46\xbf\x99\xc5\x8d\x2c\x5c\x26\xd4\x91\x47\x45\xdf\xfc\x5a\x01\xfb\x34\x77\x53\xbe\xfe\xad\x9f\xb2\xe1\x19\x34\xbc\xb4\x21\x2e\xbe\xf6\x10\x7a\x77\xbd\xe5\xe6\xdf\x2d\x55\x98\xb4\xe8\xfb\xce\x22\x3d\x0c\xda\x06\xc4\xf6\xf0\x30\xb0\x54\xe9\x53\xb6\xe7\x31\x5a\x51\xcd\xeb\x35\x5e\x6f\x0b\x73\x5f\xef\x4c\x77\x09\x7a\x4c\x41\x86\x04\x72\x8c\xdd\x8a\xca\x23\xec\x76\x75\xa1\xec\xa4\x9f\xff\xe7\x79\xeb\x11\x7b\x22\x8b\x2d\x2c\x6d\x05\x6f\xf9\x19\x29\xbc\xf7\xb8\x82\x9b\x1d\x68\x03\xe1\x0c\x5f\xd7\xc6\x46\xbc\xad\x5c\xc1\xfa\xf5\x5d\x71\xba\x61\x7b\x07\x16\x19\xc5\xb7\x98\xf4\x92\x99\x95\x8e\x72\x7f\xe4\x77\xa7\xa4\x1b\x48\x3f\x41\xe6\xca\xf4\xb5\x17\x67\xc4\x15\xec\x6d\x1a\xea\x69\xb0\xe7\x45\x8d\x87\x5b\xa1\x0d\x62\xb9\x44\x7c\x8d\x62\xb4\x46\x9e\x7e\xcf\xcd\x21\xfd\x79\xd4\xa4\xb6\xb8\xc1\xeb\x8c\xdc\xc5\x74\x10\x5c\x71\x93\xd5\xfa\x98\x2a\x49\xf2\xa8\x4e\x52\xed\xce\x63\x48\x16\x4b\x42\xf7\x37\xf1\x49\x32\x09\x65\x90\x47\x9d\x41\x07\xbe\x53\x2d\x69\xa6\xb5\x87\x1f\x99\x1d\x02\xb0\xa6\x7e\x43\x79\x7c\x9a\x18\x7d\x36\xd6\xaf\xe5\x9c\xb6\x95\xbd\xd9\x65\x49\xf5\xe1\x56\xf4\xe3\x9a\x03\xb9\x35\x91\xee\x20\xa9\x54\x25\x8f\x53\x43\x59\xf2\x98\x98\xa9\x48\x4e\x10\xe7\xdc\x78\x81\xda\xcc\x92\xea\x8a\xc1\x24\xc5\x10\x71\x42\x55\x67\x20\x08\x89\x50\x56\xcf\x71\xcb\x52\x51\x3f\xb7\xd7\x29\xe9\x81\x27\x3e\x3c\x8e\x7c\x09\xe2\x54\x6d\x79\x78\xe8\xc1\x9f\xa6\x26\xc1\xfd\x3f\xa1\x13\x6d\xa8\xc7\x76\xff\x80\x08\x6f\x55\x87\xab\x97\xb4\xe7\x49\x87\xd8\x4f\x9e\xc1\xfe\x78\xdc\x83\x3f\x8d\xfd\x92\xb6\x1d\xe8\x63\xce\x8e\x65\xb7\x5d\x1d\x6a\x6b\xef\x35\x13\x3d\xd5\x39\xa6\xd8\x8f\xaa\xe5\x29\x4a\x69\xa3\x67\xb4\x01\xbe\xde\x18\x44\x5d\xf0\x64\xa3\x74\x3b\x58\xb0\x2c\xe3\x62\x8d\x28\xba\x98\x15\x77\xa3\x99\x1b\x37\x14\x6d\xd9\xdd\xb4\x9e\x50\x8f\xca\x82\xa5\xdc\xdc\xfb\xa1\x92\xb6\x0f\xb0\x5f\x4c\x0c\x1d\x33\xbe\x79\x8c\x8f\xd9\x21\x13\xc3\xf4\x5f\xcc\x66\xc5\xdd\x21\x0f\x17\x88\x50\xdd\x84\x7a\x87\x21\x7c\x8b\x0f\xef\xe3\xab\x00\xaf\x4a\x98\x4d\xb2\x58\xfa\x62\x66\x0b\xc8\xab\xef\x60\x35\x22\x14\x2f\x5d\x25\x62\x00\xeb\xe0\x1c\xe3\x6b\x32\x43\x79\xc4\xae\x4a\x20\x5a\x19\x83\x5d\xa2\x24\x75\x6d\x44\xb5\xc9\x77\xc5\x07\xca\x12\x84\xea\x2b\xde\xf1\x18\xb3\x64\x30\x47\xc9\xf8\x2d\xa2\xfb\xd4\x26\x12\x3e\x7f\x70\xb3\x51\x49\x9f\x01\x3d\xcd\x61\x65\x8e\x4d\x61\x88\xee\x37\x0a\x56\x31\x0a\x8a\x9b\x7d\xf4\xea\xbd\x31\xdb\x1c\xd1\x16\xae\x9c\x8b\x4f\xd3\xb5\x62\xf7\xa8\xa4\xe8\x75\x00\x1e\x39\x3d\x47\x84\x3c\x8b\x20\xe5\x54\xe2\x54\x26\x6e\x59\x8e\x4a\xca\xb1\x8a\x5c\xfd\x87\x50\xb4\xd5\x23\x63\x7f\x22\x42\xd1\xe8\x1c\x3d\x1b\x8f\xaf\x2c\x79\x44\x3e\xad\xff\x39\x98\x94\x2f\xd3\x50\x34\x5a\x05\x21\x3c\x2e\x06\x9e\xc5\x88\x8b\x62\xf7\x04\xe7\x1e\x8c\x1d\x03\xf2\x18\x3c\xd8\x0d\x0a\xf5\x17\x03\x77\x06\x51\x57\x04\xd8\xc8\xdc\x1a\x50\x48\x34\x47\xd7\xf7\x36\x14\x83\xbb\xc2\xba\x1c\xc5\xd9\x34\x67\xd7\x90\xa3\xa1\xf7\x4e\x0b\x6e\x10\x6d\xa7\x75\xb1\xcb\xea\xa8\x14\x7f\x84\xfb\x57\x36\xe2\x76\x8a\xdc\xcb\xa5\xa8\x14\x3e\xc6\xed\xbc\x74\x43\xe5\xa9\x8a\x71\xbd\x33\x46\x8a\x29\xcb\xb2\xa9\x14\xc7\x78\xf7\x40\x81\xf9\x4c\x66\xcc\x20\x6a\xb8\xc9\xeb\xbc\xda\x52\xfa\x32\xe7\xe9\xa7\x83\xc0\xbc\x3c\x69\x73\xae\x9f\xde\x1a\x96\xdd\x06\x51\xd9\x5f\x47\xc0\x75\xc1\x44\x97\x3f\x99\x1a\x9e\x4a\x31\x0a\xff\x4e\xd3\x0d\xdc\x2a\x29\xa6\xbb\x62\x64\x1d\xf8\xd4\xa1\xed\x10\xdf\xf6\xeb\x27\x8b\x71\xc5\x21\xcf\x8e\x51\xe5\xb7\x9e\xee\xad\x69\x7f\x27\x95\x85\xb6\x7a\x5b\x52\x64\x15\x79\xf4\x27\x66\x36\xe8\x59\x0b\x4d\x1f\x55\xe7\x4a\x53\xdb\x2a\x6a\x25\xe8\x57\xed\x6a\xab\x6a\xeb\x60\x00\xe8\x29\x5d\x2f\xaf\xed\x2a\x5d\x27\x9d\x7c\x6a\xaf\x7f\xb6\xbc\xda\x67\x7b\xcb\x0b\x8e\xfe\xa1\xe2\xeb\x10\xf1\x88\x14\xbb\x70\x3d\x61\x0e\xe7\xd3\x5d\x99\x0e\xa5\xb1\xbf\x9a\x68\xf9\x5a\x48\x05\x53\x1b\xc7\x5a\xc9\x7e\xef\x1e\x47\x2f\xed\xe3\xaf\x20\x53\x67\xed\xad\x15\x83\x1b\x75\xb1\xf0\xb5\xbc\x0b\x12\xe4\x9e\x9a\x5f\x8b\xe5\x90\x79\x4c\x43\x45\xbd\xa4\xe8\xcf\xa1\xe5\x43\xac\x47\xe1\x65\x7e\xff\x6b\xb1\xdf\x5b\x7d\x58\x02\x79\x45\xdb\x2f\x2c\x83\x16\xfc\x76\x97\x1b\xee\x03\xa7\x8f\xe1\x75\x2d\x21\x7f\x4d\x5a\x52\xf4\xce\xbd\x1f\xd9\x00\xed\x97\x94\x87\x5f\x36\x08\x24\xdc\xc9\xb6\x31\x48\xb5\x9d\xa6\x52\x18\x25\xf3\x51\x8b\x4e\x44\xdd\x43\xe1\xfb\x00\x35\xff\x4f\x88\xeb\xdb\x99\x8b\x7f\xa2\x40\xbc\xf0\x2a\xea\xcd\x53\x81\x41\xfb\x18\x64\x22\x88\xde\xfd\xea\x9e\x66\xad\x7c\xe7\x08\x43\xb0\x45\xd4\x15\x41\x51\x9d\x11\xb8\xc8\xc6\xeb\xfa\xc8\xea\x33\x1d\xf9\x9b\x7e\x7b\xf2\x17\xcc\x6c\xe8\x48\x9b\xdd\x6a\x35\xca\xf9\x27\x18\x99\x0d\x33\x91\x8d\xe6\x98\x2b\x67\x67\x03\x6d\x87\x2e\xd6\x86\xe8\x07\x2e\xe0\xc7\xdd\xf6\x1a\x14\x55\x09\x44\xdf\xc2\x4a\xaa\xaa\xdc\x32\x87\xe8\x9b\x95\x01\x55\x3d\xd6\xd5\x98\x00\x35\x10\x61\x53\x56\xc7\xd8\x7b\x8f\x36\xd6\x53\x35\x61\xf4\xa5\x14\x06\x84\x89\xc1\x5f\x7c\xc6\x67\x17\xa5\x6f\xd7\xe8\x01\x37\x80\x8e\xb4\x0a\x7a\x56\x12\x5a\x51\x33\xb4\xac\x3a\x5c\x76\xa2\x26\x17\xc7\x97\x2d\x69\x31\xdc\xd8\xe3\xa4\xb2\x65\x05\xce\x08\x55\x56\x4a\x2c\x99\xf9\x3b\x18\x2f\x04\xf6\x42\xcc\xd9\x64\x52\x75\xa2\xe9\x05\x5b\x52\x99\x98\x4b\xb3\xa8\x7b\x77\x2e\x96\x51\x20\x62\x7a\x31\xe7\x8b\x59\xf5\xf8\x22\x91\x97\x7c\x38\x2f\x81\x00\xf2\x3b\x79\x69\xaa\x26\xad\xd8\x8c\xc7\xe1\x0e\x77\x3c\xc6\x6d\xfc\x53\x2c\xa7\xd5\x0c\xb2\xf4\x20\xc9\xd9\xcc\x72\x16\x63\x33\x1e\x2b\x8f\xc2\xd8\xdc\x90\x93\xb2\xaa\x04\xb6\x5f\xa8\x92\xae\x6a\x01\x8c\x00\x9b\xa6\x61\x07\x9a\xce\x23\x7b\x5a\x05\x11\xba\x16\x67\x2e\x04\xa8\x3f\xbc\x7f\xf3\x43\x39\x5f\x45\x90\x64\x32\x75\x4d\x59\x43\xe6\xe0\x33\xa6\xed\x93\x17\x29\xf6\x58\x0a\x4b\xfc\x85\xc3\x67\x74\xc2\x25\x81\x2c\x40\x58\x95\x28\xa9\x91\xeb\x75\x3d\xfd\xa0\xda\xea\xf3\x34\x0b\x7d\xe9\x9e\xd3\x5c\xea\x0a\x18\x13\x6f\x8c\xf6\x6d\x3d\x54\xd2\xd6\xe3\x21\xba\xfa\x6a\xa6\x22\x80\x94\xb4\x8d\xf3\xc9\x19\x56\xf9\x1e\xcf\x8c\x7d\x81\xd8\x7a\x9c\x2a\xad\xaf\x46\x6e\xab\x54\xbe\x1a\xb0\x21\x42\x55\x86\xf3\x63\x36\x78\xb2\x42\xad\x6a\x6f\x7e\xf4\x3a\x97\xe9\x27\xed\x54\xba\x51\x39\x56\xf5\xc2\xb2\x63\x2f\x0e\x9a\xb9\xcf\x82\x2e\x56\xb7\x98\x2b\x0c\x51\x60\x9c\xd4\xed\x10\x56\x7f\xc2\xa0\xb3\x9e\xf9\xdc\x1a\x66\x7d\x7d\x99\xcc\xaa\x7e\x7c\xdf\x6c\xaa\xdd\xd5\xe8\x19\x23\xfb\xa0\x99\x2b\xac\x49\xa8\xcd\x97\xcd\x50\xbf\x45\xae\x42\x37\x65\xd6\xb8\xaa\x66\x3a\x42\xc3\x0c\xf4\x02\xb6\xbf\x43\x93\x15\xb6\xaf\xc9\x04\xbd\x38\xb7\xcf\x84\xea\xce\x8d\x6b\x0b\x4f\x6d\x22\x2a\xd4\x6a\x11\x29\x31\xa3\xba\x2e\x40\x9f\xe6\xf4\x73\x2e\xe0\xc9\xfc\x3c\x8f\xea\xeb\x58\xec\xae\xf4\x83\x1d\x53\x43\x3a\x59\xba\xd8\x6d\x11\x35\x4c\xad\xc1\xc4\xe8\xe3\x75\xce\xc4\x27\x7b\xa2\xb8\x8e\x3e\xab\x4d\xa0\x46\xf6\x2c\x58\x81\x52\xa0\x50\x59\xe3\x39\x72\x42\x1d\x66\x32\xb9\xcd\x7e\x69\xc6\xc4\x1a\x94\xdc\xe9\xfc\xfe\x9d\x35\xbc\x60\xdf\xf1\xfe\xe3\x47\x7b\x7c\xc7\xa2\x0c\xf5\x8f\x67\x49\x62\x6b\x15\x05\x95\x54\x3c\x7f\xaa\x55\xe2\x11\x9a\xe0\xbe\x05\x23\xfb\x17\xc5\xc8\x19\x5c\x86\xc8\xa9\x55\x07\x97\x57\xf6\x4e\xe0\x8e\xdb\x78\xee\x86\xb9\x73\xd9\xba\xd6\xd3\xf7\x46\x3d\x23\xea\xca\x61\x7a\x2d\xb3\x7b\xbb\xa3\xc4\x1d\xde\xb7\x27\xb9\x50\xed\x9d\xa7\x14\x83\x1d\x2c\x79\x54\x0d\xe3\x9e\x9b\x39\xd5\x21\xdd\xf6\xfd\x51\x21\x9f\x76\x48\xdb\xd0\xd9\xd4\xf1\x47\xae\xe2\x53\xf5\x3c\x89\x44\xf5\x1c\x90\x6a\x75\x25\x0c\xc9\x6c\x4b\xf7\x75\x72\x39\x45\x13\xe6\x7b\xc8\x7d\xf3\x38\xd0\xca\x05\xc6\xbe\xa8\x23\xac\x37\xf4\x0e\x30\x2e\xb0\x6a\x5a\x4b\x3c\xb5\xb1\xf6\xd1\x00\x6f\x17\xf1\x82\x3f\x79\xc1\xc6\x63\xcc\x87\xab\x79\x75\xfd\xa2\xad\xf2\x92\xa9\x9e\x9a\x35\x9b\x51\x52\x64\x7f\x8e\x58\x9e\x8f\x10\x65\x14\x8d\x82\x68\x46\x5c\x8c\x10\xcd\xa3\x56\xf3\x09\x36\xcf\x09\xd2\x7d\x06\x2b\x28\x77\xba\x72\x75\x52\x9b\xc5\xcf\x3d\x67\xbb\x2d\x24\x8f\x1d\xb2\x8e\x8f\xd6\x09\xeb\x9f\xfd\xf1\xfa\x56\xbd\xac\x40\xe2\xc1\x08\xcc\x7d\xe3\xd1\x2d\xd2\x5b\x8a\xdd\x23\x71\x4d\x5f\xca\xb8\xa6\x2a\x1c\x94\xc0\x5d\x04\x5e\x1e\x9b\xb2\x30\xcb\xee\x29\xdf\xbf\xff\xeb\x40\x76\x63\x84\x70\x8d\xd0\x3b\xc7\xa1\x0c\xac\x0c\x0a\xa4\xc7\x23\xb6\x71\x19\x4d\x0f\x59\x3e\x06\x7e\x31\x68\x92\xcf\xf2\xa1\xd6\x24\xfe\x31\x3e\xd4\x92\x7c\x72\xed\x6c\x0b\x6b\x36\xed\x17\xd0\x2c\xad\xe8\x58\x5d\xec\x10\x87\xb5\x68\x54\xf6\x2d\xa6\xe7\xd3\x4e\xc6\xc6\x45\xc6\x53\x66\xa4\x1a\x1d\xab\xeb\x0d\x49\x71\x57\xa0\x18\xf9\xce\xb1\xa3\x32\x39\x42\xc3\x6d\xcb\x7b\x05\x97\x1d\x3c\x41\x3c\xe0\x37\xad\x4f\xeb\x79\x61\xef\xed\x7a\x8e\x38\x78\xb3\x43\x6f\xdc\xf6\xb5\x71\x2f\x52\xd4\xa5\x3f\x5f\xd6\x27\xf8\x0c\xbd\xcb\x43\x74\xfe\x8c\x66\xa7\x56\x7f\xf2\x13\xad\x4e\xa1\x9d\xcf\xf7\xfd\xb8\xba\x73\xac\xa3\x9b\xd0\xe9\xd4\x32\x90\x6f\xf2\xfc\x04\x97\xd1\xf3\x11\x56\x42\x07\x3e\xa2\x72\x0a\x6d\x47\xd5\x71\x01\xfe\x45\x58\xbe\xb3\xee\xa1\xdd\x7e\x93\xe7\x2d\x2b\x3f\x05\xf8\xe2\xa4\x66\xa8\xb6\x58\xca\x21\xa7\xc0\x57\x6d\xe5\x74\x9d\x90\xe4\x69\x47\xc1\x33\x1b\xa7\x4c\x3d\xf6\x4e\xa1\xc4\x61\x38\x5a\x64\x31\x4a\x8a\x75\x55\x97\x78\x7d\x75\xf5\xf6\x2a\x46\x9d\xab\x37\x4f\x80\x8d\xe8\x2d\x4c\x75\x0b\x5d\xdd\xe3\x39\x5e\xc6\xe3\x59\x32\x34\x5e\x05\xf1\xcf\xa5\xbe\xa4\xe8\xef\x7f\xfb\xaf\x1f\xa5\xd9\x70\xb1\x1e\xad\xa4\x1a\xdd\xcb\x1d\x1d\xbd\x62\x9f\xd7\xd1\xdf\xff\xf6\xdf\x8f\x5d\x04\x79\x3e\x66\xa3\x40\x01\x22\x35\xe5\x83\x14\x56\xcd\x6d\x6e\xcc\xe9\xe8\xcf\x20\x76\xb8\x9a\xb7\x5d\x23\xba\xd7\x2a\x8d\x11\xdf\xb2\x35\xe8\xf3\xeb\x9d\xbe\x8f\xd6\x7c\x75\xd4\x2f\xb6\x18\xf0\x16\xc6\xc5\x3a\x8a\x22\x14\xee\x29\xa1\x4b\xbf\x77\x05\x03\x3c\x3d\x3c\xb8\x2a\x90\xe9\x85\x60\xce\x3e\x1f\x61\xee\x2a\x38\x31\x6f\x59\x13\xdd\xb8\xb0\xba\x97\xdd\x79\xae\xe8\xaa\x76\x58\xae\x6d\xa7\xf2\x53\x50\xf5\xe1\x1c\x76\xb8\xdb\x24\xae\x15\x8c\x35\x9f\x55\x8d\xc7\x58\x9d\x78\xb5\xca\x1c\x17\x47\x2f\x57\xeb\xe0\xad\x1b\xab\x79\x33\xff\x5f\xdf\x03\xb9\x63\xa1\x24\x14\x8d\x5e\xdf\x15\x4c\xb8\x90\xef\x58\xa9\x73\x98\x92\xca\x89\xfc\x02\x57\x52\x9e\x90\x97\x32\xcf\x59\xa1\xc1\x93\xf2\xf4\xf5\x59\xad\xad\x8a\xba\x2f\x50\xe8\xeb\x27\x4f\x88\x6f\x8a\xe2\xb4\xa3\x41\xba\x7e\x05\xff\xb1\x88\xab\xab\x5e\x2e\x96\x71\x75\xcb\x1f\xbe\x14\xa3\xe8\x20\xec\xba\x89\x21\xba\xa1\x3c\x86\x88\xd7\xdd\x50\x75\xcb\x4f\xd0\xa6\xaa\xdf\xa7\xd3\xb3\xd5\x6d\xfa\x09\x1d\x59\xa6\x24\x55\xcb\xf6\x93\x6d\xb9\xae\xfa\x01\xed\x86\xb5\x4e\x67\x02\xa9\x3b\xd3\xa0\xdb\x99\xa6\x3b\xc7\x5b\xe8\x5e\x75\xfa\x9d\xb7\x3e\x6a\xe8\xaf\xe5\x92\x9f\x10\x9b\xea\xaa\xc3\xb8\x85\xc9\x7f\xac\xc3\x1a\x3e\x68\xdd\xe5\x53\x1d\xd1\x03\xc7\xaa\xaa\xd3\x9d\x3e\xe6\xba\xc9\x10\x93\xd0\x48\xef\xce\x9a\x86\xce\xba\xfb\xfe\x40\x2a\xfe\xff\x6f\xf0\xab\x2e\xee\xfb\xf7\x07\xf6\xe3\x94\x75\x9d\x77\xf4\x68\x8d\xc7\xf9\x99\x8b\x4c\x7e\x8e\x58\x96\xbd\xbe\x05\x61\x7e\x08\xdf\x8f\x62\x54\xc8\xc2\x6d\x69\xfb\xab\x5e\x68\x7f\xaa\x36\xb4\x23\x55\x5f\xb4\xa5\xb5\xf9\x3c\xcd\x45\x0c\xfd\xf6\xce\xc3\x9e\xd1\x5d\x91\x31\x03\x7f\xe0\xda\x48\x75\x8f\xa1\x8d\xa3\xce\x4d\x3a\x82\x6a\x35\x86\x76\xe6\x0e\x74\xf4\xd5\x9f\x3e\x16\xcc\x6c\x6c\xb8\x3c\x41\x97\x37\x09\x9a\x80\x38\xf8\x6a\x12\xa2\x1b\x32\x41\x63\x7e\xec\x2d\xb7\x6f\x83\x95\x1d\x83\xa9\xfa\xee\x26\x68\xec\xec\xef\x18\x9c\x7b\x69\xa1\xda\x06\x79\x0c\xb8\x0d\x63\xe7\x84\x6f\xce\x26\xc1\xea\xe6\x1b\xcf\xbd\x2b\xf7\x85\x7d\xf7\xdf\x90\x97\x14\x21\xf7\x3f\x2e\xf8\x19\x19\x94\xd3\x98\xa1\xd7\x9b\x70\xde\xe9\xa6\xe7\x3f\x34\x9c\x86\x68\xa0\xea\xeb\xf4\x8f\xbc\xdb\xb0\xe9\x07\xbb\xbe\xaa\xf5\x62\xc0\x69\xb5\x43\xaa\x01\xef\xd5\x6b\x8e\x1a\xd0\xb7\x50\x7d\xe8\x0d\x1f\x09\x26\xd6\xf5\x69\xde\x44\xf9\x5d\xf6\x7c\xa2\x30\xf7\x93\xbd\x60\x9b\xcd\x1a\x42\xf9\xda\xc9\x92\xd0\xfa\x7e\x60\x0d\x26\xbc\xfb\xf6\xfe\xfb\x0c\x23\x25\xa5\x41\xce\xcc\xad\x83\xc1\xa4\x5c\x92\xf9\xff\x04\x00\x00\xff\xff\x88\x53\x9c\xb3\xe9\x45\x00\x00" +var _jsHoundJs = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x7c\xfd\x72\x23\x37\x72\xf8\xab\x50\xf8\xb9\x58\x80\x09\x8e\x24\xfb\x7e\xc9\x65\xb8\x73\xca\x7a\x57\xf6\x39\xe7\xf5\x5e\xb4\xeb\xbb\x3f\xb8\xcc\x16\x34\xd3\x24\xe1\x1d\x02\x23\x00\xd4\x4a\xa1\xa6\xea\x1e\x24\x79\xb9\x7b\x92\x14\x3e\xe6\x93\x43\x89\x72\xec\xab\x54\xb9\xb4\x1c\x4c\xa3\xd1\xdd\xe8\x6e\x74\x37\x7a\x7c\xb2\xdc\x8a\xd4\x70\x29\x30\x90\xdd\x2d\x53\x23\x93\xec\xca\x59\x35\x38\xd2\x58\x91\x1d\x5f\x62\x33\x57\x0b\xa2\xc0\x6c\x95\x18\xd9\xdf\x11\xdc\x15\x52\x19\x3d\xb3\x53\x58\x62\x87\x92\x1d\x8f\x15\xcd\xe3\x93\x73\x1a\x5e\xc6\xbb\xb2\x9c\x85\x49\x60\x27\xa5\x2c\xcf\x31\xab\xe6\x52\x46\x9b\xdf\x9a\x50\x16\xe5\xc9\xc9\x59\x33\x56\xea\x68\x93\x00\xd5\x51\x9a\x18\xaa\xa3\x2c\x69\x48\xa5\x86\x2a\xb2\xd3\x91\xb4\x3f\xc9\xc3\xc3\xdb\xeb\x9f\x21\x35\x51\x06\x4b\x2e\xe0\xcf\x4a\x16\xa0\xcc\xbd\x03\xdb\x81\xd8\x6e\x40\xb1\xeb\x1c\xe2\x93\x33\xba\x02\x13\xab\x92\x94\x54\x47\x2a\x69\xb3\x8e\xb6\xc2\xcf\xce\xd0\x49\x62\xee\x0b\x90\xcb\xd1\xbb\xfb\xcd\xb5\xcc\xc7\x63\xff\x6f\x64\xe4\x3b\xa3\xb8\x58\xbd\x67\xab\xf1\xf8\xd0\x8a\xfb\xb0\x74\x77\xcb\xf2\x2d\xc4\xe8\x8d\xcc\xb6\x39\xa0\x92\xd0\x43\x93\xd1\xc7\x8f\xa0\x03\x58\x35\xed\xe4\xcc\x93\x6b\x3a\xec\xbb\x4d\x39\x1f\x9b\xf1\x18\x43\xa2\x31\x10\x42\x7f\x3f\x36\xd5\x0e\xc1\x8c\x2f\xf1\xef\xec\x5b\x24\xdd\x52\x28\xa9\x78\x82\xf1\xd8\xfe\x17\x35\x2b\x35\x93\xec\x5e\xaa\x24\x10\x97\x2a\x60\x06\xb0\xd8\xe6\x39\xb1\xe8\x74\xa4\xb0\x3a\x44\xba\xa2\x28\x83\x25\xdb\xe6\x06\xf5\x25\xee\xb9\x80\x92\xd0\xaf\x1c\x41\xda\xc9\xa5\x11\x32\x90\xa5\x54\xd8\xa9\xd1\x88\x8b\x11\x10\x1d\x65\x58\x51\x46\x6b\x76\x0d\xd9\xd5\x4a\x64\x16\x65\x74\xcd\x45\xe6\xe8\xa2\x8c\x90\x4a\xbf\x94\x95\x91\x48\xf6\xb5\xb9\xc7\xed\x45\x0d\xd1\x60\x8d\x02\xed\x65\x3c\xf0\xb2\xd6\x60\x4b\x97\xa1\x88\x21\x6a\x08\x35\x76\x39\xd9\xdb\x92\x00\x18\x44\x54\x28\x69\xa4\x65\x32\x5a\x33\xfd\xf6\xb3\xa8\x84\xe5\xad\xc0\x4e\xb0\x38\x8a\x04\x21\xaa\xb1\x8e\x74\x72\x4e\x4a\x3c\xef\xe8\xb8\xb6\x7a\xa9\x61\x64\x65\x96\x1a\xd4\x98\xa5\xb2\xfc\xd5\xe4\x2b\x28\x72\x96\x02\x3e\x9d\x4f\xe7\x1f\x16\xbb\x12\x93\x2f\x27\x27\x2f\x92\xf8\x22\xfa\x70\xfa\xe1\xc3\x7f\x7c\xf1\xf0\xff\x3e\x68\xba\x38\x5d\x51\xf4\xe1\xc3\x17\x63\x44\xca\x1a\x0f\xf3\x84\x57\x3b\xa0\xed\x0e\x18\x02\x49\x83\x13\xed\xd0\x44\x4f\x50\x89\xa8\x99\xeb\x45\x2d\x6e\x68\x70\x04\x52\xad\x41\x5a\x1c\x22\x81\x68\xab\xf2\x86\xa8\x0f\xd1\x8a\x9b\x2f\x4e\x29\x42\x84\xf2\x04\xe6\x68\xab\xf2\x69\xc1\x8c\x01\x25\xd0\x82\x4a\x2b\x80\xd4\xfe\xc9\xed\x9f\xad\xfd\xb3\x4e\xb0\x49\xcc\xc3\x03\x42\x24\xd2\xdb\x6b\xaf\x32\xd8\x44\x39\xd3\xe6\x7b\x91\xc1\xdd\xdb\x25\x46\xa7\x88\x4c\xce\x09\xcd\x12\x7d\xc1\x30\x8f\x98\x48\xd7\x52\xd1\x5d\xce\x05\xc4\x9a\x2e\x79\x0e\x82\x6d\x20\x5e\x97\x24\x46\x68\x76\xfa\x21\xfa\xcc\x3f\xf1\x2f\x4e\x23\xb8\x83\x14\x0b\x32\x1e\x63\x91\x88\x36\x99\xf6\xfd\x29\x45\xa7\xf6\x5f\x44\xa8\x49\x4c\xfb\xed\x26\x0b\x3c\x64\x09\x42\xc4\xd9\x4a\x91\x9c\xe2\x15\x37\x0f\xeb\x15\xf9\x57\x1c\x7d\x79\x41\x70\x3c\x3f\x9b\xfe\xcb\x62\x42\x2e\x70\xfc\xf0\xe1\x94\xe0\xe8\x4b\x82\xc3\xbf\xf5\xc2\x95\x08\x8b\xf1\x18\xcb\x04\x9d\x9e\xa2\x49\x31\xff\x6a\x41\xd3\xa4\x98\xff\xff\x05\xcd\x93\x62\xfe\xcf\x0b\x5a\xcc\xbf\x5e\x8c\xc7\x78\x9b\xd8\x1f\x84\x8a\x44\x4e\xb6\x13\x74\x8a\x26\xa9\xfb\x9b\x13\xba\xdb\xaa\x3c\x16\x74\x2d\xb5\x71\x8c\x4a\x6a\xbd\x66\xbc\xa5\x85\x92\x56\x01\xe3\x94\x2a\x28\x64\x9c\xd3\x82\x99\x75\x6c\xa8\x82\xdb\x58\x51\x2f\xa7\x38\x2b\x9b\x1d\xe4\xdd\x1d\xe4\x49\xb3\xa5\x15\xb1\x0c\xf7\x37\x6e\x8e\xae\x99\x86\xe9\x56\xe5\x68\x41\x39\x29\x1b\xf3\xc0\xfb\x56\xa4\x4a\x42\x68\x80\xb8\x1e\x84\x10\x2d\x88\x74\x10\x82\x97\x84\x94\xf4\x51\xfb\xb0\x3e\xca\x90\xe0\xc7\x34\x3e\x23\x94\x25\x2d\x44\xe5\x8c\x35\x56\x99\xec\x72\xae\x0d\x08\x50\x3a\x9e\x2f\xa8\x61\x45\xdc\x76\x1e\x66\xcd\x75\x54\x43\x24\xdd\xc7\x48\xe7\x3c\x05\x8b\xbf\x37\x5e\x6c\xf5\x1a\x03\x29\xe9\x56\xf4\x11\x7a\x6f\xd4\x83\xe7\x41\x99\x81\xcc\xa6\xe7\x27\x89\x75\xe7\xbf\x6c\x61\x5d\xb8\x17\x86\x9e\x5b\x21\x29\xc6\x35\xb4\x9d\x99\x5d\x1c\x92\x97\x4a\xb1\xfb\x96\x5f\x72\xc8\xc2\xa1\xac\x56\xdb\x0d\x08\xa3\xe9\x19\x99\xf5\x70\x2f\xa5\xba\x64\xe9\x1a\xe3\xb6\x47\x36\x11\x2b\x8a\xfc\xde\x91\x4b\x81\xd8\xbd\x29\x67\xde\xfe\xfb\x5b\x04\x91\x36\xf7\x39\x44\x1a\x4c\x7d\x60\x58\xed\x42\x88\x94\x94\x77\x5c\x76\xe5\x88\x4c\x82\xd0\x04\x9f\x3d\x00\xa1\x3a\x99\x2f\x66\x26\xca\x41\xac\xcc\xfa\x0f\x67\x33\xa2\xa3\xad\xd0\x6b\xbe\x34\xd8\x74\x9d\x83\x83\x98\x7e\x4d\xab\x9f\xc4\xdb\x70\x03\x73\x46\x1b\x28\xd2\xb8\xf5\x9f\x25\x17\x18\x51\x4b\x8d\xec\x50\x53\xf9\xba\x04\x1e\x1e\x76\x37\x31\x42\x94\xc7\x48\xc8\x02\x10\xcd\xb9\x01\xc5\xf2\xea\xd1\x7a\x1b\x6d\x01\xe0\x2e\xcd\xb7\x19\x7c\x5b\x3d\x5b\x0b\xd4\x31\xfa\x12\x75\x35\xb7\xc6\xed\xdc\xdc\xae\xa4\x70\x81\xa1\x45\xe9\x39\x71\x3b\x6a\x30\x1a\x23\x32\xb0\x01\x41\x9f\x74\x02\x15\x5c\x82\xc8\xec\xab\x24\xd1\x81\xc1\xf1\x18\xeb\xf9\xf9\x22\xb1\x7f\x5a\x5e\x6c\x62\x0f\x81\x91\x75\x6e\xf3\x0c\x52\x99\xc1\x4f\x57\xdf\xbf\x92\x9b\x42\x0a\x10\x06\xeb\xf9\xd9\x82\x2c\x92\xc1\x37\xe7\x0b\x62\x37\x99\x1a\x12\x9b\x12\xe7\x32\x65\x96\x90\x48\x03\x53\xe9\xda\x2a\x00\x4d\x07\x64\x87\x96\x52\xaf\x25\x4a\x12\x6c\xcf\x14\x23\x7f\x90\x9f\x41\xbd\x62\x1a\x30\x21\x0f\x0f\xc8\xa8\x2d\xa0\xc4\x8a\x17\x9d\xdb\x7f\x4b\x9a\x27\xbb\xcf\x3c\xcf\xdf\x39\xb4\xb1\x80\xcf\x23\x46\x33\x9e\x75\x9e\x2d\xc0\x0f\x92\x65\x6f\xa4\x82\x06\x64\x7f\xe4\x52\x29\xa9\xba\x00\x57\x6e\x3b\xfc\xd0\x5f\x58\xce\xc3\xc0\x01\x3b\x75\x9b\x47\xb5\x0d\x88\xeb\xb3\x76\xc9\x73\x03\x6a\x7f\x2b\x54\x62\xe6\xb0\x18\x8f\x4f\xf4\x1c\x16\xb5\x6e\xcd\x61\x61\x43\x5a\xe5\x5c\x97\x5d\xeb\x95\xdc\x0a\x33\x10\x66\x84\x98\xe1\x13\xdc\x6b\xdc\xac\x4d\xc2\x6e\x96\xd4\x12\xbf\x6f\xd0\xce\xf8\x4c\xd2\x1b\x37\x89\xc4\x64\x06\x51\x9b\xe7\xc8\xb9\x04\x0c\x14\x02\x66\x8a\xd0\x49\x92\x98\xe8\xc6\x86\x47\x5e\xbc\xd8\x90\xd2\x46\x7a\x43\xa1\xf0\x1b\x99\x41\xfe\x9a\x19\x56\x29\xde\xbf\xbd\x7b\xfb\x63\x54\x30\xa5\x01\x37\xef\xa8\x72\xc9\x43\x3b\x9e\xd3\x44\xcd\x99\xd5\x43\x56\x4b\xa5\xe1\x2f\x51\xf4\x56\xf2\x6c\x64\x30\x29\xbf\x88\xd8\xcf\xec\x0e\xbb\x53\x0d\xb1\x82\x9f\xde\x9e\x9f\x3a\x20\x44\x33\x66\xd8\xfb\xfb\x02\x62\xf4\xb3\x96\x02\x51\xbd\x4d\x53\xd0\xad\x6d\x73\x4e\xc6\x63\xd4\xd4\x22\xa3\xe0\xf6\xbe\xef\x89\x52\x29\xb4\xcc\x21\x72\x6f\xb1\x26\xa5\x0d\xad\x83\x6e\xed\x39\xff\x46\x0f\x83\xf0\x82\xab\x9b\x35\x1a\x42\x75\xf2\x9a\x19\x88\x84\xfc\x8c\x5d\x90\x8c\x50\xe2\x74\xfd\x8b\x08\xee\x0c\x88\x0c\xef\xb4\x61\x46\xc7\xc1\x0e\x1a\x77\x40\x95\x58\xc5\x28\xfe\xea\x0c\x95\x14\x08\xf1\xc4\xdb\x60\x3e\xb0\x81\xbe\xb4\x46\x6a\x05\xcc\x36\x3a\x01\x6a\x11\x43\x74\x53\xa7\x60\x91\x02\xbd\xcd\x8d\x75\x8e\xb4\x7e\xf8\xe6\xde\xee\x75\xb2\x2b\x83\x54\xa3\xda\x72\x2a\x0e\xa8\x89\xae\x3c\x2c\x99\x0d\x09\xdc\x9b\xb3\x97\x78\x0c\xd4\x38\xa1\x7f\x77\xf9\xfe\x88\x3d\x00\x97\x92\x40\xe4\xac\x8e\xb8\xb5\xdd\xcf\x7a\xe9\xea\xd5\x0c\x72\x0d\xc1\x66\xa0\x22\x87\xb2\x04\xa2\x77\x56\x56\x54\x58\x87\x5f\xe9\x10\xb7\x3a\xa4\x08\x5f\x62\x35\xe7\x0b\xaf\x7c\x32\xb1\xbf\x67\xc2\x9f\xb6\x3b\xcb\x73\xcc\xe9\x15\xdc\xc6\x32\xba\x82\x5b\xae\xb9\x14\xf4\x0d\x33\xe9\x1a\x74\x2c\xa3\xf0\x8b\x3a\x9f\xfc\x57\x6e\xd6\x6e\x20\x96\x51\x77\xa0\x24\xa5\x88\xb4\x54\xa6\x6d\xdb\x6d\x4f\x5d\x21\xaa\x8e\x10\xe8\x0d\x3c\x3c\x58\x6e\x0a\x19\x59\xe7\x98\x83\x75\x9e\x4c\x01\x36\x6e\xd0\xfa\x4e\xa7\x38\xa9\xb5\x10\x31\xec\xd2\xd3\xb9\xc7\xb0\x48\xc0\xb9\xda\x7a\x93\xc5\xde\x1e\xa7\xd4\x44\x4e\xb5\x92\xdd\x3b\x50\xb7\xa0\x62\x16\xbd\xde\x2a\xe7\x94\xe9\x7b\x69\x58\x1e\x37\x9a\x39\x0d\xcc\xc7\xcc\xf3\xfc\xb6\x00\x01\x59\x49\x87\x15\x24\x2c\x54\x2d\x40\xca\x01\x6b\x72\xb1\xe2\xfe\x1e\x5b\x93\x40\xef\xd7\x30\xd2\x8e\xa6\xd1\xb5\x92\x9f\x60\x94\xc9\xcf\x02\x79\x5b\xab\x9d\xf4\xb0\xc7\xa5\xba\x72\xbc\x2d\x5e\xe7\xb0\xa0\x2a\xd1\x3d\x69\x53\x96\xe8\xde\x0e\x4e\x15\x15\xc9\x1b\x66\xd6\xd1\x86\x0b\xfc\x15\x7c\x4d\x99\xcd\x38\x58\x92\x88\x0b\x84\x62\x84\x26\x62\x66\xa2\xf6\xe9\xd1\x31\x6c\x6a\x93\x4e\xe1\x77\x49\x36\x16\xec\x08\xf2\x76\x48\x77\xd6\x6a\xd5\x04\xc5\x68\xc2\x83\x2d\x43\x79\x84\x25\xc9\x67\x59\x92\xaf\xb8\xa8\xc3\x96\xa4\xf6\x2c\x89\x25\xaa\xb2\x24\x7b\xfc\xd4\xc2\x6a\x89\x2d\x95\x22\x65\x06\xb3\x6a\x80\xf8\xed\xef\x8b\x82\x42\xa3\x02\xbf\xea\xd6\xff\xc8\x36\xf0\xad\x54\xce\x5a\x1f\x3b\x6f\x2d\xfd\x7c\x89\x4f\x4c\xb7\x2e\xa1\x13\x63\xd3\x4a\xa7\x09\xfd\x34\xd0\xc2\xab\x17\x67\xdd\x09\x56\x3f\x9a\x80\x4a\x4d\xce\xc9\x70\x4a\x2a\xf6\x11\x52\x35\x3d\xaf\xe3\x43\xf1\xe2\xec\x82\xc5\x6d\x5c\x62\x72\x4e\x15\x99\xa0\xd1\xe9\x08\x4d\x58\x49\x7f\x52\xf9\x7b\xd9\xe3\xcb\xa5\x4f\xac\x77\xbc\x63\x15\xa5\x04\x77\x58\x0d\x70\x15\x12\x29\x4d\x3c\x10\x81\xd6\xd3\xaf\x7b\xd3\x89\x95\x49\x59\xd2\x6d\x72\x05\xac\x2e\xda\xbc\xca\x99\xd6\x78\x97\x71\x5d\xe4\xec\xde\x0a\x3e\x46\x96\xbe\xb7\x85\xc5\x6b\x4f\x21\x91\x81\x1a\x88\x42\xda\x48\x2e\x73\xb0\x09\x01\x46\x32\xcc\x0a\xf5\x28\x6f\x0f\x4a\x16\x3a\x72\x03\x54\x43\x0e\xa9\x81\xac\xfd\xa6\x1a\x2b\x69\x1f\xdc\x2a\x03\x5d\x3f\x49\xae\xf7\x4a\xdf\x30\x85\x68\x5a\x45\xa1\x7f\xe5\x79\xfe\xa6\x1f\x3f\x35\x81\xd0\x2c\xef\x46\x3c\x86\x15\xed\x94\x25\x64\x22\x60\xec\x29\x03\x78\xc7\xf2\xdc\x07\x7f\xed\xd0\x4b\x93\xd2\xa5\x32\xcd\xa2\xaf\x79\xf6\xc8\x9a\x91\x82\xa5\x8e\x6e\xa2\x15\x98\xd7\x6f\xdf\xfc\x28\x33\x70\x91\x97\x06\xf3\xd2\x18\xc5\xaf\xb7\x06\x30\x62\x5b\x23\x2d\xbe\x1c\x0c\x20\x8a\xe4\x72\x89\x42\xfe\x66\x33\x22\xe7\x59\x70\x23\xa6\xf0\x6a\xcd\xf4\xcb\xec\x96\x89\x14\xb2\xbf\x58\xb9\x69\x4c\xc6\x63\x3f\x69\x2d\x3f\x57\xaf\x30\xa1\x10\x2d\x65\xba\xd5\x36\xe8\x59\x81\xf9\x5e\x70\xc3\x59\xee\x78\xdc\xdf\x60\x17\x8d\x40\xec\x6b\x67\x15\xff\xf3\x45\x70\x65\xf3\x45\x59\xd2\x9b\x2d\xa8\xfb\xef\xa4\xf9\x13\xdc\x5b\xe3\xed\x68\xa3\xfe\xcc\x4d\xba\xc6\x60\x65\xf5\x4a\x66\xf6\xc4\x62\x1a\x46\xbf\x3b\x8b\x1b\x59\xb8\x4c\xa8\x23\x8f\x8a\xbe\xd9\xb5\x02\xf6\x69\xe6\xa6\x7c\xfd\x7b\x3f\x65\xcd\x33\x68\x78\x69\x43\x9c\x7f\xed\x21\xf4\xf6\x7a\xc3\xcd\xbf\x5b\xaa\x30\x69\xd1\xf7\xad\x45\xba\x1f\xb4\x0d\x88\xed\xe1\x61\x60\xa9\xd2\xa7\x6c\xcf\x63\xb4\xa2\x9a\xd7\x6b\x5c\x6e\x0a\x73\x5f\xef\x4c\x77\x09\x7a\x48\x41\x86\x04\x72\x88\xdd\x8a\xca\x03\xec\x76\x75\xa1\xec\xa4\x9f\xff\xe7\x79\xeb\x11\x7b\x24\x8b\x2d\x2c\x6d\x05\x6f\xf9\x19\x29\xbc\xf7\xb8\x82\x9b\x2d\x68\x03\xe1\x0c\x5f\xd5\xc6\x46\xbc\xad\x5c\xc1\xea\xf2\xae\x38\xde\xb0\xbd\x03\x8b\x8c\xe2\x1b\x4c\x7a\xc9\xcc\x52\x47\xb9\x3f\xf2\xbb\x53\xd2\x35\xa4\x9f\x20\x73\x65\xfa\xda\x8b\x33\xe2\x0a\xf6\x36\x0d\xf5\x34\xd8\xf3\xa2\xc6\xc3\xad\xd0\x06\xb1\x5c\x20\xbe\x42\x31\x5a\x21\x4f\xbf\xe7\x66\x9f\xfe\x3c\x6a\x52\x5b\xdc\xe0\x75\x46\xee\x62\x3a\x08\xae\xb8\xc9\x6a\x7d\x4c\x95\x24\x79\x54\x27\xa9\x76\xe7\x31\x24\xf3\x05\xa1\xbb\x9b\xf8\x28\x99\x84\x32\xc8\xa3\xce\xa0\x03\xdf\xa9\x96\x34\xd3\xda\xc3\x8f\xcc\x0e\x01\x58\x53\xbf\xa1\x3c\x3e\x4e\x8c\x3e\x1b\xeb\xd7\x72\x8e\xdb\xca\xde\xec\xb2\xa4\x7a\x7f\x2b\xfa\x71\xcd\x9e\xdc\x9a\x48\x77\x90\x54\xaa\x92\xc7\xa9\xa1\x2c\x79\x4c\xcc\x54\x24\x47\x88\x73\x66\xbc\x40\x6d\x66\x49\x75\xc5\x60\x92\x62\x88\x38\xa1\xaa\x33\x10\x84\x44\x28\xab\xe7\xb8\x65\xa9\xa8\x9f\xdb\xeb\x94\x74\xcf\x13\xef\x1f\x47\xbe\x04\x71\xac\xb6\x3c\x3c\xf4\xe0\x8f\x53\x93\xe0\xfe\x9f\xd0\x89\x36\xd4\x63\xbb\xbf\x47\x84\xb7\xaa\xfd\xd5\x4b\xda\xf3\xa4\x43\xec\x27\xcf\x60\x7f\x3c\xee\xc1\x1f\xc7\x7e\x49\xdb\x0e\xf4\x31\x67\xc7\xb2\xdb\xae\x0e\xb5\xb5\xf7\x9a\x89\x9e\xea\x1c\x52\xec\x47\xd5\xf2\x18\xa5\xb4\xd1\x33\x5a\x03\x5f\xad\x0d\xa2\x2e\x78\xb2\x51\xba\x1d\x2c\x58\x96\x71\xb1\x42\x14\x9d\x9f\x15\x77\xa3\x33\x37\x6e\x28\xda\xb0\xbb\x69\x3d\xa1\x1e\x95\x05\x4b\xb9\xb9\xf7\x43\x25\x6d\x1f\x60\xbf\x9a\x18\x3a\x66\x7c\xf3\x18\x1f\x67\xfb\x4c\x0c\xd3\x7f\x7e\x76\x56\xdc\xed\xf3\x70\x8e\x08\xd5\x4d\xa8\xb7\x1f\xc2\xb7\xf8\xf0\x3e\xbe\x0a\xf0\xaa\x84\xd9\x24\xf3\x85\x2f\x66\xb6\x80\xbc\xfa\x0e\x56\x23\x42\xf1\xd2\x55\x22\x06\xb0\x0e\xce\x31\xbe\x26\x33\x94\x47\x6c\xab\x04\xa2\x95\x31\xd8\x25\x4a\x52\xd7\x46\x54\x9b\x7c\x57\x7c\xa0\x2c\x41\xa8\xbe\xe2\x1d\x8f\x31\x4b\x06\x73\x94\x8c\xdf\x22\xba\x4b\x6d\x22\xe1\xf3\x07\x37\x1b\x95\xf4\x19\xd0\xd3\x1c\x96\xe6\xd0\x14\x86\xe8\x6e\xad\x60\x19\xa3\xa0\xb8\xd9\x47\xaf\xde\x6b\xb3\xc9\x11\x6d\xe1\xca\xb9\xf8\x34\x5d\x29\x76\x8f\x4a\x8a\x2e\x03\xf0\xc8\xe9\x39\x22\xe4\x59\x04\x29\xa7\x12\xc7\x32\x71\xcb\x72\x54\x52\x8e\x55\xe4\xea\x3f\x84\xa2\x8d\x1e\x19\xfb\x13\x11\x8a\x46\xa7\xe8\xd9\x78\x7c\x65\xc9\x23\xf2\x69\xfd\x2f\xc1\xa4\x7c\x99\x86\xa2\xd1\x32\x08\xe1\x71\x31\xf0\x2c\x46\x5c\x14\xdb\x27\x38\xf7\x60\xec\x10\x90\xc7\xe0\xc1\x6e\x50\xa8\xbf\x18\xb8\x33\x88\xba\x22\xc0\x5a\xe6\xd6\x80\x42\xa2\x39\xba\xbe\xb7\xa1\x18\xdc\x15\xd6\xe5\x28\xce\xa6\x39\xbb\x86\x1c\x0d\xbd\x77\x5a\x70\x83\x68\x3b\xad\x8b\x5d\x56\x47\xa5\xf8\x13\xdc\xbf\xb6\x11\xb7\x53\xe4\x5e\x2e\x45\xa5\xf0\x31\x6e\xe7\xa5\x1b\x2a\x8f\x55\x8c\xeb\xad\x31\x52\x4c\x59\x96\x4d\xa5\x38\xc4\xbb\x07\x0a\xcc\x67\x32\x63\x06\x51\xc3\x4d\x5e\xe7\xd5\x96\xd2\x57\x39\x4f\x3f\xed\x05\xe6\xe5\x51\x9b\x73\xfd\xf4\xd6\xb0\xec\x36\x88\xca\xfe\x3a\x00\xae\x0b\x26\xba\xfc\xc9\xd4\xf0\x54\x8a\x51\xf8\x77\x9a\xae\xe1\x56\x49\x31\xdd\x16\x23\xeb\xc0\xa7\x0e\x6d\x87\xf8\xb6\x5f\x3f\x5a\x8c\x4b\x0e\x79\x76\x88\x2a\xbf\xf5\x74\x67\x4d\xfb\x5b\xa9\x2c\xb4\xd5\xdb\x92\x22\xab\xc8\xa3\x3f\x33\xb3\x46\xcf\x5a\x68\xfa\xa8\x3a\x57\x9a\xda\x56\x51\x2b\x41\xbf\x6a\x57\x5b\x55\x5b\x07\x03\x40\x4f\xe9\x7a\x79\x6d\x57\xe9\x3a\xe9\xe4\x53\x7b\xfd\x8b\xe5\xd5\x3e\xdb\x5b\x5e\x70\xf4\x0f\x15\x5f\x87\x88\x47\xa4\xd8\x85\xeb\x09\x73\x38\x9f\xee\xca\x74\x28\x8d\xfd\xcd\x44\xcb\x57\x42\x2a\x98\xda\x38\xd6\x4a\xf6\x7b\xf7\x38\x7a\x65\x1f\x7f\x03\x99\x3a\x6b\x6f\xad\x18\xdc\xa8\x8b\x85\xaf\xe5\x5d\x90\x20\xf7\xd4\xfc\x56\x2c\x87\xcc\x63\x1a\x2a\xea\x25\x45\x3f\x85\x96\x0f\xb1\x1a\x85\x97\xf9\xfd\x6f\xc5\x7e\x6f\xf5\x61\x09\xe4\x15\x6d\xbf\xb2\x0c\x5a\xf0\x9b\x6d\x6e\xb8\x0f\x9c\x3e\x86\xd7\xb5\x84\xfc\x35\x69\x49\xd1\x3b\xf7\x7e\x64\x03\xb4\x5f\x53\x1e\x7e\xd9\x20\x90\x70\x27\xdb\xc6\x20\xd5\x66\x9a\x4a\x61\x94\xcc\x47\x2d\x3a\x11\x75\x0f\x85\xef\x03\xd4\xfc\x3f\x21\xae\x6f\x67\xce\xff\x89\x02\xf1\xc2\xab\xa8\x37\x4f\x05\x06\xed\x63\x90\x89\x20\x7a\xf7\xab\x7b\x9a\xb5\xf2\x9d\x03\x0c\xc1\x06\x51\x57\x04\x45\x75\x46\xe0\x22\x1b\xaf\xeb\x23\xab\xcf\x74\xe4\x6f\xfa\xed\xc9\x5f\x30\xb3\xa6\x23\x6d\xb6\xcb\xe5\x28\xe7\x9f\x60\x64\xd6\xcc\x44\x36\x9a\x63\xae\x9c\x9d\x0d\xb4\x1d\xba\x58\x1b\xa2\x1f\xb8\x80\x1f\xb7\x9b\x6b\x50\x54\x25\x10\x7d\x03\x4b\xa9\xaa\x72\xcb\x0c\xa2\x97\x4b\x03\xaa\x7a\xac\xab\x31\x01\x6a\x20\xc2\xa6\xac\x8e\xb1\x77\x1e\x6d\xac\xa7\x6a\xc2\xe8\x2b\x29\x0c\x08\x13\x83\xbf\xf8\x8c\x4f\xce\x4b\xdf\xae\xd1\x03\x6e\x00\x1d\x69\x15\xf4\x59\x49\x68\x45\xcd\xd0\xb2\x6a\x7f\xd9\x89\x9a\x9c\x1f\x5e\xb6\xa4\xc5\x70\x63\x8f\x93\xca\x86\x15\x38\x23\x54\x59\x29\xb1\xe4\xcc\xdf\xc1\x78\x21\xb0\x17\x62\xc6\x26\x93\xaa\x13\x4d\xcf\xd9\x82\xca\xc4\x5c\x98\x79\xdd\xbb\x73\xbe\x88\x02\x11\xd3\xf3\x19\x9f\x9f\x55\x8f\x2f\x12\x79\xc1\x87\xf3\x12\x08\x20\x7f\x90\x17\xa6\x6a\xd2\x8a\xcd\x78\x1c\xee\x70\xc7\x63\xdc\xc6\x3f\xc5\x72\x5a\xcd\x20\x0b\x0f\x92\x9c\x9c\x59\xce\x62\x6c\xc6\x63\xe5\x51\x18\x9b\x1b\x72\x52\x56\x95\xc0\xf6\x0b\x55\xd2\x65\x2d\x80\x11\x60\xd3\x34\xec\x40\xd3\x79\x64\x4f\xab\x20\x42\xd7\xe2\xcc\x85\x00\xf5\xc7\xf7\x6f\x7e\x28\x67\xcb\x08\x92\x4c\xa6\xae\x29\x6b\xc8\x1c\x7c\xc6\xb4\x79\xf2\x22\xc5\x1e\x4b\x61\x89\xbf\x70\xf8\x8c\x8e\xb8\x24\x90\x05\x88\xf8\xa4\x55\x50\xe5\xfa\xe5\xd6\xc8\xef\x40\x80\x62\x06\xb2\xb2\xa4\x46\xae\x56\x35\xde\xbd\x32\xac\x4f\xe0\x2c\x9a\x0b\xf7\x9c\xe6\x52\x57\xc0\x98\x78\x2b\xb5\x6f\xeb\xa1\x92\xb6\x1e\xf7\xd1\xd5\x77\x36\x9e\x32\xd7\x10\xdd\xc6\xf9\xe4\x0c\xab\x95\x8f\xa7\xcc\x9e\x51\xeb\x8a\xaa\x7c\xbf\x1a\xb9\xad\x72\xfc\x6a\xc0\xc6\x0e\x55\x7d\xce\x8f\xd9\xa8\xca\x4a\xbb\x2a\xca\xf9\xd1\xeb\x5c\xa6\x9f\xb4\xd3\xf5\x46\x17\x59\xd5\x24\xcb\x0e\xbd\xd8\xeb\xf2\x3e\x09\x4a\x5a\x5d\x6f\x2e\x31\x44\x81\x71\x52\xf7\x49\x58\xc5\x0a\x83\xce\xac\x66\x33\x6b\xb1\xf5\xbd\x66\x72\x56\x35\xea\xfb\x2e\x54\xed\xee\x4c\x4f\x18\xd9\x05\x95\x5d\x62\x4d\x42\xd1\xbe\x6c\x86\xfa\xbd\x73\x15\xba\x29\xb3\x56\x57\x75\xd9\x11\x1a\x66\xa0\x17\xb0\xf9\x03\x9a\x2c\xb1\x7d\x4d\x26\xe8\xc5\xa9\x7d\x26\x54\x77\xae\x62\x5b\x78\x6a\xdb\x51\xa1\x88\x8b\x48\x89\x19\xd5\x75\x65\xfa\xb8\xd3\x20\xe7\x02\x9e\x4c\xdc\xf3\xa8\xbe\xa7\xc5\xee\xae\x3f\x18\x38\x35\xa4\x93\xbe\x8b\xed\x06\x51\xc3\xd4\x0a\x4c\x8c\x3e\x5e\xe7\x4c\x7c\xb2\x47\x8d\x6b\xf5\xb3\xda\x04\x6a\x64\x0f\x89\x25\x28\x05\x0a\x95\x35\x9e\x03\x47\xd7\x7e\x8a\x93\xdb\xb4\x98\x66\x4c\xac\x40\xc9\xad\xce\xef\xdf\x59\x8b\x0c\x86\x1f\xef\x3e\x7e\xb4\xe7\x7a\x2c\xca\x50\x18\x79\x96\x24\x36\x56\x51\x50\x49\x85\xf3\xc2\x22\xb1\x87\x5c\xe7\xa6\x62\xd0\xa0\x5d\x2b\xf4\x91\xd4\x5b\x5d\x9f\x5e\xb3\x6c\xe5\xe2\xcf\x97\x3f\xbd\x7f\xfb\xdd\xe5\x8f\x97\x57\x2f\xdf\x5f\xbe\x3e\xbe\xbc\x61\x91\x8c\xd0\x04\xf7\xbd\x05\xb2\x7f\x51\x8c\x9c\x71\x67\x88\x1c\x5b\xfa\x70\xc9\x6d\x2f\x0c\xe8\xb8\xa8\xe7\x2a\x87\x0b\x0e\xac\x7f\x3f\x5e\x0f\x14\xa1\xe2\x39\xfc\x4f\xaf\x65\x76\x6f\xf5\x87\xb8\x18\xe2\xf6\x28\x4f\xae\xbd\x0f\x97\x62\xb0\x91\x26\x8f\xaa\x61\xdc\x73\x6a\xc7\xba\xbf\xdb\xbe\xf7\x2b\xe4\xd3\xee\x6f\x13\x1a\xac\x3a\xde\xcf\x15\x9e\xaa\xd6\x2b\x91\xa8\x9e\xbb\x53\xad\xe6\x88\x21\x99\x6d\xe8\xae\xce\x71\xa7\x68\xc2\x7c\x2b\xbb\xef\x61\x07\x5a\x39\xdc\xd8\xd7\x96\x84\xf5\xbd\xde\xdd\xc6\x05\x56\x4d\x87\x8b\xa7\x36\xd6\xb4\xa7\xf0\xb1\x8a\xba\x27\x9a\x33\x17\xde\xae\x35\x06\xef\xf6\x82\x8d\xc7\x98\x0f\x1b\x47\x5d\x66\x69\x1b\xa0\x64\xaa\xa7\x88\xcd\x66\x95\x14\xd9\x9f\x23\x96\xe7\x23\x44\x19\x45\xa3\x20\xba\x11\x17\x23\x44\xf3\xa8\xd5\x23\x83\xcd\x73\x72\x09\x9f\x68\x0b\xca\x9d\x2e\x5d\x1d\xd5\x0d\xf2\xbc\x70\xe0\xac\x3e\xf5\xbb\x9d\x2e\x8f\x1d\xf9\x8e\x8f\xd6\x79\xef\x9f\xfd\x61\xff\x56\xbd\xaa\x40\xe2\xc1\x40\xd1\x7d\x8a\xd2\xbd\x4b\xb0\x14\xbb\x47\xe2\x7a\xd3\x94\x71\xbd\x5f\x38\x28\x89\xbb\xaf\xbc\x38\x34\x65\x6e\x16\xdd\x98\xa3\x7f\x4d\xd9\x81\xec\x46\x2c\xe1\xb6\xa3\x17\x55\x40\x19\x58\x19\x14\x48\x8f\x47\x6c\xc3\x47\x9a\xee\xb3\x7c\x08\xfc\x7c\xd0\x64\x9f\x75\x18\x58\x93\xf9\xc7\x78\x59\x4b\xf2\xd1\x25\xbe\x0d\xac\xd8\xb4\x5f\xe7\xb3\xb4\xa2\x43\xe5\xbb\x7d\x1c\xd6\xe2\x51\xd9\xb7\x98\x9e\xcf\x3b\x1a\x1b\x17\x19\x4f\x99\x91\x6a\x74\xa8\xfc\x38\x24\xc5\x6d\x81\x62\xe4\x1b\xdc\x0e\xca\xe4\x00\x0d\xb7\x2d\xef\x16\x5c\x7a\xf0\x04\xf1\x80\x5f\xb5\x3e\xaf\xe7\xa5\xbd\x37\xec\x39\xea\xe0\xed\xf6\xbd\x75\xdb\x17\xc7\xbd\xb8\x55\x97\xfe\xfc\x59\x1d\xe1\x33\xf4\x36\x0f\x49\xc4\x33\x7a\xb2\x5a\x6d\xd4\x4f\x74\x64\x85\xae\x43\xdf\x9e\xe4\xca\xe3\xb1\x8e\x6e\x42\x43\x56\xcb\x40\x5e\xe6\xf9\x11\x2e\xa3\xe7\x23\xac\x84\xf6\x7c\x44\xe5\x14\xda\x8e\xaa\xe3\x02\xfc\x8b\xb0\x7c\x67\xdd\x7d\xbb\x7d\x99\xe7\x2d\x2b\x3f\x06\xf8\xfc\xa8\x9e\xad\xb6\x58\xca\x21\xa7\xc0\x97\x6d\xe5\x74\x0d\x9b\xe4\x69\x47\xc1\x33\x1b\xc9\x4c\x3d\xf6\x4e\x3d\xc7\x61\x38\x58\x0b\x32\x4a\x8a\x55\x55\x3e\xb9\xbc\xba\x7a\x7b\x15\xa3\xce\x0d\xa1\x27\xc0\xe6\x17\x16\xa6\xba\x2c\xaf\xae\x1b\x1d\x2f\xe3\xf1\x59\x32\x34\x5e\xa5\x14\xcf\xa5\xbe\xa4\xe8\xef\x7f\xfb\xaf\x1f\xa5\x59\x73\xb1\x1a\x2d\xa5\x1a\xdd\xcb\x2d\x1d\xbd\x66\x9f\x57\xd1\xdf\xff\xf6\xdf\x8f\xdd\x57\x79\x3e\xce\x46\x81\x02\x44\x6a\xca\x07\x29\xac\x7a\xf0\xdc\x98\xd3\xd1\x5f\x40\xec\x70\xd1\x71\xb3\x42\x74\xa7\x55\x1a\x23\xbe\x61\x2b\xd0\xa7\xd7\x5b\x7d\x1f\xad\xf8\xf2\xa0\x5f\x6c\x31\xe0\x2d\x8c\x8b\x55\x14\x45\x28\x5c\xa7\x42\x97\x7e\xef\x0a\x06\x78\x7a\x78\x70\xc5\x2a\xd3\x0b\xd1\x9c\x7d\x3e\xc2\xdc\x55\x70\x62\xde\xb2\x26\xba\x71\x61\x75\xcb\xbd\xf3\x5c\xd1\x55\xed\xb0\x5c\x77\x51\xe5\xa7\xa0\x6a\x17\xda\x6f\xc4\xb7\x29\x65\x2b\x18\x6b\xbe\xfe\x1a\x8f\xb1\x3a\xf2\x06\x98\x39\x2e\x0e\xde\x01\xd7\xc1\x5b\x37\x56\xf3\x66\xfe\xbf\xbe\xae\x72\xc7\x42\x49\x28\x1a\x5d\xde\x15\x4c\xb8\x90\xef\x50\x45\x76\x98\x92\xca\x89\xfc\x0a\x37\x67\x9e\x90\x57\x32\xcf\x59\xa1\xc1\x93\xf2\xf4\x2d\x5f\xad\xad\x8a\xba\x0f\x65\xe8\xe5\x93\x27\xc4\xcb\xa2\x38\xee\x68\x90\xae\xad\xc2\x7f\xd3\xe2\xca\xbf\x17\xf3\x45\x5c\x35\x23\x84\x0f\xda\x28\xda\x0b\xbb\x6e\x62\x88\x6e\x28\x8f\x21\xe2\x75\xd3\x56\xdd\x99\x14\xb4\xa9\x6a\x4b\xea\xb4\x96\x75\x7b\x93\x42\xe3\x98\x29\x49\xd5\x59\xfe\x64\xf7\xb0\xab\xc5\x40\xbb\xaf\xae\xd3\x40\x41\xea\x06\x3a\xe8\x36\xd0\xe9\xce\xf1\x16\x9a\x6c\x9d\x7e\xe7\xad\x6f\x2f\xfa\x6b\xb9\xe4\x28\xc4\xa6\xba\x6a\x84\x6e\x61\xf2\xdf\x14\xb1\x86\x0f\x5a\x37\x23\x55\x47\xf4\xc0\xb1\xaa\xea\x74\xa8\x8f\xb9\xee\x85\xc4\x24\xf4\xfb\xbb\xb3\xa6\xa1\xb3\xfe\x48\x60\x4f\x2a\xfe\x7f\xc3\xf0\x9b\x2e\xee\x3f\x33\x18\xd8\x8f\x63\xd6\x75\xde\xd1\xa3\x35\x1e\xe7\x67\x2e\x32\xf9\x39\x62\x59\x76\x79\x0b\xc2\xfc\x10\x3e\x73\xc5\xa8\x90\x85\xdb\xd2\xf6\xc7\xc7\xd0\xfe\xa2\x6e\x68\x47\xaa\xf6\x6d\x4b\x6b\xf3\x15\x9d\x8b\x18\xfa\x5d\xa8\xfb\xad\xad\xdb\x22\x63\x06\xfe\xc8\xb5\x91\xea\x1e\x43\x1b\x47\x9d\x9b\x74\x04\xd5\xea\x5f\xed\xcc\x1d\x68\x3c\xac\xbf\xd0\x2c\x98\x59\xdb\x70\x79\x82\x2e\x6e\x12\x34\x01\xb1\xf7\x71\x27\x44\x37\x64\x82\xc6\xfc\xd0\x5b\x6e\xdf\x06\x2b\x3b\x04\x53\xb5\x07\x4e\xd0\xd8\xd9\xdf\x21\x38\xf7\xd2\x42\xb5\x0d\xf2\x10\x70\x1b\xc6\xce\x09\x9f\xc6\x4d\x82\xd5\xcd\xd6\x9e\x7b\x57\x7c\x0c\xfb\xee\x3f\x75\x2f\x29\x42\xee\xff\xaf\xf0\x0b\x32\x28\xa7\x31\x43\xaf\xd7\xe1\xbc\xd3\xcd\xa7\x09\xa1\x2f\x36\x44\x03\x55\xfb\xa9\x7f\xe4\xdd\xbe\x52\x3f\xd8\xf5\x55\xad\x17\x03\x4e\xab\x1d\x52\x0d\x78\xaf\x5e\x0f\xd7\x80\xbe\x85\xea\x43\x6f\xf8\x40\x30\xb1\xaa\x4f\xf3\x26\xca\xef\xb2\xe7\x13\x85\x99\x9f\xec\x05\xdb\x6c\xd6\x10\xca\x4b\x27\x4b\x42\xeb\x6b\x8c\x15\x98\xf0\xee\x9b\xfb\xef\x33\x8c\x94\x94\x06\x39\x33\xb7\x0e\x06\x93\x72\x41\x66\xff\x13\x00\x00\xff\xff\x13\x78\x91\x33\x90\x46\x00\x00" func jsHoundJsBytes() ([]byte, error) { return bindataRead( @@ -494,7 +494,7 @@ func jsHoundJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "js/hound.js", size: 17897, mode: os.FileMode(420), modTime: time.Unix(1646665074, 0)} + info := bindataFileInfo{name: "js/hound.js", size: 18064, mode: os.FileMode(420), modTime: time.Unix(1653598483, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -514,7 +514,7 @@ func jsJquery213MinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "js/jquery-2.1.3.min.js", size: 84320, mode: os.FileMode(420), modTime: time.Unix(1646665073, 0)} + info := bindataFileInfo{name: "js/jquery-2.1.3.min.js", size: 84320, mode: os.FileMode(420), modTime: time.Unix(1653598478, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -534,7 +534,7 @@ func jsReact0122MinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "js/react-0.12.2.min.js", size: 130436, mode: os.FileMode(420), modTime: time.Unix(1646665073, 0)} + info := bindataFileInfo{name: "js/react-0.12.2.min.js", size: 130436, mode: os.FileMode(420), modTime: time.Unix(1653598478, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -554,7 +554,7 @@ func open_searchTplXml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "open_search.tpl.xml", size: 351, mode: os.FileMode(420), modTime: time.Unix(1646665073, 0)} + info := bindataFileInfo{name: "open_search.tpl.xml", size: 351, mode: os.FileMode(420), modTime: time.Unix(1653598478, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/vcs/bzr.go b/vcs/bzr.go index f8acd8dd..1797635d 100644 --- a/vcs/bzr.go +++ b/vcs/bzr.go @@ -77,3 +77,7 @@ func (g *BzrDriver) SpecialFiles() []string { ".bzr", } } + +func (g *BzrDriver) AutoGeneratedFiles(dir string) []string { + return []string{} +} diff --git a/vcs/git.go b/vcs/git.go index e2ebff18..004f0c2f 100644 --- a/vcs/git.go +++ b/vcs/git.go @@ -13,6 +13,7 @@ import ( ) const defaultRef = "master" +const autoGeneratedAttribute = "linguist-generated" var headBranchRegexp = regexp.MustCompile(`HEAD branch: (?P.+)`) @@ -151,6 +152,51 @@ func (g *GitDriver) SpecialFiles() []string { } } +func (g *GitDriver) AutoGeneratedFiles(dir string) []string { + var files []string + + filesCmd := exec.Command("git", "ls-files", "-z"); + filesCmd.Dir = dir + pipe, err := filesCmd.StdoutPipe(); + + if err != nil { + log.Printf("Error occured when running git ls-files in %s: %s.", dir, err) + return files + } + + if err := filesCmd.Start(); err != nil { + log.Printf("Error occured when running git ls-files in %s: %s.", dir, err) + return files + } + + attributesCmd := exec.Command("git", "check-attr", "--stdin", "-z", autoGeneratedAttribute); + attributesCmd.Dir = dir + attributesCmd.Stdin = pipe + + out, err := attributesCmd.Output() + + if err != nil { + log.Printf("Error occured when running git check-attr in %s: %s.", dir, err) + return files + } + + // Split by NUL and we expect the format: NUL NUL NUL + tokens := bytes.Split(out, []byte{0}) + + for i := 2; i < len(tokens); i+=3 { + if string(tokens[i]) == "true" && string(tokens[i-1]) == autoGeneratedAttribute { + files = append(files, string(tokens[i-2])) + } + } + + if err := filesCmd.Wait(); err != nil { + log.Printf("Error occured when running git ls-files in %s: %s.", dir, err) + return files + } + + return files +} + func (d *headBranchDetector) detectRef(dir string) string { output, err := run("git show remote info", dir, "git", diff --git a/vcs/hg.go b/vcs/hg.go index 8e13bb1b..ac285836 100644 --- a/vcs/hg.go +++ b/vcs/hg.go @@ -79,3 +79,7 @@ func (g *MercurialDriver) SpecialFiles() []string { ".hg", } } + +func (g *MercurialDriver) AutoGeneratedFiles(dir string) []string { + return []string{} +} diff --git a/vcs/svn.go b/vcs/svn.go index 087aa0f3..0c8571a3 100644 --- a/vcs/svn.go +++ b/vcs/svn.go @@ -100,3 +100,7 @@ func (g *SVNDriver) SpecialFiles() []string { ".svn", } } + +func (g *SVNDriver) AutoGeneratedFiles(dir string) []string { + return []string{} +} diff --git a/vcs/vcs.go b/vcs/vcs.go index 6f2588d6..26f0d4d8 100644 --- a/vcs/vcs.go +++ b/vcs/vcs.go @@ -26,6 +26,10 @@ type Driver interface { // Return a list of special filenames that should not be indexed. SpecialFiles() []string + + // Return a list of filenames that are marked as auto-generated. + AutoGeneratedFiles(dir string) []string + } // An API to interact with a vcs working directory. This is